Changing cqm/amc reporting to a pure OO design.
[openemr.git] / library / classes / ClinicalTypes / Allergy.php
bloba3bc88990b86957d71038346cb90b93d62eb6a8a
1 <?php
2 require_once( 'ClinicalType.php' );
4 class Allergy extends ClinicalType
6 const MED_ALLERGY_DTAP = 'med_allergy_dtap';
8 public function getType() {
9 return 'allergy';
12 public function getListId() {
13 return 'Clinical_Rules_Allergy_Types';
16 public function doPatientCheck( RsPatient $patient, $beginMeasurement = null, $endMeasurement = null, $options = null ) {
17 return true;