another minor fix to prior commit
[openemr.git] / library / classes / ClinicalTypes / Characteristic.php
bloba3bc7c7151f96ab645117bc3c3781d5cd7741738
1 <?php
2 // Copyright (C) 2011 Ken Chapple <ken@mi-squared.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
8 //
9 require_once( 'ClinicalType.php' );
11 class Characteristic extends ClinicalType
13 const TERMINAL_ILLNESS = 'terminal_illness';
14 const TOBACCO_USER = 'char_tobacco_user';
15 const TOBACCO_NON_USER = 'char_tobacco_non_user';
17 public function getListId() {
18 return 'Clinical_Rules_Char_Types';
21 public function doPatientCheck( RsPatient $patient, $beginDate = null, $endDate = null, $options = null )
23 $return = false;
25 if ( $this->getOptionId() == self::TERMINAL_ILLNESS )
27 // TODO check for terminal illness
29 else if ( $this->getOptionId() == self::TOBACCO_USER )
31 $tobaccoHistory = getHistoryData( $patient->id, "tobacco", $beginDate, $endDate );
33 if ( isset( $tobaccoHistory['tobacco'] ) ) {
34 $tmp = explode( '|', $tobaccoHistory['tobacco'] );
35 $tobaccoStatus = $tmp[1];
36 if ( $tobaccoStatus == 'currenttobacco' ) {
37 $return = true;
38 } else if ( $tobaccoStatus == 'quittobacco' ) {
39 $quitDate = $tmp[2];
40 if ( strtotime( $quitDate ) > strtotime( $beginDate ) ) {
41 $return = true;
46 else if ( $this->getOptionId() == self::TOBACCO_NON_USER )
48 $tobaccoHistory = getHistoryData( $patient->id, "tobacco", $beginDate, $endDate );
49 if ( isset( $tobaccoHistory['tobacco'] ) ) {
50 $tmp = explode( '|', $tobaccoHistory['tobacco'] );
51 $tobaccoStatus = $tmp[1];
52 if ( $tobaccoStatus == 'quittobacco' ) {
53 $quitDate = $tmp[2];
54 if ( strtotime( $quitDate ) < strtotime( $beginDate ) ) {
55 $return = true;
57 } else if ( $tobaccoStatus == 'nevertobacco' ) {
58 $return = true;
63 return $return;