another minor fix to prior commit
[openemr.git] / library / classes / ClinicalTypes / CareGoal.php
blob61b09136470b4a4d2a54441c5c09119a7aa96a5a
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 CareGoal extends ClinicalType
13 const FOLLOW_UP_PLAN_BMI_MGMT = 'flwup_bmi_mgmt';
15 public function getListId() {
16 return 'Clinical_Rules_Care_Goal_Types';
19 public function doPatientCheck( RsPatient $patient, $beginMeasurement = null, $endMeasurement = null, $options = null ) {
20 return true;