Fixed bug: https://sourceforge.net/p/openemr/bugs/416/
[openemr.git] / contrib / forms / ros2 / FormROS2.class.php
blob211f8e95746cf1a41a6856967d4ec8df2e4155d7
1 <?php
2 // Copyright (C) 2009 Aron Racho <aron@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
8 require_once(dirname(__FILE__) . "/../../../library/classes/ORDataObject.class.php");
10 define("EVENT_VEHICLE",1);
11 define("EVENT_WORK_RELATED",2);
12 define("EVENT_SLIP_FALL",3);
13 define("EVENT_OTHER",4);
16 /**
17 * class FormHpTjePrimary
20 class FormROS2 extends ORDataObject {
22 /**
24 * @access public
28 /**
30 * static
32 var $id;
33 var $date;
34 var $pid;
35 var $user;
36 var $groupname;
37 var $authorized;
38 var $activity;
40 /**
41 * Constructor sets all Form attributes to their default value
44 function FormROS2($id= "", $_prefix = "") {
45 if (is_numeric($id)) {
46 $this->id = $id;
48 else {
49 $id = "";
50 $this->date = date("Y-m-d H:i:s");
53 $this->_table = "form_ros2";
54 $this->activity = 1;
55 $this->pid = $GLOBALS['pid'];
56 if ($id != "") {
57 $this->populate();
58 //$this->date = $this->get_date();
61 function populate() {
62 parent::populate();
63 //$this->temp_methods = parent::_load_enum("temp_locations",false);
66 function toString($html = false) {
67 $string .= "\n"
68 ."ID: " . $this->id . "\n";
70 if ($html) {
71 return nl2br($string);
73 else {
74 return $string;
77 function set_id($id) {
78 if (!empty($id) && is_numeric($id)) {
79 $this->id = $id;
82 function get_id() {
83 return $this->id;
85 function set_pid($pid) {
86 if (!empty($pid) && is_numeric($pid)) {
87 $this->pid = $pid;
90 function get_pid() {
91 return $this->pid;
93 function set_activity($tf) {
94 if (!empty($tf) && is_numeric($tf)) {
95 $this->activity = $tf;
98 function get_activity() {
99 return $this->activity;
102 function get_date() {
103 return $this->date;
105 function set_date($dt) {
106 if (!empty($dt)) {
107 $this->date = $dt;
110 function get_user() {
111 return $this->user;
113 function set_user($u) {
114 if(!empty($u)){
115 $this->user = $u;
119 function persist() {
120 parent::persist();
125 // ----- headache -----
127 var $general_headache;
128 var $general_headache_text;
129 function get_general_headache() {
130 return $this->general_headache;
132 function get_general_headache_yes() {
133 return $this->general_headache == "Yes" ? "CHECKED" : ""; }
134 function get_general_headache_no() {
135 return $this->general_headache == "No" ? "CHECKED" : ""; }
136 function set_general_headache($data) {
137 if(!empty($data)) {
138 $this->general_headache = $data;
141 function get_general_headache_text() {
142 return $this->general_headache_text;
144 function set_general_headache_text($data) {
145 if(!empty($data)) {
146 $this->general_headache_text = $data;
151 var $general_fever;
152 var $general_fever_text;
153 function get_general_fever() {
154 return $this->general_fever;
156 function get_general_fever_yes() {
157 return $this->general_fever == "Yes" ? "CHECKED" : ""; }
158 function get_general_fever_no() {
159 return $this->general_fever == "No" ? "CHECKED" : ""; }
160 function set_general_fever($data) {
161 if(!empty($data)) {
162 $this->general_fever = $data;
165 function get_general_fever_text() {
166 return $this->general_fever_text;
168 function set_general_fever_text($data) {
169 if(!empty($data)) {
170 $this->general_fever_text = $data;
175 var $general_chills;
176 var $general_chills_text;
177 function get_general_chills() {
178 return $this->general_chills;
180 function get_general_chills_yes() {
181 return $this->general_chills == "Yes" ? "CHECKED" : ""; }
182 function get_general_chills_no() {
183 return $this->general_chills == "No" ? "CHECKED" : ""; }
184 function set_general_chills($data) {
185 if(!empty($data)) {
186 $this->general_chills = $data;
189 function get_general_chills_text() {
190 return $this->general_chills_text;
192 function set_general_chills_text($data) {
193 if(!empty($data)) {
194 $this->general_chills_text = $data;
199 var $general_body_aches;
200 var $general_body_aches_text;
201 function get_general_body_aches() {
202 return $this->general_body_aches;
204 function get_general_body_aches_yes() {
205 return $this->general_body_aches == "Yes" ? "CHECKED" : ""; }
206 function get_general_body_aches_no() {
207 return $this->general_body_aches == "No" ? "CHECKED" : ""; }
208 function set_general_body_aches($data) {
209 if(!empty($data)) {
210 $this->general_body_aches = $data;
213 function get_general_body_aches_text() {
214 return $this->general_body_aches_text;
216 function set_general_body_aches_text($data) {
217 if(!empty($data)) {
218 $this->general_body_aches_text = $data;
223 var $general_fatigue;
224 var $general_fatigue_text;
225 function get_general_fatigue() {
226 return $this->general_fatigue;
228 function get_general_fatigue_yes() {
229 return $this->general_fatigue == "Yes" ? "CHECKED" : ""; }
230 function get_general_fatigue_no() {
231 return $this->general_fatigue == "No" ? "CHECKED" : ""; }
232 function set_general_fatigue($data) {
233 if(!empty($data)) {
234 $this->general_fatigue = $data;
237 function get_general_fatigue_text() {
238 return $this->general_fatigue_text;
240 function set_general_fatigue_text($data) {
241 if(!empty($data)) {
242 $this->general_fatigue_text = $data;
247 var $general_loss_of_appetite;
248 var $general_loss_of_appetite_text;
249 function get_general_loss_of_appetite() {
250 return $this->general_loss_of_appetite;
252 function get_general_loss_of_appetite_yes() {
253 return $this->general_loss_of_appetite == "Yes" ? "CHECKED" : ""; }
254 function get_general_loss_of_appetite_no() {
255 return $this->general_loss_of_appetite == "No" ? "CHECKED" : ""; }
256 function set_general_loss_of_appetite($data) {
257 if(!empty($data)) {
258 $this->general_loss_of_appetite = $data;
261 function get_general_loss_of_appetite_text() {
262 return $this->general_loss_of_appetite_text;
264 function set_general_loss_of_appetite_text($data) {
265 if(!empty($data)) {
266 $this->general_loss_of_appetite_text = $data;
271 var $general_weight_loss;
272 var $general_weight_loss_text;
273 function get_general_weight_loss() {
274 return $this->general_weight_loss;
276 function get_general_weight_loss_yes() {
277 return $this->general_weight_loss == "Yes" ? "CHECKED" : ""; }
278 function get_general_weight_loss_no() {
279 return $this->general_weight_loss == "No" ? "CHECKED" : ""; }
280 function set_general_weight_loss($data) {
281 if(!empty($data)) {
282 $this->general_weight_loss = $data;
285 function get_general_weight_loss_text() {
286 return $this->general_weight_loss_text;
288 function set_general_weight_loss_text($data) {
289 if(!empty($data)) {
290 $this->general_weight_loss_text = $data;
295 var $general_daytime_drowsiness;
296 var $general_daytime_drowsiness_text;
297 function get_general_daytime_drowsiness() {
298 return $this->general_daytime_drowsiness;
300 function get_general_daytime_drowsiness_yes() {
301 return $this->general_daytime_drowsiness == "Yes" ? "CHECKED" : ""; }
302 function get_general_daytime_drowsiness_no() {
303 return $this->general_daytime_drowsiness == "No" ? "CHECKED" : ""; }
304 function set_general_daytime_drowsiness($data) {
305 if(!empty($data)) {
306 $this->general_daytime_drowsiness = $data;
309 function get_general_daytime_drowsiness_text() {
310 return $this->general_daytime_drowsiness_text;
312 function set_general_daytime_drowsiness_text($data) {
313 if(!empty($data)) {
314 $this->general_daytime_drowsiness_text = $data;
319 var $general_excessive_snoring;
320 var $general_excessive_snoring_text;
321 function get_general_excessive_snoring() {
322 return $this->general_excessive_snoring;
324 function get_general_excessive_snoring_yes() {
325 return $this->general_excessive_snoring == "Yes" ? "CHECKED" : ""; }
326 function get_general_excessive_snoring_no() {
327 return $this->general_excessive_snoring == "No" ? "CHECKED" : ""; }
328 function set_general_excessive_snoring($data) {
329 if(!empty($data)) {
330 $this->general_excessive_snoring = $data;
333 function get_general_excessive_snoring_text() {
334 return $this->general_excessive_snoring_text;
336 function set_general_excessive_snoring_text($data) {
337 if(!empty($data)) {
338 $this->general_excessive_snoring_text = $data;
342 // ----- disorientation -----
344 var $neuro_disorientation;
345 var $neuro_disorientation_text;
346 function get_neuro_disorientation() {
347 return $this->neuro_disorientation;
349 function get_neuro_disorientation_yes() {
350 return $this->neuro_disorientation == "Yes" ? "CHECKED" : ""; }
351 function get_neuro_disorientation_no() {
352 return $this->neuro_disorientation == "No" ? "CHECKED" : ""; }
353 function set_neuro_disorientation($data) {
354 if(!empty($data)) {
355 $this->neuro_disorientation = $data;
358 function get_neuro_disorientation_text() {
359 return $this->neuro_disorientation_text;
361 function set_neuro_disorientation_text($data) {
362 if(!empty($data)) {
363 $this->neuro_disorientation_text = $data;
368 var $neuro_loss_of_consciousness;
369 var $neuro_loss_of_consciousness_text;
370 function get_neuro_loss_of_consciousness() {
371 return $this->neuro_loss_of_consciousness;
373 function get_neuro_loss_of_consciousness_yes() {
374 return $this->neuro_loss_of_consciousness == "Yes" ? "CHECKED" : ""; }
375 function get_neuro_loss_of_consciousness_no() {
376 return $this->neuro_loss_of_consciousness == "No" ? "CHECKED" : ""; }
377 function set_neuro_loss_of_consciousness($data) {
378 if(!empty($data)) {
379 $this->neuro_loss_of_consciousness = $data;
382 function get_neuro_loss_of_consciousness_text() {
383 return $this->neuro_loss_of_consciousness_text;
385 function set_neuro_loss_of_consciousness_text($data) {
386 if(!empty($data)) {
387 $this->neuro_loss_of_consciousness_text = $data;
392 var $neuro_numbness;
393 var $neuro_numbness_text;
394 function get_neuro_numbness() {
395 return $this->neuro_numbness;
397 function get_neuro_numbness_yes() {
398 return $this->neuro_numbness == "Yes" ? "CHECKED" : ""; }
399 function get_neuro_numbness_no() {
400 return $this->neuro_numbness == "No" ? "CHECKED" : ""; }
401 function set_neuro_numbness($data) {
402 if(!empty($data)) {
403 $this->neuro_numbness = $data;
406 function get_neuro_numbness_text() {
407 return $this->neuro_numbness_text;
409 function set_neuro_numbness_text($data) {
410 if(!empty($data)) {
411 $this->neuro_numbness_text = $data;
416 var $neuro_tingling;
417 var $neuro_tingling_text;
418 function get_neuro_tingling() {
419 return $this->neuro_tingling;
421 function get_neuro_tingling_yes() {
422 return $this->neuro_tingling == "Yes" ? "CHECKED" : ""; }
423 function get_neuro_tingling_no() {
424 return $this->neuro_tingling == "No" ? "CHECKED" : ""; }
425 function set_neuro_tingling($data) {
426 if(!empty($data)) {
427 $this->neuro_tingling = $data;
430 function get_neuro_tingling_text() {
431 return $this->neuro_tingling_text;
433 function set_neuro_tingling_text($data) {
434 if(!empty($data)) {
435 $this->neuro_tingling_text = $data;
440 var $neuro_restlessness;
441 var $neuro_restlessness_text;
442 function get_neuro_restlessness() {
443 return $this->neuro_restlessness;
445 function get_neuro_restlessness_yes() {
446 return $this->neuro_restlessness == "Yes" ? "CHECKED" : ""; }
447 function get_neuro_restlessness_no() {
448 return $this->neuro_restlessness == "No" ? "CHECKED" : ""; }
449 function set_neuro_restlessness($data) {
450 if(!empty($data)) {
451 $this->neuro_restlessness = $data;
454 function get_neuro_restlessness_text() {
455 return $this->neuro_restlessness_text;
457 function set_neuro_restlessness_text($data) {
458 if(!empty($data)) {
459 $this->neuro_restlessness_text = $data;
464 var $neuro_dizziness;
465 var $neuro_dizziness_text;
466 function get_neuro_dizziness() {
467 return $this->neuro_dizziness;
469 function get_neuro_dizziness_yes() {
470 return $this->neuro_dizziness == "Yes" ? "CHECKED" : ""; }
471 function get_neuro_dizziness_no() {
472 return $this->neuro_dizziness == "No" ? "CHECKED" : ""; }
473 function set_neuro_dizziness($data) {
474 if(!empty($data)) {
475 $this->neuro_dizziness = $data;
478 function get_neuro_dizziness_text() {
479 return $this->neuro_dizziness_text;
481 function set_neuro_dizziness_text($data) {
482 if(!empty($data)) {
483 $this->neuro_dizziness_text = $data;
488 var $neuro_vertigo;
489 var $neuro_vertigo_text;
490 function get_neuro_vertigo() {
491 return $this->neuro_vertigo;
493 function get_neuro_vertigo_yes() {
494 return $this->neuro_vertigo == "Yes" ? "CHECKED" : ""; }
495 function get_neuro_vertigo_no() {
496 return $this->neuro_vertigo == "No" ? "CHECKED" : ""; }
497 function set_neuro_vertigo($data) {
498 if(!empty($data)) {
499 $this->neuro_vertigo = $data;
502 function get_neuro_vertigo_text() {
503 return $this->neuro_vertigo_text;
505 function set_neuro_vertigo_text($data) {
506 if(!empty($data)) {
507 $this->neuro_vertigo_text = $data;
512 var $neuro_amaurosis_fugax;
513 var $neuro_amaurosis_fugax_text;
514 function get_neuro_amaurosis_fugax() {
515 return $this->neuro_amaurosis_fugax;
517 function get_neuro_amaurosis_fugax_yes() {
518 return $this->neuro_amaurosis_fugax == "Yes" ? "CHECKED" : ""; }
519 function get_neuro_amaurosis_fugax_no() {
520 return $this->neuro_amaurosis_fugax == "No" ? "CHECKED" : ""; }
521 function set_neuro_amaurosis_fugax($data) {
522 if(!empty($data)) {
523 $this->neuro_amaurosis_fugax = $data;
526 function get_neuro_amaurosis_fugax_text() {
527 return $this->neuro_amaurosis_fugax_text;
529 function set_neuro_amaurosis_fugax_text($data) {
530 if(!empty($data)) {
531 $this->neuro_amaurosis_fugax_text = $data;
536 var $neuro_stroke;
537 var $neuro_stroke_text;
538 function get_neuro_stroke() {
539 return $this->neuro_stroke;
541 function get_neuro_stroke_yes() {
542 return $this->neuro_stroke == "Yes" ? "CHECKED" : ""; }
543 function get_neuro_stroke_no() {
544 return $this->neuro_stroke == "No" ? "CHECKED" : ""; }
545 function set_neuro_stroke($data) {
546 if(!empty($data)) {
547 $this->neuro_stroke = $data;
550 function get_neuro_stroke_text() {
551 return $this->neuro_stroke_text;
553 function set_neuro_stroke_text($data) {
554 if(!empty($data)) {
555 $this->neuro_stroke_text = $data;
560 var $neuro_gait_abnormality;
561 var $neuro_gait_abnormality_text;
562 function get_neuro_gait_abnormality() {
563 return $this->neuro_gait_abnormality;
565 function get_neuro_gait_abnormality_yes() {
566 return $this->neuro_gait_abnormality == "Yes" ? "CHECKED" : ""; }
567 function get_neuro_gait_abnormality_no() {
568 return $this->neuro_gait_abnormality == "No" ? "CHECKED" : ""; }
569 function set_neuro_gait_abnormality($data) {
570 if(!empty($data)) {
571 $this->neuro_gait_abnormality = $data;
574 function get_neuro_gait_abnormality_text() {
575 return $this->neuro_gait_abnormality_text;
577 function set_neuro_gait_abnormality_text($data) {
578 if(!empty($data)) {
579 $this->neuro_gait_abnormality_text = $data;
584 var $neuro_frequent_headaches;
585 var $neuro_frequent_headaches_text;
586 function get_neuro_frequent_headaches() {
587 return $this->neuro_frequent_headaches;
589 function get_neuro_frequent_headaches_yes() {
590 return $this->neuro_frequent_headaches == "Yes" ? "CHECKED" : ""; }
591 function get_neuro_frequent_headaches_no() {
592 return $this->neuro_frequent_headaches == "No" ? "CHECKED" : ""; }
593 function set_neuro_frequent_headaches($data) {
594 if(!empty($data)) {
595 $this->neuro_frequent_headaches = $data;
598 function get_neuro_frequent_headaches_text() {
599 return $this->neuro_frequent_headaches_text;
601 function set_neuro_frequent_headaches_text($data) {
602 if(!empty($data)) {
603 $this->neuro_frequent_headaches_text = $data;
608 var $neuro_parathesias;
609 var $neuro_parathesias_text;
610 function get_neuro_parathesias() {
611 return $this->neuro_parathesias;
613 function get_neuro_parathesias_yes() {
614 return $this->neuro_parathesias == "Yes" ? "CHECKED" : ""; }
615 function get_neuro_parathesias_no() {
616 return $this->neuro_parathesias == "No" ? "CHECKED" : ""; }
617 function set_neuro_parathesias($data) {
618 if(!empty($data)) {
619 $this->neuro_parathesias = $data;
622 function get_neuro_parathesias_text() {
623 return $this->neuro_parathesias_text;
625 function set_neuro_parathesias_text($data) {
626 if(!empty($data)) {
627 $this->neuro_parathesias_text = $data;
632 var $neuro_seizures;
633 var $neuro_seizures_text;
634 function get_neuro_seizures() {
635 return $this->neuro_seizures;
637 function get_neuro_seizures_yes() {
638 return $this->neuro_seizures == "Yes" ? "CHECKED" : ""; }
639 function get_neuro_seizures_no() {
640 return $this->neuro_seizures == "No" ? "CHECKED" : ""; }
641 function set_neuro_seizures($data) {
642 if(!empty($data)) {
643 $this->neuro_seizures = $data;
646 function get_neuro_seizures_text() {
647 return $this->neuro_seizures_text;
649 function set_neuro_seizures_text($data) {
650 if(!empty($data)) {
651 $this->neuro_seizures_text = $data;
656 var $neuro_trans_ischemic_attacks;
657 var $neuro_trans_ischemic_attacks_text;
658 function get_neuro_trans_ischemic_attacks() {
659 return $this->neuro_trans_ischemic_attacks;
661 function get_neuro_trans_ischemic_attacks_yes() {
662 return $this->neuro_trans_ischemic_attacks == "Yes" ? "CHECKED" : ""; }
663 function get_neuro_trans_ischemic_attacks_no() {
664 return $this->neuro_trans_ischemic_attacks == "No" ? "CHECKED" : ""; }
665 function set_neuro_trans_ischemic_attacks($data) {
666 if(!empty($data)) {
667 $this->neuro_trans_ischemic_attacks = $data;
670 function get_neuro_trans_ischemic_attacks_text() {
671 return $this->neuro_trans_ischemic_attacks_text;
673 function set_neuro_trans_ischemic_attacks_text($data) {
674 if(!empty($data)) {
675 $this->neuro_trans_ischemic_attacks_text = $data;
680 var $neuro_significant_tremors;
681 var $neuro_significant_tremors_text;
682 function get_neuro_significant_tremors() {
683 return $this->neuro_significant_tremors;
685 function get_neuro_significant_tremors_yes() {
686 return $this->neuro_significant_tremors == "Yes" ? "CHECKED" : ""; }
687 function get_neuro_significant_tremors_no() {
688 return $this->neuro_significant_tremors == "No" ? "CHECKED" : ""; }
689 function set_neuro_significant_tremors($data) {
690 if(!empty($data)) {
691 $this->neuro_significant_tremors = $data;
694 function get_neuro_significant_tremors_text() {
695 return $this->neuro_significant_tremors_text;
697 function set_neuro_significant_tremors_text($data) {
698 if(!empty($data)) {
699 $this->neuro_significant_tremors_text = $data;
703 // ----- neck stiffness -----
705 var $neck_neck_stiffness;
706 var $neck_neck_stiffness_text;
707 function get_neck_neck_stiffness() {
708 return $this->neck_neck_stiffness;
710 function get_neck_neck_stiffness_yes() {
711 return $this->neck_neck_stiffness == "Yes" ? "CHECKED" : ""; }
712 function get_neck_neck_stiffness_no() {
713 return $this->neck_neck_stiffness == "No" ? "CHECKED" : ""; }
714 function set_neck_neck_stiffness($data) {
715 if(!empty($data)) {
716 $this->neck_neck_stiffness = $data;
719 function get_neck_neck_stiffness_text() {
720 return $this->neck_neck_stiffness_text;
722 function set_neck_neck_stiffness_text($data) {
723 if(!empty($data)) {
724 $this->neck_neck_stiffness_text = $data;
729 var $neck_neck_pain;
730 var $neck_neck_pain_text;
731 function get_neck_neck_pain() {
732 return $this->neck_neck_pain;
734 function get_neck_neck_pain_yes() {
735 return $this->neck_neck_pain == "Yes" ? "CHECKED" : ""; }
736 function get_neck_neck_pain_no() {
737 return $this->neck_neck_pain == "No" ? "CHECKED" : ""; }
738 function set_neck_neck_pain($data) {
739 if(!empty($data)) {
740 $this->neck_neck_pain = $data;
743 function get_neck_neck_pain_text() {
744 return $this->neck_neck_pain_text;
746 function set_neck_neck_pain_text($data) {
747 if(!empty($data)) {
748 $this->neck_neck_pain_text = $data;
753 var $neck_neck_masses;
754 var $neck_neck_masses_text;
755 function get_neck_neck_masses() {
756 return $this->neck_neck_masses;
758 function get_neck_neck_masses_yes() {
759 return $this->neck_neck_masses == "Yes" ? "CHECKED" : ""; }
760 function get_neck_neck_masses_no() {
761 return $this->neck_neck_masses == "No" ? "CHECKED" : ""; }
762 function set_neck_neck_masses($data) {
763 if(!empty($data)) {
764 $this->neck_neck_masses = $data;
767 function get_neck_neck_masses_text() {
768 return $this->neck_neck_masses_text;
770 function set_neck_neck_masses_text($data) {
771 if(!empty($data)) {
772 $this->neck_neck_masses_text = $data;
777 var $neck_neck_tenderness;
778 var $neck_neck_tenderness_text;
779 function get_neck_neck_tenderness() {
780 return $this->neck_neck_tenderness;
782 function get_neck_neck_tenderness_yes() {
783 return $this->neck_neck_tenderness == "Yes" ? "CHECKED" : ""; }
784 function get_neck_neck_tenderness_no() {
785 return $this->neck_neck_tenderness == "No" ? "CHECKED" : ""; }
786 function set_neck_neck_tenderness($data) {
787 if(!empty($data)) {
788 $this->neck_neck_tenderness = $data;
791 function get_neck_neck_tenderness_text() {
792 return $this->neck_neck_tenderness_text;
794 function set_neck_neck_tenderness_text($data) {
795 if(!empty($data)) {
796 $this->neck_neck_tenderness_text = $data;
800 // ----- oral ulcers -----
802 var $heent_oral_ulcers;
803 var $heent_oral_ulcers_text;
804 function get_heent_oral_ulcers() {
805 return $this->heent_oral_ulcers;
807 function get_heent_oral_ulcers_yes() {
808 return $this->heent_oral_ulcers == "Yes" ? "CHECKED" : ""; }
809 function get_heent_oral_ulcers_no() {
810 return $this->heent_oral_ulcers == "No" ? "CHECKED" : ""; }
811 function set_heent_oral_ulcers($data) {
812 if(!empty($data)) {
813 $this->heent_oral_ulcers = $data;
816 function get_heent_oral_ulcers_text() {
817 return $this->heent_oral_ulcers_text;
819 function set_heent_oral_ulcers_text($data) {
820 if(!empty($data)) {
821 $this->heent_oral_ulcers_text = $data;
826 var $heent_excessive_cavities;
827 var $heent_excessive_cavities_text;
828 function get_heent_excessive_cavities() {
829 return $this->heent_excessive_cavities;
831 function get_heent_excessive_cavities_yes() {
832 return $this->heent_excessive_cavities == "Yes" ? "CHECKED" : ""; }
833 function get_heent_excessive_cavities_no() {
834 return $this->heent_excessive_cavities == "No" ? "CHECKED" : ""; }
835 function set_heent_excessive_cavities($data) {
836 if(!empty($data)) {
837 $this->heent_excessive_cavities = $data;
840 function get_heent_excessive_cavities_text() {
841 return $this->heent_excessive_cavities_text;
843 function set_heent_excessive_cavities_text($data) {
844 if(!empty($data)) {
845 $this->heent_excessive_cavities_text = $data;
850 var $heent_gingival_disease;
851 var $heent_gingival_disease_text;
852 function get_heent_gingival_disease() {
853 return $this->heent_gingival_disease;
855 function get_heent_gingival_disease_yes() {
856 return $this->heent_gingival_disease == "Yes" ? "CHECKED" : ""; }
857 function get_heent_gingival_disease_no() {
858 return $this->heent_gingival_disease == "No" ? "CHECKED" : ""; }
859 function set_heent_gingival_disease($data) {
860 if(!empty($data)) {
861 $this->heent_gingival_disease = $data;
864 function get_heent_gingival_disease_text() {
865 return $this->heent_gingival_disease_text;
867 function set_heent_gingival_disease_text($data) {
868 if(!empty($data)) {
869 $this->heent_gingival_disease_text = $data;
874 var $heent_persistent_hoarseness;
875 var $heent_persistent_hoarseness_text;
876 function get_heent_persistent_hoarseness() {
877 return $this->heent_persistent_hoarseness;
879 function get_heent_persistent_hoarseness_yes() {
880 return $this->heent_persistent_hoarseness == "Yes" ? "CHECKED" : ""; }
881 function get_heent_persistent_hoarseness_no() {
882 return $this->heent_persistent_hoarseness == "No" ? "CHECKED" : ""; }
883 function set_heent_persistent_hoarseness($data) {
884 if(!empty($data)) {
885 $this->heent_persistent_hoarseness = $data;
888 function get_heent_persistent_hoarseness_text() {
889 return $this->heent_persistent_hoarseness_text;
891 function set_heent_persistent_hoarseness_text($data) {
892 if(!empty($data)) {
893 $this->heent_persistent_hoarseness_text = $data;
898 var $heent_mouth_lesions;
899 var $heent_mouth_lesions_text;
900 function get_heent_mouth_lesions() {
901 return $this->heent_mouth_lesions;
903 function get_heent_mouth_lesions_yes() {
904 return $this->heent_mouth_lesions == "Yes" ? "CHECKED" : ""; }
905 function get_heent_mouth_lesions_no() {
906 return $this->heent_mouth_lesions == "No" ? "CHECKED" : ""; }
907 function set_heent_mouth_lesions($data) {
908 if(!empty($data)) {
909 $this->heent_mouth_lesions = $data;
912 function get_heent_mouth_lesions_text() {
913 return $this->heent_mouth_lesions_text;
915 function set_heent_mouth_lesions_text($data) {
916 if(!empty($data)) {
917 $this->heent_mouth_lesions_text = $data;
922 var $heent_dysphagia;
923 var $heent_dysphagia_text;
924 function get_heent_dysphagia() {
925 return $this->heent_dysphagia;
927 function get_heent_dysphagia_yes() {
928 return $this->heent_dysphagia == "Yes" ? "CHECKED" : ""; }
929 function get_heent_dysphagia_no() {
930 return $this->heent_dysphagia == "No" ? "CHECKED" : ""; }
931 function set_heent_dysphagia($data) {
932 if(!empty($data)) {
933 $this->heent_dysphagia = $data;
936 function get_heent_dysphagia_text() {
937 return $this->heent_dysphagia_text;
939 function set_heent_dysphagia_text($data) {
940 if(!empty($data)) {
941 $this->heent_dysphagia_text = $data;
946 var $heent_odynophagia;
947 var $heent_odynophagia_text;
948 function get_heent_odynophagia() {
949 return $this->heent_odynophagia;
951 function get_heent_odynophagia_yes() {
952 return $this->heent_odynophagia == "Yes" ? "CHECKED" : ""; }
953 function get_heent_odynophagia_no() {
954 return $this->heent_odynophagia == "No" ? "CHECKED" : ""; }
955 function set_heent_odynophagia($data) {
956 if(!empty($data)) {
957 $this->heent_odynophagia = $data;
960 function get_heent_odynophagia_text() {
961 return $this->heent_odynophagia_text;
963 function set_heent_odynophagia_text($data) {
964 if(!empty($data)) {
965 $this->heent_odynophagia_text = $data;
970 var $heent_dental_pain;
971 var $heent_dental_pain_text;
972 function get_heent_dental_pain() {
973 return $this->heent_dental_pain;
975 function get_heent_dental_pain_yes() {
976 return $this->heent_dental_pain == "Yes" ? "CHECKED" : ""; }
977 function get_heent_dental_pain_no() {
978 return $this->heent_dental_pain == "No" ? "CHECKED" : ""; }
979 function set_heent_dental_pain($data) {
980 if(!empty($data)) {
981 $this->heent_dental_pain = $data;
984 function get_heent_dental_pain_text() {
985 return $this->heent_dental_pain_text;
987 function set_heent_dental_pain_text($data) {
988 if(!empty($data)) {
989 $this->heent_dental_pain_text = $data;
994 var $heent_sore_throat;
995 var $heent_sore_throat_text;
996 function get_heent_sore_throat() {
997 return $this->heent_sore_throat;
999 function get_heent_sore_throat_yes() {
1000 return $this->heent_sore_throat == "Yes" ? "CHECKED" : ""; }
1001 function get_heent_sore_throat_no() {
1002 return $this->heent_sore_throat == "No" ? "CHECKED" : ""; }
1003 function set_heent_sore_throat($data) {
1004 if(!empty($data)) {
1005 $this->heent_sore_throat = $data;
1008 function get_heent_sore_throat_text() {
1009 return $this->heent_sore_throat_text;
1011 function set_heent_sore_throat_text($data) {
1012 if(!empty($data)) {
1013 $this->heent_sore_throat_text = $data;
1018 var $heent_ear_pain;
1019 var $heent_ear_pain_text;
1020 function get_heent_ear_pain() {
1021 return $this->heent_ear_pain;
1023 function get_heent_ear_pain_yes() {
1024 return $this->heent_ear_pain == "Yes" ? "CHECKED" : ""; }
1025 function get_heent_ear_pain_no() {
1026 return $this->heent_ear_pain == "No" ? "CHECKED" : ""; }
1027 function set_heent_ear_pain($data) {
1028 if(!empty($data)) {
1029 $this->heent_ear_pain = $data;
1032 function get_heent_ear_pain_text() {
1033 return $this->heent_ear_pain_text;
1035 function set_heent_ear_pain_text($data) {
1036 if(!empty($data)) {
1037 $this->heent_ear_pain_text = $data;
1042 var $heent_ear_discharge;
1043 var $heent_ear_discharge_text;
1044 function get_heent_ear_discharge() {
1045 return $this->heent_ear_discharge;
1047 function get_heent_ear_discharge_yes() {
1048 return $this->heent_ear_discharge == "Yes" ? "CHECKED" : ""; }
1049 function get_heent_ear_discharge_no() {
1050 return $this->heent_ear_discharge == "No" ? "CHECKED" : ""; }
1051 function set_heent_ear_discharge($data) {
1052 if(!empty($data)) {
1053 $this->heent_ear_discharge = $data;
1056 function get_heent_ear_discharge_text() {
1057 return $this->heent_ear_discharge_text;
1059 function set_heent_ear_discharge_text($data) {
1060 if(!empty($data)) {
1061 $this->heent_ear_discharge_text = $data;
1066 var $heent_tinnitus;
1067 var $heent_tinnitus_text;
1068 function get_heent_tinnitus() {
1069 return $this->heent_tinnitus;
1071 function get_heent_tinnitus_yes() {
1072 return $this->heent_tinnitus == "Yes" ? "CHECKED" : ""; }
1073 function get_heent_tinnitus_no() {
1074 return $this->heent_tinnitus == "No" ? "CHECKED" : ""; }
1075 function set_heent_tinnitus($data) {
1076 if(!empty($data)) {
1077 $this->heent_tinnitus = $data;
1080 function get_heent_tinnitus_text() {
1081 return $this->heent_tinnitus_text;
1083 function set_heent_tinnitus_text($data) {
1084 if(!empty($data)) {
1085 $this->heent_tinnitus_text = $data;
1090 var $heent_hearing_loss;
1091 var $heent_hearing_loss_text;
1092 function get_heent_hearing_loss() {
1093 return $this->heent_hearing_loss;
1095 function get_heent_hearing_loss_yes() {
1096 return $this->heent_hearing_loss == "Yes" ? "CHECKED" : ""; }
1097 function get_heent_hearing_loss_no() {
1098 return $this->heent_hearing_loss == "No" ? "CHECKED" : ""; }
1099 function set_heent_hearing_loss($data) {
1100 if(!empty($data)) {
1101 $this->heent_hearing_loss = $data;
1104 function get_heent_hearing_loss_text() {
1105 return $this->heent_hearing_loss_text;
1107 function set_heent_hearing_loss_text($data) {
1108 if(!empty($data)) {
1109 $this->heent_hearing_loss_text = $data;
1114 var $heent_allergic_rhinitis;
1115 var $heent_allergic_rhinitis_text;
1116 function get_heent_allergic_rhinitis() {
1117 return $this->heent_allergic_rhinitis;
1119 function get_heent_allergic_rhinitis_yes() {
1120 return $this->heent_allergic_rhinitis == "Yes" ? "CHECKED" : ""; }
1121 function get_heent_allergic_rhinitis_no() {
1122 return $this->heent_allergic_rhinitis == "No" ? "CHECKED" : ""; }
1123 function set_heent_allergic_rhinitis($data) {
1124 if(!empty($data)) {
1125 $this->heent_allergic_rhinitis = $data;
1128 function get_heent_allergic_rhinitis_text() {
1129 return $this->heent_allergic_rhinitis_text;
1131 function set_heent_allergic_rhinitis_text($data) {
1132 if(!empty($data)) {
1133 $this->heent_allergic_rhinitis_text = $data;
1138 var $heent_nasal_congestion;
1139 var $heent_nasal_congestion_text;
1140 function get_heent_nasal_congestion() {
1141 return $this->heent_nasal_congestion;
1143 function get_heent_nasal_congestion_yes() {
1144 return $this->heent_nasal_congestion == "Yes" ? "CHECKED" : ""; }
1145 function get_heent_nasal_congestion_no() {
1146 return $this->heent_nasal_congestion == "No" ? "CHECKED" : ""; }
1147 function set_heent_nasal_congestion($data) {
1148 if(!empty($data)) {
1149 $this->heent_nasal_congestion = $data;
1152 function get_heent_nasal_congestion_text() {
1153 return $this->heent_nasal_congestion_text;
1155 function set_heent_nasal_congestion_text($data) {
1156 if(!empty($data)) {
1157 $this->heent_nasal_congestion_text = $data;
1162 var $heent_nasal_discharge;
1163 var $heent_nasal_discharge_text;
1164 function get_heent_nasal_discharge() {
1165 return $this->heent_nasal_discharge;
1167 function get_heent_nasal_discharge_yes() {
1168 return $this->heent_nasal_discharge == "Yes" ? "CHECKED" : ""; }
1169 function get_heent_nasal_discharge_no() {
1170 return $this->heent_nasal_discharge == "No" ? "CHECKED" : ""; }
1171 function set_heent_nasal_discharge($data) {
1172 if(!empty($data)) {
1173 $this->heent_nasal_discharge = $data;
1176 function get_heent_nasal_discharge_text() {
1177 return $this->heent_nasal_discharge_text;
1179 function set_heent_nasal_discharge_text($data) {
1180 if(!empty($data)) {
1181 $this->heent_nasal_discharge_text = $data;
1186 var $heent_nasal_injury;
1187 var $heent_nasal_injury_text;
1188 function get_heent_nasal_injury() {
1189 return $this->heent_nasal_injury;
1191 function get_heent_nasal_injury_yes() {
1192 return $this->heent_nasal_injury == "Yes" ? "CHECKED" : ""; }
1193 function get_heent_nasal_injury_no() {
1194 return $this->heent_nasal_injury == "No" ? "CHECKED" : ""; }
1195 function set_heent_nasal_injury($data) {
1196 if(!empty($data)) {
1197 $this->heent_nasal_injury = $data;
1200 function get_heent_nasal_injury_text() {
1201 return $this->heent_nasal_injury_text;
1203 function set_heent_nasal_injury_text($data) {
1204 if(!empty($data)) {
1205 $this->heent_nasal_injury_text = $data;
1210 var $heent_nasal_surgery;
1211 var $heent_nasal_surgery_text;
1212 function get_heent_nasal_surgery() {
1213 return $this->heent_nasal_surgery;
1215 function get_heent_nasal_surgery_yes() {
1216 return $this->heent_nasal_surgery == "Yes" ? "CHECKED" : ""; }
1217 function get_heent_nasal_surgery_no() {
1218 return $this->heent_nasal_surgery == "No" ? "CHECKED" : ""; }
1219 function set_heent_nasal_surgery($data) {
1220 if(!empty($data)) {
1221 $this->heent_nasal_surgery = $data;
1224 function get_heent_nasal_surgery_text() {
1225 return $this->heent_nasal_surgery_text;
1227 function set_heent_nasal_surgery_text($data) {
1228 if(!empty($data)) {
1229 $this->heent_nasal_surgery_text = $data;
1234 var $heent_nose_bleeds;
1235 var $heent_nose_bleeds_text;
1236 function get_heent_nose_bleeds() {
1237 return $this->heent_nose_bleeds;
1239 function get_heent_nose_bleeds_yes() {
1240 return $this->heent_nose_bleeds == "Yes" ? "CHECKED" : ""; }
1241 function get_heent_nose_bleeds_no() {
1242 return $this->heent_nose_bleeds == "No" ? "CHECKED" : ""; }
1243 function set_heent_nose_bleeds($data) {
1244 if(!empty($data)) {
1245 $this->heent_nose_bleeds = $data;
1248 function get_heent_nose_bleeds_text() {
1249 return $this->heent_nose_bleeds_text;
1251 function set_heent_nose_bleeds_text($data) {
1252 if(!empty($data)) {
1253 $this->heent_nose_bleeds_text = $data;
1258 var $heent_post_nasal_drip;
1259 var $heent_post_nasal_drip_text;
1260 function get_heent_post_nasal_drip() {
1261 return $this->heent_post_nasal_drip;
1263 function get_heent_post_nasal_drip_yes() {
1264 return $this->heent_post_nasal_drip == "Yes" ? "CHECKED" : ""; }
1265 function get_heent_post_nasal_drip_no() {
1266 return $this->heent_post_nasal_drip == "No" ? "CHECKED" : ""; }
1267 function set_heent_post_nasal_drip($data) {
1268 if(!empty($data)) {
1269 $this->heent_post_nasal_drip = $data;
1272 function get_heent_post_nasal_drip_text() {
1273 return $this->heent_post_nasal_drip_text;
1275 function set_heent_post_nasal_drip_text($data) {
1276 if(!empty($data)) {
1277 $this->heent_post_nasal_drip_text = $data;
1282 var $heent_sinus_pressure;
1283 var $heent_sinus_pressure_text;
1284 function get_heent_sinus_pressure() {
1285 return $this->heent_sinus_pressure;
1287 function get_heent_sinus_pressure_yes() {
1288 return $this->heent_sinus_pressure == "Yes" ? "CHECKED" : ""; }
1289 function get_heent_sinus_pressure_no() {
1290 return $this->heent_sinus_pressure == "No" ? "CHECKED" : ""; }
1291 function set_heent_sinus_pressure($data) {
1292 if(!empty($data)) {
1293 $this->heent_sinus_pressure = $data;
1296 function get_heent_sinus_pressure_text() {
1297 return $this->heent_sinus_pressure_text;
1299 function set_heent_sinus_pressure_text($data) {
1300 if(!empty($data)) {
1301 $this->heent_sinus_pressure_text = $data;
1306 var $heent_sinus_pain;
1307 var $heent_sinus_pain_text;
1308 function get_heent_sinus_pain() {
1309 return $this->heent_sinus_pain;
1311 function get_heent_sinus_pain_yes() {
1312 return $this->heent_sinus_pain == "Yes" ? "CHECKED" : ""; }
1313 function get_heent_sinus_pain_no() {
1314 return $this->heent_sinus_pain == "No" ? "CHECKED" : ""; }
1315 function set_heent_sinus_pain($data) {
1316 if(!empty($data)) {
1317 $this->heent_sinus_pain = $data;
1320 function get_heent_sinus_pain_text() {
1321 return $this->heent_sinus_pain_text;
1323 function set_heent_sinus_pain_text($data) {
1324 if(!empty($data)) {
1325 $this->heent_sinus_pain_text = $data;
1330 var $heent_headache;
1331 var $heent_headache_text;
1332 function get_heent_headache() {
1333 return $this->heent_headache;
1335 function get_heent_headache_yes() {
1336 return $this->heent_headache == "Yes" ? "CHECKED" : ""; }
1337 function get_heent_headache_no() {
1338 return $this->heent_headache == "No" ? "CHECKED" : ""; }
1339 function set_heent_headache($data) {
1340 if(!empty($data)) {
1341 $this->heent_headache = $data;
1344 function get_heent_headache_text() {
1345 return $this->heent_headache_text;
1347 function set_heent_headache_text($data) {
1348 if(!empty($data)) {
1349 $this->heent_headache_text = $data;
1354 var $heent_eye_pain;
1355 var $heent_eye_pain_text;
1356 function get_heent_eye_pain() {
1357 return $this->heent_eye_pain;
1359 function get_heent_eye_pain_yes() {
1360 return $this->heent_eye_pain == "Yes" ? "CHECKED" : ""; }
1361 function get_heent_eye_pain_no() {
1362 return $this->heent_eye_pain == "No" ? "CHECKED" : ""; }
1363 function set_heent_eye_pain($data) {
1364 if(!empty($data)) {
1365 $this->heent_eye_pain = $data;
1368 function get_heent_eye_pain_text() {
1369 return $this->heent_eye_pain_text;
1371 function set_heent_eye_pain_text($data) {
1372 if(!empty($data)) {
1373 $this->heent_eye_pain_text = $data;
1378 var $heent_eye_redness;
1379 var $heent_eye_redness_text;
1380 function get_heent_eye_redness() {
1381 return $this->heent_eye_redness;
1383 function get_heent_eye_redness_yes() {
1384 return $this->heent_eye_redness == "Yes" ? "CHECKED" : ""; }
1385 function get_heent_eye_redness_no() {
1386 return $this->heent_eye_redness == "No" ? "CHECKED" : ""; }
1387 function set_heent_eye_redness($data) {
1388 if(!empty($data)) {
1389 $this->heent_eye_redness = $data;
1392 function get_heent_eye_redness_text() {
1393 return $this->heent_eye_redness_text;
1395 function set_heent_eye_redness_text($data) {
1396 if(!empty($data)) {
1397 $this->heent_eye_redness_text = $data;
1402 var $heent_visual_changes;
1403 var $heent_visual_changes_text;
1404 function get_heent_visual_changes() {
1405 return $this->heent_visual_changes;
1407 function get_heent_visual_changes_yes() {
1408 return $this->heent_visual_changes == "Yes" ? "CHECKED" : ""; }
1409 function get_heent_visual_changes_no() {
1410 return $this->heent_visual_changes == "No" ? "CHECKED" : ""; }
1411 function set_heent_visual_changes($data) {
1412 if(!empty($data)) {
1413 $this->heent_visual_changes = $data;
1416 function get_heent_visual_changes_text() {
1417 return $this->heent_visual_changes_text;
1419 function set_heent_visual_changes_text($data) {
1420 if(!empty($data)) {
1421 $this->heent_visual_changes_text = $data;
1426 var $heent_blurry_vision;
1427 var $heent_blurry_vision_text;
1428 function get_heent_blurry_vision() {
1429 return $this->heent_blurry_vision;
1431 function get_heent_blurry_vision_yes() {
1432 return $this->heent_blurry_vision == "Yes" ? "CHECKED" : ""; }
1433 function get_heent_blurry_vision_no() {
1434 return $this->heent_blurry_vision == "No" ? "CHECKED" : ""; }
1435 function set_heent_blurry_vision($data) {
1436 if(!empty($data)) {
1437 $this->heent_blurry_vision = $data;
1440 function get_heent_blurry_vision_text() {
1441 return $this->heent_blurry_vision_text;
1443 function set_heent_blurry_vision_text($data) {
1444 if(!empty($data)) {
1445 $this->heent_blurry_vision_text = $data;
1450 var $heent_eye_discharge;
1451 var $heent_eye_discharge_text;
1452 function get_heent_eye_discharge() {
1453 return $this->heent_eye_discharge;
1455 function get_heent_eye_discharge_yes() {
1456 return $this->heent_eye_discharge == "Yes" ? "CHECKED" : ""; }
1457 function get_heent_eye_discharge_no() {
1458 return $this->heent_eye_discharge == "No" ? "CHECKED" : ""; }
1459 function set_heent_eye_discharge($data) {
1460 if(!empty($data)) {
1461 $this->heent_eye_discharge = $data;
1464 function get_heent_eye_discharge_text() {
1465 return $this->heent_eye_discharge_text;
1467 function set_heent_eye_discharge_text($data) {
1468 if(!empty($data)) {
1469 $this->heent_eye_discharge_text = $data;
1474 var $heent_eye_glasses_contacts;
1475 var $heent_eye_glasses_contacts_text;
1476 function get_heent_eye_glasses_contacts() {
1477 return $this->heent_eye_glasses_contacts;
1479 function get_heent_eye_glasses_contacts_yes() {
1480 return $this->heent_eye_glasses_contacts == "Yes" ? "CHECKED" : ""; }
1481 function get_heent_eye_glasses_contacts_no() {
1482 return $this->heent_eye_glasses_contacts == "No" ? "CHECKED" : ""; }
1483 function set_heent_eye_glasses_contacts($data) {
1484 if(!empty($data)) {
1485 $this->heent_eye_glasses_contacts = $data;
1488 function get_heent_eye_glasses_contacts_text() {
1489 return $this->heent_eye_glasses_contacts_text;
1491 function set_heent_eye_glasses_contacts_text($data) {
1492 if(!empty($data)) {
1493 $this->heent_eye_glasses_contacts_text = $data;
1498 var $heent_excess_tearing;
1499 var $heent_excess_tearing_text;
1500 function get_heent_excess_tearing() {
1501 return $this->heent_excess_tearing;
1503 function get_heent_excess_tearing_yes() {
1504 return $this->heent_excess_tearing == "Yes" ? "CHECKED" : ""; }
1505 function get_heent_excess_tearing_no() {
1506 return $this->heent_excess_tearing == "No" ? "CHECKED" : ""; }
1507 function set_heent_excess_tearing($data) {
1508 if(!empty($data)) {
1509 $this->heent_excess_tearing = $data;
1512 function get_heent_excess_tearing_text() {
1513 return $this->heent_excess_tearing_text;
1515 function set_heent_excess_tearing_text($data) {
1516 if(!empty($data)) {
1517 $this->heent_excess_tearing_text = $data;
1522 var $heent_photophobia;
1523 var $heent_photophobia_text;
1524 function get_heent_photophobia() {
1525 return $this->heent_photophobia;
1527 function get_heent_photophobia_yes() {
1528 return $this->heent_photophobia == "Yes" ? "CHECKED" : ""; }
1529 function get_heent_photophobia_no() {
1530 return $this->heent_photophobia == "No" ? "CHECKED" : ""; }
1531 function set_heent_photophobia($data) {
1532 if(!empty($data)) {
1533 $this->heent_photophobia = $data;
1536 function get_heent_photophobia_text() {
1537 return $this->heent_photophobia_text;
1539 function set_heent_photophobia_text($data) {
1540 if(!empty($data)) {
1541 $this->heent_photophobia_text = $data;
1546 var $heent_scotomata;
1547 var $heent_scotomata_text;
1548 function get_heent_scotomata() {
1549 return $this->heent_scotomata;
1551 function get_heent_scotomata_yes() {
1552 return $this->heent_scotomata == "Yes" ? "CHECKED" : ""; }
1553 function get_heent_scotomata_no() {
1554 return $this->heent_scotomata == "No" ? "CHECKED" : ""; }
1555 function set_heent_scotomata($data) {
1556 if(!empty($data)) {
1557 $this->heent_scotomata = $data;
1560 function get_heent_scotomata_text() {
1561 return $this->heent_scotomata_text;
1563 function set_heent_scotomata_text($data) {
1564 if(!empty($data)) {
1565 $this->heent_scotomata_text = $data;
1570 var $heent_tunnel_vision;
1571 var $heent_tunnel_vision_text;
1572 function get_heent_tunnel_vision() {
1573 return $this->heent_tunnel_vision;
1575 function get_heent_tunnel_vision_yes() {
1576 return $this->heent_tunnel_vision == "Yes" ? "CHECKED" : ""; }
1577 function get_heent_tunnel_vision_no() {
1578 return $this->heent_tunnel_vision == "No" ? "CHECKED" : ""; }
1579 function set_heent_tunnel_vision($data) {
1580 if(!empty($data)) {
1581 $this->heent_tunnel_vision = $data;
1584 function get_heent_tunnel_vision_text() {
1585 return $this->heent_tunnel_vision_text;
1587 function set_heent_tunnel_vision_text($data) {
1588 if(!empty($data)) {
1589 $this->heent_tunnel_vision_text = $data;
1594 var $heent_glaucoma;
1595 var $heent_glaucoma_text;
1596 function get_heent_glaucoma() {
1597 return $this->heent_glaucoma;
1599 function get_heent_glaucoma_yes() {
1600 return $this->heent_glaucoma == "Yes" ? "CHECKED" : ""; }
1601 function get_heent_glaucoma_no() {
1602 return $this->heent_glaucoma == "No" ? "CHECKED" : ""; }
1603 function set_heent_glaucoma($data) {
1604 if(!empty($data)) {
1605 $this->heent_glaucoma = $data;
1608 function get_heent_glaucoma_text() {
1609 return $this->heent_glaucoma_text;
1611 function set_heent_glaucoma_text($data) {
1612 if(!empty($data)) {
1613 $this->heent_glaucoma_text = $data;
1617 // ----- sub sternal or left chest pain -----
1619 var $cardiovascular_sub_sternal_or_left_chest_pain;
1620 var $cardiovascular_sub_sternal_or_left_chest_pain_text;
1621 function get_cardiovascular_sub_sternal_or_left_chest_pain() {
1622 return $this->cardiovascular_sub_sternal_or_left_chest_pain;
1624 function get_cardiovascular_sub_sternal_or_left_chest_pain_yes() {
1625 return $this->cardiovascular_sub_sternal_or_left_chest_pain == "Yes" ? "CHECKED" : ""; }
1626 function get_cardiovascular_sub_sternal_or_left_chest_pain_no() {
1627 return $this->cardiovascular_sub_sternal_or_left_chest_pain == "No" ? "CHECKED" : ""; }
1628 function set_cardiovascular_sub_sternal_or_left_chest_pain($data) {
1629 if(!empty($data)) {
1630 $this->cardiovascular_sub_sternal_or_left_chest_pain = $data;
1633 function get_cardiovascular_sub_sternal_or_left_chest_pain_text() {
1634 return $this->cardiovascular_sub_sternal_or_left_chest_pain_text;
1636 function set_cardiovascular_sub_sternal_or_left_chest_pain_text($data) {
1637 if(!empty($data)) {
1638 $this->cardiovascular_sub_sternal_or_left_chest_pain_text = $data;
1643 var $cardiovascular_other_chest_pain;
1644 var $cardiovascular_other_chest_pain_text;
1645 function get_cardiovascular_other_chest_pain() {
1646 return $this->cardiovascular_other_chest_pain;
1648 function get_cardiovascular_other_chest_pain_yes() {
1649 return $this->cardiovascular_other_chest_pain == "Yes" ? "CHECKED" : ""; }
1650 function get_cardiovascular_other_chest_pain_no() {
1651 return $this->cardiovascular_other_chest_pain == "No" ? "CHECKED" : ""; }
1652 function set_cardiovascular_other_chest_pain($data) {
1653 if(!empty($data)) {
1654 $this->cardiovascular_other_chest_pain = $data;
1657 function get_cardiovascular_other_chest_pain_text() {
1658 return $this->cardiovascular_other_chest_pain_text;
1660 function set_cardiovascular_other_chest_pain_text($data) {
1661 if(!empty($data)) {
1662 $this->cardiovascular_other_chest_pain_text = $data;
1667 var $cardiovascular_palpitations;
1668 var $cardiovascular_palpitations_text;
1669 function get_cardiovascular_palpitations() {
1670 return $this->cardiovascular_palpitations;
1672 function get_cardiovascular_palpitations_yes() {
1673 return $this->cardiovascular_palpitations == "Yes" ? "CHECKED" : ""; }
1674 function get_cardiovascular_palpitations_no() {
1675 return $this->cardiovascular_palpitations == "No" ? "CHECKED" : ""; }
1676 function set_cardiovascular_palpitations($data) {
1677 if(!empty($data)) {
1678 $this->cardiovascular_palpitations = $data;
1681 function get_cardiovascular_palpitations_text() {
1682 return $this->cardiovascular_palpitations_text;
1684 function set_cardiovascular_palpitations_text($data) {
1685 if(!empty($data)) {
1686 $this->cardiovascular_palpitations_text = $data;
1691 var $cardiovascular_irregular_rhythm;
1692 var $cardiovascular_irregular_rhythm_text;
1693 function get_cardiovascular_irregular_rhythm() {
1694 return $this->cardiovascular_irregular_rhythm;
1696 function get_cardiovascular_irregular_rhythm_yes() {
1697 return $this->cardiovascular_irregular_rhythm == "Yes" ? "CHECKED" : ""; }
1698 function get_cardiovascular_irregular_rhythm_no() {
1699 return $this->cardiovascular_irregular_rhythm == "No" ? "CHECKED" : ""; }
1700 function set_cardiovascular_irregular_rhythm($data) {
1701 if(!empty($data)) {
1702 $this->cardiovascular_irregular_rhythm = $data;
1705 function get_cardiovascular_irregular_rhythm_text() {
1706 return $this->cardiovascular_irregular_rhythm_text;
1708 function set_cardiovascular_irregular_rhythm_text($data) {
1709 if(!empty($data)) {
1710 $this->cardiovascular_irregular_rhythm_text = $data;
1715 var $cardiovascular_jugular_vein_distention;
1716 var $cardiovascular_jugular_vein_distention_text;
1717 function get_cardiovascular_jugular_vein_distention() {
1718 return $this->cardiovascular_jugular_vein_distention;
1720 function get_cardiovascular_jugular_vein_distention_yes() {
1721 return $this->cardiovascular_jugular_vein_distention == "Yes" ? "CHECKED" : ""; }
1722 function get_cardiovascular_jugular_vein_distention_no() {
1723 return $this->cardiovascular_jugular_vein_distention == "No" ? "CHECKED" : ""; }
1724 function set_cardiovascular_jugular_vein_distention($data) {
1725 if(!empty($data)) {
1726 $this->cardiovascular_jugular_vein_distention = $data;
1729 function get_cardiovascular_jugular_vein_distention_text() {
1730 return $this->cardiovascular_jugular_vein_distention_text;
1732 function set_cardiovascular_jugular_vein_distention_text($data) {
1733 if(!empty($data)) {
1734 $this->cardiovascular_jugular_vein_distention_text = $data;
1739 var $cardiovascular_claudication;
1740 var $cardiovascular_claudication_text;
1741 function get_cardiovascular_claudication() {
1742 return $this->cardiovascular_claudication;
1744 function get_cardiovascular_claudication_yes() {
1745 return $this->cardiovascular_claudication == "Yes" ? "CHECKED" : ""; }
1746 function get_cardiovascular_claudication_no() {
1747 return $this->cardiovascular_claudication == "No" ? "CHECKED" : ""; }
1748 function set_cardiovascular_claudication($data) {
1749 if(!empty($data)) {
1750 $this->cardiovascular_claudication = $data;
1753 function get_cardiovascular_claudication_text() {
1754 return $this->cardiovascular_claudication_text;
1756 function set_cardiovascular_claudication_text($data) {
1757 if(!empty($data)) {
1758 $this->cardiovascular_claudication_text = $data;
1763 var $cardiovascular_dizziness;
1764 var $cardiovascular_dizziness_text;
1765 function get_cardiovascular_dizziness() {
1766 return $this->cardiovascular_dizziness;
1768 function get_cardiovascular_dizziness_yes() {
1769 return $this->cardiovascular_dizziness == "Yes" ? "CHECKED" : ""; }
1770 function get_cardiovascular_dizziness_no() {
1771 return $this->cardiovascular_dizziness == "No" ? "CHECKED" : ""; }
1772 function set_cardiovascular_dizziness($data) {
1773 if(!empty($data)) {
1774 $this->cardiovascular_dizziness = $data;
1777 function get_cardiovascular_dizziness_text() {
1778 return $this->cardiovascular_dizziness_text;
1780 function set_cardiovascular_dizziness_text($data) {
1781 if(!empty($data)) {
1782 $this->cardiovascular_dizziness_text = $data;
1787 var $cardiovascular_dyspnea_on_exertion;
1788 var $cardiovascular_dyspnea_on_exertion_text;
1789 function get_cardiovascular_dyspnea_on_exertion() {
1790 return $this->cardiovascular_dyspnea_on_exertion;
1792 function get_cardiovascular_dyspnea_on_exertion_yes() {
1793 return $this->cardiovascular_dyspnea_on_exertion == "Yes" ? "CHECKED" : ""; }
1794 function get_cardiovascular_dyspnea_on_exertion_no() {
1795 return $this->cardiovascular_dyspnea_on_exertion == "No" ? "CHECKED" : ""; }
1796 function set_cardiovascular_dyspnea_on_exertion($data) {
1797 if(!empty($data)) {
1798 $this->cardiovascular_dyspnea_on_exertion = $data;
1801 function get_cardiovascular_dyspnea_on_exertion_text() {
1802 return $this->cardiovascular_dyspnea_on_exertion_text;
1804 function set_cardiovascular_dyspnea_on_exertion_text($data) {
1805 if(!empty($data)) {
1806 $this->cardiovascular_dyspnea_on_exertion_text = $data;
1811 var $cardiovascular_orthopnea;
1812 var $cardiovascular_orthopnea_text;
1813 function get_cardiovascular_orthopnea() {
1814 return $this->cardiovascular_orthopnea;
1816 function get_cardiovascular_orthopnea_yes() {
1817 return $this->cardiovascular_orthopnea == "Yes" ? "CHECKED" : ""; }
1818 function get_cardiovascular_orthopnea_no() {
1819 return $this->cardiovascular_orthopnea == "No" ? "CHECKED" : ""; }
1820 function set_cardiovascular_orthopnea($data) {
1821 if(!empty($data)) {
1822 $this->cardiovascular_orthopnea = $data;
1825 function get_cardiovascular_orthopnea_text() {
1826 return $this->cardiovascular_orthopnea_text;
1828 function set_cardiovascular_orthopnea_text($data) {
1829 if(!empty($data)) {
1830 $this->cardiovascular_orthopnea_text = $data;
1835 var $cardiovascular_noctural_dyspnea;
1836 var $cardiovascular_noctural_dyspnea_text;
1837 function get_cardiovascular_noctural_dyspnea() {
1838 return $this->cardiovascular_noctural_dyspnea;
1840 function get_cardiovascular_noctural_dyspnea_yes() {
1841 return $this->cardiovascular_noctural_dyspnea == "Yes" ? "CHECKED" : ""; }
1842 function get_cardiovascular_noctural_dyspnea_no() {
1843 return $this->cardiovascular_noctural_dyspnea == "No" ? "CHECKED" : ""; }
1844 function set_cardiovascular_noctural_dyspnea($data) {
1845 if(!empty($data)) {
1846 $this->cardiovascular_noctural_dyspnea = $data;
1849 function get_cardiovascular_noctural_dyspnea_text() {
1850 return $this->cardiovascular_noctural_dyspnea_text;
1852 function set_cardiovascular_noctural_dyspnea_text($data) {
1853 if(!empty($data)) {
1854 $this->cardiovascular_noctural_dyspnea_text = $data;
1859 var $cardiovascular_edema;
1860 var $cardiovascular_edema_text;
1861 function get_cardiovascular_edema() {
1862 return $this->cardiovascular_edema;
1864 function get_cardiovascular_edema_yes() {
1865 return $this->cardiovascular_edema == "Yes" ? "CHECKED" : ""; }
1866 function get_cardiovascular_edema_no() {
1867 return $this->cardiovascular_edema == "No" ? "CHECKED" : ""; }
1868 function set_cardiovascular_edema($data) {
1869 if(!empty($data)) {
1870 $this->cardiovascular_edema = $data;
1873 function get_cardiovascular_edema_text() {
1874 return $this->cardiovascular_edema_text;
1876 function set_cardiovascular_edema_text($data) {
1877 if(!empty($data)) {
1878 $this->cardiovascular_edema_text = $data;
1883 var $cardiovascular_presyncope;
1884 var $cardiovascular_presyncope_text;
1885 function get_cardiovascular_presyncope() {
1886 return $this->cardiovascular_presyncope;
1888 function get_cardiovascular_presyncope_yes() {
1889 return $this->cardiovascular_presyncope == "Yes" ? "CHECKED" : ""; }
1890 function get_cardiovascular_presyncope_no() {
1891 return $this->cardiovascular_presyncope == "No" ? "CHECKED" : ""; }
1892 function set_cardiovascular_presyncope($data) {
1893 if(!empty($data)) {
1894 $this->cardiovascular_presyncope = $data;
1897 function get_cardiovascular_presyncope_text() {
1898 return $this->cardiovascular_presyncope_text;
1900 function set_cardiovascular_presyncope_text($data) {
1901 if(!empty($data)) {
1902 $this->cardiovascular_presyncope_text = $data;
1907 var $cardiovascular_syncope;
1908 var $cardiovascular_syncope_text;
1909 function get_cardiovascular_syncope() {
1910 return $this->cardiovascular_syncope;
1912 function get_cardiovascular_syncope_yes() {
1913 return $this->cardiovascular_syncope == "Yes" ? "CHECKED" : ""; }
1914 function get_cardiovascular_syncope_no() {
1915 return $this->cardiovascular_syncope == "No" ? "CHECKED" : ""; }
1916 function set_cardiovascular_syncope($data) {
1917 if(!empty($data)) {
1918 $this->cardiovascular_syncope = $data;
1921 function get_cardiovascular_syncope_text() {
1922 return $this->cardiovascular_syncope_text;
1924 function set_cardiovascular_syncope_text($data) {
1925 if(!empty($data)) {
1926 $this->cardiovascular_syncope_text = $data;
1931 var $cardiovascular_heart_murmur;
1932 var $cardiovascular_heart_murmur_text;
1933 function get_cardiovascular_heart_murmur() {
1934 return $this->cardiovascular_heart_murmur;
1936 function get_cardiovascular_heart_murmur_yes() {
1937 return $this->cardiovascular_heart_murmur == "Yes" ? "CHECKED" : ""; }
1938 function get_cardiovascular_heart_murmur_no() {
1939 return $this->cardiovascular_heart_murmur == "No" ? "CHECKED" : ""; }
1940 function set_cardiovascular_heart_murmur($data) {
1941 if(!empty($data)) {
1942 $this->cardiovascular_heart_murmur = $data;
1945 function get_cardiovascular_heart_murmur_text() {
1946 return $this->cardiovascular_heart_murmur_text;
1948 function set_cardiovascular_heart_murmur_text($data) {
1949 if(!empty($data)) {
1950 $this->cardiovascular_heart_murmur_text = $data;
1955 var $cardiovascular_raynauds;
1956 var $cardiovascular_raynauds_text;
1957 function get_cardiovascular_raynauds() {
1958 return $this->cardiovascular_raynauds;
1960 function get_cardiovascular_raynauds_yes() {
1961 return $this->cardiovascular_raynauds == "Yes" ? "CHECKED" : ""; }
1962 function get_cardiovascular_raynauds_no() {
1963 return $this->cardiovascular_raynauds == "No" ? "CHECKED" : ""; }
1964 function set_cardiovascular_raynauds($data) {
1965 if(!empty($data)) {
1966 $this->cardiovascular_raynauds = $data;
1969 function get_cardiovascular_raynauds_text() {
1970 return $this->cardiovascular_raynauds_text;
1972 function set_cardiovascular_raynauds_text($data) {
1973 if(!empty($data)) {
1974 $this->cardiovascular_raynauds_text = $data;
1979 var $cardiovascular_severe_varicose_veins;
1980 var $cardiovascular_severe_varicose_veins_text;
1981 function get_cardiovascular_severe_varicose_veins() {
1982 return $this->cardiovascular_severe_varicose_veins;
1984 function get_cardiovascular_severe_varicose_veins_yes() {
1985 return $this->cardiovascular_severe_varicose_veins == "Yes" ? "CHECKED" : ""; }
1986 function get_cardiovascular_severe_varicose_veins_no() {
1987 return $this->cardiovascular_severe_varicose_veins == "No" ? "CHECKED" : ""; }
1988 function set_cardiovascular_severe_varicose_veins($data) {
1989 if(!empty($data)) {
1990 $this->cardiovascular_severe_varicose_veins = $data;
1993 function get_cardiovascular_severe_varicose_veins_text() {
1994 return $this->cardiovascular_severe_varicose_veins_text;
1996 function set_cardiovascular_severe_varicose_veins_text($data) {
1997 if(!empty($data)) {
1998 $this->cardiovascular_severe_varicose_veins_text = $data;
2003 var $cardiovascular_deep_vein_thrombosis;
2004 var $cardiovascular_deep_vein_thrombosis_text;
2005 function get_cardiovascular_deep_vein_thrombosis() {
2006 return $this->cardiovascular_deep_vein_thrombosis;
2008 function get_cardiovascular_deep_vein_thrombosis_yes() {
2009 return $this->cardiovascular_deep_vein_thrombosis == "Yes" ? "CHECKED" : ""; }
2010 function get_cardiovascular_deep_vein_thrombosis_no() {
2011 return $this->cardiovascular_deep_vein_thrombosis == "No" ? "CHECKED" : ""; }
2012 function set_cardiovascular_deep_vein_thrombosis($data) {
2013 if(!empty($data)) {
2014 $this->cardiovascular_deep_vein_thrombosis = $data;
2017 function get_cardiovascular_deep_vein_thrombosis_text() {
2018 return $this->cardiovascular_deep_vein_thrombosis_text;
2020 function set_cardiovascular_deep_vein_thrombosis_text($data) {
2021 if(!empty($data)) {
2022 $this->cardiovascular_deep_vein_thrombosis_text = $data;
2027 var $cardiovascular_thrombophlebitis;
2028 var $cardiovascular_thrombophlebitis_text;
2029 function get_cardiovascular_thrombophlebitis() {
2030 return $this->cardiovascular_thrombophlebitis;
2032 function get_cardiovascular_thrombophlebitis_yes() {
2033 return $this->cardiovascular_thrombophlebitis == "Yes" ? "CHECKED" : ""; }
2034 function get_cardiovascular_thrombophlebitis_no() {
2035 return $this->cardiovascular_thrombophlebitis == "No" ? "CHECKED" : ""; }
2036 function set_cardiovascular_thrombophlebitis($data) {
2037 if(!empty($data)) {
2038 $this->cardiovascular_thrombophlebitis = $data;
2041 function get_cardiovascular_thrombophlebitis_text() {
2042 return $this->cardiovascular_thrombophlebitis_text;
2044 function set_cardiovascular_thrombophlebitis_text($data) {
2045 if(!empty($data)) {
2046 $this->cardiovascular_thrombophlebitis_text = $data;
2050 // ----- cough -----
2052 var $respirations_cough;
2053 var $respirations_cough_text;
2054 function get_respirations_cough() {
2055 return $this->respirations_cough;
2057 function get_respirations_cough_yes() {
2058 return $this->respirations_cough == "Yes" ? "CHECKED" : ""; }
2059 function get_respirations_cough_no() {
2060 return $this->respirations_cough == "No" ? "CHECKED" : ""; }
2061 function set_respirations_cough($data) {
2062 if(!empty($data)) {
2063 $this->respirations_cough = $data;
2066 function get_respirations_cough_text() {
2067 return $this->respirations_cough_text;
2069 function set_respirations_cough_text($data) {
2070 if(!empty($data)) {
2071 $this->respirations_cough_text = $data;
2076 var $respirations_sputum;
2077 var $respirations_sputum_text;
2078 function get_respirations_sputum() {
2079 return $this->respirations_sputum;
2081 function get_respirations_sputum_yes() {
2082 return $this->respirations_sputum == "Yes" ? "CHECKED" : ""; }
2083 function get_respirations_sputum_no() {
2084 return $this->respirations_sputum == "No" ? "CHECKED" : ""; }
2085 function set_respirations_sputum($data) {
2086 if(!empty($data)) {
2087 $this->respirations_sputum = $data;
2090 function get_respirations_sputum_text() {
2091 return $this->respirations_sputum_text;
2093 function set_respirations_sputum_text($data) {
2094 if(!empty($data)) {
2095 $this->respirations_sputum_text = $data;
2100 var $respirations_dyspnea;
2101 var $respirations_dyspnea_text;
2102 function get_respirations_dyspnea() {
2103 return $this->respirations_dyspnea;
2105 function get_respirations_dyspnea_yes() {
2106 return $this->respirations_dyspnea == "Yes" ? "CHECKED" : ""; }
2107 function get_respirations_dyspnea_no() {
2108 return $this->respirations_dyspnea == "No" ? "CHECKED" : ""; }
2109 function set_respirations_dyspnea($data) {
2110 if(!empty($data)) {
2111 $this->respirations_dyspnea = $data;
2114 function get_respirations_dyspnea_text() {
2115 return $this->respirations_dyspnea_text;
2117 function set_respirations_dyspnea_text($data) {
2118 if(!empty($data)) {
2119 $this->respirations_dyspnea_text = $data;
2124 var $respirations_wheezes;
2125 var $respirations_wheezes_text;
2126 function get_respirations_wheezes() {
2127 return $this->respirations_wheezes;
2129 function get_respirations_wheezes_yes() {
2130 return $this->respirations_wheezes == "Yes" ? "CHECKED" : ""; }
2131 function get_respirations_wheezes_no() {
2132 return $this->respirations_wheezes == "No" ? "CHECKED" : ""; }
2133 function set_respirations_wheezes($data) {
2134 if(!empty($data)) {
2135 $this->respirations_wheezes = $data;
2138 function get_respirations_wheezes_text() {
2139 return $this->respirations_wheezes_text;
2141 function set_respirations_wheezes_text($data) {
2142 if(!empty($data)) {
2143 $this->respirations_wheezes_text = $data;
2148 var $respirations_rales;
2149 var $respirations_rales_text;
2150 function get_respirations_rales() {
2151 return $this->respirations_rales;
2153 function get_respirations_rales_yes() {
2154 return $this->respirations_rales == "Yes" ? "CHECKED" : ""; }
2155 function get_respirations_rales_no() {
2156 return $this->respirations_rales == "No" ? "CHECKED" : ""; }
2157 function set_respirations_rales($data) {
2158 if(!empty($data)) {
2159 $this->respirations_rales = $data;
2162 function get_respirations_rales_text() {
2163 return $this->respirations_rales_text;
2165 function set_respirations_rales_text($data) {
2166 if(!empty($data)) {
2167 $this->respirations_rales_text = $data;
2172 var $respirations_labored_breathing;
2173 var $respirations_labored_breathing_text;
2174 function get_respirations_labored_breathing() {
2175 return $this->respirations_labored_breathing;
2177 function get_respirations_labored_breathing_yes() {
2178 return $this->respirations_labored_breathing == "Yes" ? "CHECKED" : ""; }
2179 function get_respirations_labored_breathing_no() {
2180 return $this->respirations_labored_breathing == "No" ? "CHECKED" : ""; }
2181 function set_respirations_labored_breathing($data) {
2182 if(!empty($data)) {
2183 $this->respirations_labored_breathing = $data;
2186 function get_respirations_labored_breathing_text() {
2187 return $this->respirations_labored_breathing_text;
2189 function set_respirations_labored_breathing_text($data) {
2190 if(!empty($data)) {
2191 $this->respirations_labored_breathing_text = $data;
2196 var $respirations_hemoptysis;
2197 var $respirations_hemoptysis_text;
2198 function get_respirations_hemoptysis() {
2199 return $this->respirations_hemoptysis;
2201 function get_respirations_hemoptysis_yes() {
2202 return $this->respirations_hemoptysis == "Yes" ? "CHECKED" : ""; }
2203 function get_respirations_hemoptysis_no() {
2204 return $this->respirations_hemoptysis == "No" ? "CHECKED" : ""; }
2205 function set_respirations_hemoptysis($data) {
2206 if(!empty($data)) {
2207 $this->respirations_hemoptysis = $data;
2210 function get_respirations_hemoptysis_text() {
2211 return $this->respirations_hemoptysis_text;
2213 function set_respirations_hemoptysis_text($data) {
2214 if(!empty($data)) {
2215 $this->respirations_hemoptysis_text = $data;
2219 // ----- frequent urination -----
2221 var $gu_frequent_urination;
2222 var $gu_frequent_urination_text;
2223 function get_gu_frequent_urination() {
2224 return $this->gu_frequent_urination;
2226 function get_gu_frequent_urination_yes() {
2227 return $this->gu_frequent_urination == "Yes" ? "CHECKED" : ""; }
2228 function get_gu_frequent_urination_no() {
2229 return $this->gu_frequent_urination == "No" ? "CHECKED" : ""; }
2230 function set_gu_frequent_urination($data) {
2231 if(!empty($data)) {
2232 $this->gu_frequent_urination = $data;
2235 function get_gu_frequent_urination_text() {
2236 return $this->gu_frequent_urination_text;
2238 function set_gu_frequent_urination_text($data) {
2239 if(!empty($data)) {
2240 $this->gu_frequent_urination_text = $data;
2245 var $gu_dysuria;
2246 var $gu_dysuria_text;
2247 function get_gu_dysuria() {
2248 return $this->gu_dysuria;
2250 function get_gu_dysuria_yes() {
2251 return $this->gu_dysuria == "Yes" ? "CHECKED" : ""; }
2252 function get_gu_dysuria_no() {
2253 return $this->gu_dysuria == "No" ? "CHECKED" : ""; }
2254 function set_gu_dysuria($data) {
2255 if(!empty($data)) {
2256 $this->gu_dysuria = $data;
2259 function get_gu_dysuria_text() {
2260 return $this->gu_dysuria_text;
2262 function set_gu_dysuria_text($data) {
2263 if(!empty($data)) {
2264 $this->gu_dysuria_text = $data;
2269 var $gu_dyspareunia;
2270 var $gu_dyspareunia_text;
2271 function get_gu_dyspareunia() {
2272 return $this->gu_dyspareunia;
2274 function get_gu_dyspareunia_yes() {
2275 return $this->gu_dyspareunia == "Yes" ? "CHECKED" : ""; }
2276 function get_gu_dyspareunia_no() {
2277 return $this->gu_dyspareunia == "No" ? "CHECKED" : ""; }
2278 function set_gu_dyspareunia($data) {
2279 if(!empty($data)) {
2280 $this->gu_dyspareunia = $data;
2283 function get_gu_dyspareunia_text() {
2284 return $this->gu_dyspareunia_text;
2286 function set_gu_dyspareunia_text($data) {
2287 if(!empty($data)) {
2288 $this->gu_dyspareunia_text = $data;
2293 var $gu_discharge;
2294 var $gu_discharge_text;
2295 function get_gu_discharge() {
2296 return $this->gu_discharge;
2298 function get_gu_discharge_yes() {
2299 return $this->gu_discharge == "Yes" ? "CHECKED" : ""; }
2300 function get_gu_discharge_no() {
2301 return $this->gu_discharge == "No" ? "CHECKED" : ""; }
2302 function set_gu_discharge($data) {
2303 if(!empty($data)) {
2304 $this->gu_discharge = $data;
2307 function get_gu_discharge_text() {
2308 return $this->gu_discharge_text;
2310 function set_gu_discharge_text($data) {
2311 if(!empty($data)) {
2312 $this->gu_discharge_text = $data;
2317 var $gu_odor;
2318 var $gu_odor_text;
2319 function get_gu_odor() {
2320 return $this->gu_odor;
2322 function get_gu_odor_yes() {
2323 return $this->gu_odor == "Yes" ? "CHECKED" : ""; }
2324 function get_gu_odor_no() {
2325 return $this->gu_odor == "No" ? "CHECKED" : ""; }
2326 function set_gu_odor($data) {
2327 if(!empty($data)) {
2328 $this->gu_odor = $data;
2331 function get_gu_odor_text() {
2332 return $this->gu_odor_text;
2334 function set_gu_odor_text($data) {
2335 if(!empty($data)) {
2336 $this->gu_odor_text = $data;
2341 var $gu_fertility_problems;
2342 var $gu_fertility_problems_text;
2343 function get_gu_fertility_problems() {
2344 return $this->gu_fertility_problems;
2346 function get_gu_fertility_problems_yes() {
2347 return $this->gu_fertility_problems == "Yes" ? "CHECKED" : ""; }
2348 function get_gu_fertility_problems_no() {
2349 return $this->gu_fertility_problems == "No" ? "CHECKED" : ""; }
2350 function set_gu_fertility_problems($data) {
2351 if(!empty($data)) {
2352 $this->gu_fertility_problems = $data;
2355 function get_gu_fertility_problems_text() {
2356 return $this->gu_fertility_problems_text;
2358 function set_gu_fertility_problems_text($data) {
2359 if(!empty($data)) {
2360 $this->gu_fertility_problems_text = $data;
2365 var $gu_flank_pain_kidney_stone;
2366 var $gu_flank_pain_kidney_stone_text;
2367 function get_gu_flank_pain_kidney_stone() {
2368 return $this->gu_flank_pain_kidney_stone;
2370 function get_gu_flank_pain_kidney_stone_yes() {
2371 return $this->gu_flank_pain_kidney_stone == "Yes" ? "CHECKED" : ""; }
2372 function get_gu_flank_pain_kidney_stone_no() {
2373 return $this->gu_flank_pain_kidney_stone == "No" ? "CHECKED" : ""; }
2374 function set_gu_flank_pain_kidney_stone($data) {
2375 if(!empty($data)) {
2376 $this->gu_flank_pain_kidney_stone = $data;
2379 function get_gu_flank_pain_kidney_stone_text() {
2380 return $this->gu_flank_pain_kidney_stone_text;
2382 function set_gu_flank_pain_kidney_stone_text($data) {
2383 if(!empty($data)) {
2384 $this->gu_flank_pain_kidney_stone_text = $data;
2389 var $gu_polyuria;
2390 var $gu_polyuria_text;
2391 function get_gu_polyuria() {
2392 return $this->gu_polyuria;
2394 function get_gu_polyuria_yes() {
2395 return $this->gu_polyuria == "Yes" ? "CHECKED" : ""; }
2396 function get_gu_polyuria_no() {
2397 return $this->gu_polyuria == "No" ? "CHECKED" : ""; }
2398 function set_gu_polyuria($data) {
2399 if(!empty($data)) {
2400 $this->gu_polyuria = $data;
2403 function get_gu_polyuria_text() {
2404 return $this->gu_polyuria_text;
2406 function set_gu_polyuria_text($data) {
2407 if(!empty($data)) {
2408 $this->gu_polyuria_text = $data;
2413 var $gu_hematuria;
2414 var $gu_hematuria_text;
2415 function get_gu_hematuria() {
2416 return $this->gu_hematuria;
2418 function get_gu_hematuria_yes() {
2419 return $this->gu_hematuria == "Yes" ? "CHECKED" : ""; }
2420 function get_gu_hematuria_no() {
2421 return $this->gu_hematuria == "No" ? "CHECKED" : ""; }
2422 function set_gu_hematuria($data) {
2423 if(!empty($data)) {
2424 $this->gu_hematuria = $data;
2427 function get_gu_hematuria_text() {
2428 return $this->gu_hematuria_text;
2430 function set_gu_hematuria_text($data) {
2431 if(!empty($data)) {
2432 $this->gu_hematuria_text = $data;
2437 var $gu_pyuria;
2438 var $gu_pyuria_text;
2439 function get_gu_pyuria() {
2440 return $this->gu_pyuria;
2442 function get_gu_pyuria_yes() {
2443 return $this->gu_pyuria == "Yes" ? "CHECKED" : ""; }
2444 function get_gu_pyuria_no() {
2445 return $this->gu_pyuria == "No" ? "CHECKED" : ""; }
2446 function set_gu_pyuria($data) {
2447 if(!empty($data)) {
2448 $this->gu_pyuria = $data;
2451 function get_gu_pyuria_text() {
2452 return $this->gu_pyuria_text;
2454 function set_gu_pyuria_text($data) {
2455 if(!empty($data)) {
2456 $this->gu_pyuria_text = $data;
2461 var $gu_umbilical_hernia;
2462 var $gu_umbilical_hernia_text;
2463 function get_gu_umbilical_hernia() {
2464 return $this->gu_umbilical_hernia;
2466 function get_gu_umbilical_hernia_yes() {
2467 return $this->gu_umbilical_hernia == "Yes" ? "CHECKED" : ""; }
2468 function get_gu_umbilical_hernia_no() {
2469 return $this->gu_umbilical_hernia == "No" ? "CHECKED" : ""; }
2470 function set_gu_umbilical_hernia($data) {
2471 if(!empty($data)) {
2472 $this->gu_umbilical_hernia = $data;
2475 function get_gu_umbilical_hernia_text() {
2476 return $this->gu_umbilical_hernia_text;
2478 function set_gu_umbilical_hernia_text($data) {
2479 if(!empty($data)) {
2480 $this->gu_umbilical_hernia_text = $data;
2485 var $gu_incontinence;
2486 var $gu_incontinence_text;
2487 function get_gu_incontinence() {
2488 return $this->gu_incontinence;
2490 function get_gu_incontinence_yes() {
2491 return $this->gu_incontinence == "Yes" ? "CHECKED" : ""; }
2492 function get_gu_incontinence_no() {
2493 return $this->gu_incontinence == "No" ? "CHECKED" : ""; }
2494 function set_gu_incontinence($data) {
2495 if(!empty($data)) {
2496 $this->gu_incontinence = $data;
2499 function get_gu_incontinence_text() {
2500 return $this->gu_incontinence_text;
2502 function set_gu_incontinence_text($data) {
2503 if(!empty($data)) {
2504 $this->gu_incontinence_text = $data;
2509 var $gu_nocturia;
2510 var $gu_nocturia_text;
2511 function get_gu_nocturia() {
2512 return $this->gu_nocturia;
2514 function get_gu_nocturia_yes() {
2515 return $this->gu_nocturia == "Yes" ? "CHECKED" : ""; }
2516 function get_gu_nocturia_no() {
2517 return $this->gu_nocturia == "No" ? "CHECKED" : ""; }
2518 function set_gu_nocturia($data) {
2519 if(!empty($data)) {
2520 $this->gu_nocturia = $data;
2523 function get_gu_nocturia_text() {
2524 return $this->gu_nocturia_text;
2526 function set_gu_nocturia_text($data) {
2527 if(!empty($data)) {
2528 $this->gu_nocturia_text = $data;
2533 var $gu_urinary_urgency;
2534 var $gu_urinary_urgency_text;
2535 function get_gu_urinary_urgency() {
2536 return $this->gu_urinary_urgency;
2538 function get_gu_urinary_urgency_yes() {
2539 return $this->gu_urinary_urgency == "Yes" ? "CHECKED" : ""; }
2540 function get_gu_urinary_urgency_no() {
2541 return $this->gu_urinary_urgency == "No" ? "CHECKED" : ""; }
2542 function set_gu_urinary_urgency($data) {
2543 if(!empty($data)) {
2544 $this->gu_urinary_urgency = $data;
2547 function get_gu_urinary_urgency_text() {
2548 return $this->gu_urinary_urgency_text;
2550 function set_gu_urinary_urgency_text($data) {
2551 if(!empty($data)) {
2552 $this->gu_urinary_urgency_text = $data;
2557 var $gu_recurrent_utis;
2558 var $gu_recurrent_utis_text;
2559 function get_gu_recurrent_utis() {
2560 return $this->gu_recurrent_utis;
2562 function get_gu_recurrent_utis_yes() {
2563 return $this->gu_recurrent_utis == "Yes" ? "CHECKED" : ""; }
2564 function get_gu_recurrent_utis_no() {
2565 return $this->gu_recurrent_utis == "No" ? "CHECKED" : ""; }
2566 function set_gu_recurrent_utis($data) {
2567 if(!empty($data)) {
2568 $this->gu_recurrent_utis = $data;
2571 function get_gu_recurrent_utis_text() {
2572 return $this->gu_recurrent_utis_text;
2574 function set_gu_recurrent_utis_text($data) {
2575 if(!empty($data)) {
2576 $this->gu_recurrent_utis_text = $data;
2581 var $gu_venereal_disease;
2582 var $gu_venereal_disease_text;
2583 function get_gu_venereal_disease() {
2584 return $this->gu_venereal_disease;
2586 function get_gu_venereal_disease_yes() {
2587 return $this->gu_venereal_disease == "Yes" ? "CHECKED" : ""; }
2588 function get_gu_venereal_disease_no() {
2589 return $this->gu_venereal_disease == "No" ? "CHECKED" : ""; }
2590 function set_gu_venereal_disease($data) {
2591 if(!empty($data)) {
2592 $this->gu_venereal_disease = $data;
2595 function get_gu_venereal_disease_text() {
2596 return $this->gu_venereal_disease_text;
2598 function set_gu_venereal_disease_text($data) {
2599 if(!empty($data)) {
2600 $this->gu_venereal_disease_text = $data;
2604 // ----- Erectile Dysfunction -----
2606 var $male_gu_erectile_dysfunction;
2607 var $male_gu_erectile_dysfunction_text;
2608 function get_male_gu_erectile_dysfunction() {
2609 return $this->male_gu_erectile_dysfunction;
2611 function get_male_gu_erectile_dysfunction_yes() {
2612 return $this->male_gu_erectile_dysfunction == "Yes" ? "CHECKED" : ""; }
2613 function get_male_gu_erectile_dysfunction_no() {
2614 return $this->male_gu_erectile_dysfunction == "No" ? "CHECKED" : ""; }
2615 function set_male_gu_erectile_dysfunction($data) {
2616 if(!empty($data)) {
2617 $this->male_gu_erectile_dysfunction = $data;
2620 function get_male_gu_erectile_dysfunction_text() {
2621 return $this->male_gu_erectile_dysfunction_text;
2623 function set_male_gu_erectile_dysfunction_text($data) {
2624 if(!empty($data)) {
2625 $this->male_gu_erectile_dysfunction_text = $data;
2630 var $male_gu_inguinal_hernia;
2631 var $male_gu_inguinal_hernia_text;
2632 function get_male_gu_inguinal_hernia() {
2633 return $this->male_gu_inguinal_hernia;
2635 function get_male_gu_inguinal_hernia_yes() {
2636 return $this->male_gu_inguinal_hernia == "Yes" ? "CHECKED" : ""; }
2637 function get_male_gu_inguinal_hernia_no() {
2638 return $this->male_gu_inguinal_hernia == "No" ? "CHECKED" : ""; }
2639 function set_male_gu_inguinal_hernia($data) {
2640 if(!empty($data)) {
2641 $this->male_gu_inguinal_hernia = $data;
2644 function get_male_gu_inguinal_hernia_text() {
2645 return $this->male_gu_inguinal_hernia_text;
2647 function set_male_gu_inguinal_hernia_text($data) {
2648 if(!empty($data)) {
2649 $this->male_gu_inguinal_hernia_text = $data;
2654 var $male_gu_penile_lesions;
2655 var $male_gu_penile_lesions_text;
2656 function get_male_gu_penile_lesions() {
2657 return $this->male_gu_penile_lesions;
2659 function get_male_gu_penile_lesions_yes() {
2660 return $this->male_gu_penile_lesions == "Yes" ? "CHECKED" : ""; }
2661 function get_male_gu_penile_lesions_no() {
2662 return $this->male_gu_penile_lesions == "No" ? "CHECKED" : ""; }
2663 function set_male_gu_penile_lesions($data) {
2664 if(!empty($data)) {
2665 $this->male_gu_penile_lesions = $data;
2668 function get_male_gu_penile_lesions_text() {
2669 return $this->male_gu_penile_lesions_text;
2671 function set_male_gu_penile_lesions_text($data) {
2672 if(!empty($data)) {
2673 $this->male_gu_penile_lesions_text = $data;
2678 var $male_gu_scrotal_mass;
2679 var $male_gu_scrotal_mass_text;
2680 function get_male_gu_scrotal_mass() {
2681 return $this->male_gu_scrotal_mass;
2683 function get_male_gu_scrotal_mass_yes() {
2684 return $this->male_gu_scrotal_mass == "Yes" ? "CHECKED" : ""; }
2685 function get_male_gu_scrotal_mass_no() {
2686 return $this->male_gu_scrotal_mass == "No" ? "CHECKED" : ""; }
2687 function set_male_gu_scrotal_mass($data) {
2688 if(!empty($data)) {
2689 $this->male_gu_scrotal_mass = $data;
2692 function get_male_gu_scrotal_mass_text() {
2693 return $this->male_gu_scrotal_mass_text;
2695 function set_male_gu_scrotal_mass_text($data) {
2696 if(!empty($data)) {
2697 $this->male_gu_scrotal_mass_text = $data;
2702 var $male_gu_testicular_pain;
2703 var $male_gu_testicular_pain_text;
2704 function get_male_gu_testicular_pain() {
2705 return $this->male_gu_testicular_pain;
2707 function get_male_gu_testicular_pain_yes() {
2708 return $this->male_gu_testicular_pain == "Yes" ? "CHECKED" : ""; }
2709 function get_male_gu_testicular_pain_no() {
2710 return $this->male_gu_testicular_pain == "No" ? "CHECKED" : ""; }
2711 function set_male_gu_testicular_pain($data) {
2712 if(!empty($data)) {
2713 $this->male_gu_testicular_pain = $data;
2716 function get_male_gu_testicular_pain_text() {
2717 return $this->male_gu_testicular_pain_text;
2719 function set_male_gu_testicular_pain_text($data) {
2720 if(!empty($data)) {
2721 $this->male_gu_testicular_pain_text = $data;
2726 var $male_gu_urethral_discharge;
2727 var $male_gu_urethral_discharge_text;
2728 function get_male_gu_urethral_discharge() {
2729 return $this->male_gu_urethral_discharge;
2731 function get_male_gu_urethral_discharge_yes() {
2732 return $this->male_gu_urethral_discharge == "Yes" ? "CHECKED" : ""; }
2733 function get_male_gu_urethral_discharge_no() {
2734 return $this->male_gu_urethral_discharge == "No" ? "CHECKED" : ""; }
2735 function set_male_gu_urethral_discharge($data) {
2736 if(!empty($data)) {
2737 $this->male_gu_urethral_discharge = $data;
2740 function get_male_gu_urethral_discharge_text() {
2741 return $this->male_gu_urethral_discharge_text;
2743 function set_male_gu_urethral_discharge_text($data) {
2744 if(!empty($data)) {
2745 $this->male_gu_urethral_discharge_text = $data;
2750 var $male_gu_weak_urinary_stream;
2751 var $male_gu_weak_urinary_stream_text;
2752 function get_male_gu_weak_urinary_stream() {
2753 return $this->male_gu_weak_urinary_stream;
2755 function get_male_gu_weak_urinary_stream_yes() {
2756 return $this->male_gu_weak_urinary_stream == "Yes" ? "CHECKED" : ""; }
2757 function get_male_gu_weak_urinary_stream_no() {
2758 return $this->male_gu_weak_urinary_stream == "No" ? "CHECKED" : ""; }
2759 function set_male_gu_weak_urinary_stream($data) {
2760 if(!empty($data)) {
2761 $this->male_gu_weak_urinary_stream = $data;
2764 function get_male_gu_weak_urinary_stream_text() {
2765 return $this->male_gu_weak_urinary_stream_text;
2767 function set_male_gu_weak_urinary_stream_text($data) {
2768 if(!empty($data)) {
2769 $this->male_gu_weak_urinary_stream_text = $data;
2773 // ----- Abnormal Menses -----
2775 var $female_gu_abnormal_menses;
2776 var $female_gu_abnormal_menses_text;
2777 function get_female_gu_abnormal_menses() {
2778 return $this->female_gu_abnormal_menses;
2780 function get_female_gu_abnormal_menses_yes() {
2781 return $this->female_gu_abnormal_menses == "Yes" ? "CHECKED" : ""; }
2782 function get_female_gu_abnormal_menses_no() {
2783 return $this->female_gu_abnormal_menses == "No" ? "CHECKED" : ""; }
2784 function set_female_gu_abnormal_menses($data) {
2785 if(!empty($data)) {
2786 $this->female_gu_abnormal_menses = $data;
2789 function get_female_gu_abnormal_menses_text() {
2790 return $this->female_gu_abnormal_menses_text;
2792 function set_female_gu_abnormal_menses_text($data) {
2793 if(!empty($data)) {
2794 $this->female_gu_abnormal_menses_text = $data;
2799 var $female_gu_abnormal_vaginal_bleeding;
2800 var $female_gu_abnormal_vaginal_bleeding_text;
2801 function get_female_gu_abnormal_vaginal_bleeding() {
2802 return $this->female_gu_abnormal_vaginal_bleeding;
2804 function get_female_gu_abnormal_vaginal_bleeding_yes() {
2805 return $this->female_gu_abnormal_vaginal_bleeding == "Yes" ? "CHECKED" : ""; }
2806 function get_female_gu_abnormal_vaginal_bleeding_no() {
2807 return $this->female_gu_abnormal_vaginal_bleeding == "No" ? "CHECKED" : ""; }
2808 function set_female_gu_abnormal_vaginal_bleeding($data) {
2809 if(!empty($data)) {
2810 $this->female_gu_abnormal_vaginal_bleeding = $data;
2813 function get_female_gu_abnormal_vaginal_bleeding_text() {
2814 return $this->female_gu_abnormal_vaginal_bleeding_text;
2816 function set_female_gu_abnormal_vaginal_bleeding_text($data) {
2817 if(!empty($data)) {
2818 $this->female_gu_abnormal_vaginal_bleeding_text = $data;
2823 var $female_gu_vaginal_discharge;
2824 var $female_gu_vaginal_discharge_text;
2825 function get_female_gu_vaginal_discharge() {
2826 return $this->female_gu_vaginal_discharge;
2828 function get_female_gu_vaginal_discharge_yes() {
2829 return $this->female_gu_vaginal_discharge == "Yes" ? "CHECKED" : ""; }
2830 function get_female_gu_vaginal_discharge_no() {
2831 return $this->female_gu_vaginal_discharge == "No" ? "CHECKED" : ""; }
2832 function set_female_gu_vaginal_discharge($data) {
2833 if(!empty($data)) {
2834 $this->female_gu_vaginal_discharge = $data;
2837 function get_female_gu_vaginal_discharge_text() {
2838 return $this->female_gu_vaginal_discharge_text;
2840 function set_female_gu_vaginal_discharge_text($data) {
2841 if(!empty($data)) {
2842 $this->female_gu_vaginal_discharge_text = $data;
2846 // ----- abdominal pain -----
2848 var $gi_abdominal_pain;
2849 var $gi_abdominal_pain_text;
2850 function get_gi_abdominal_pain() {
2851 return $this->gi_abdominal_pain;
2853 function get_gi_abdominal_pain_yes() {
2854 return $this->gi_abdominal_pain == "Yes" ? "CHECKED" : ""; }
2855 function get_gi_abdominal_pain_no() {
2856 return $this->gi_abdominal_pain == "No" ? "CHECKED" : ""; }
2857 function set_gi_abdominal_pain($data) {
2858 if(!empty($data)) {
2859 $this->gi_abdominal_pain = $data;
2862 function get_gi_abdominal_pain_text() {
2863 return $this->gi_abdominal_pain_text;
2865 function set_gi_abdominal_pain_text($data) {
2866 if(!empty($data)) {
2867 $this->gi_abdominal_pain_text = $data;
2872 var $gi_cramps;
2873 var $gi_cramps_text;
2874 function get_gi_cramps() {
2875 return $this->gi_cramps;
2877 function get_gi_cramps_yes() {
2878 return $this->gi_cramps == "Yes" ? "CHECKED" : ""; }
2879 function get_gi_cramps_no() {
2880 return $this->gi_cramps == "No" ? "CHECKED" : ""; }
2881 function set_gi_cramps($data) {
2882 if(!empty($data)) {
2883 $this->gi_cramps = $data;
2886 function get_gi_cramps_text() {
2887 return $this->gi_cramps_text;
2889 function set_gi_cramps_text($data) {
2890 if(!empty($data)) {
2891 $this->gi_cramps_text = $data;
2896 var $gi_tenderness;
2897 var $gi_tenderness_text;
2898 function get_gi_tenderness() {
2899 return $this->gi_tenderness;
2901 function get_gi_tenderness_yes() {
2902 return $this->gi_tenderness == "Yes" ? "CHECKED" : ""; }
2903 function get_gi_tenderness_no() {
2904 return $this->gi_tenderness == "No" ? "CHECKED" : ""; }
2905 function set_gi_tenderness($data) {
2906 if(!empty($data)) {
2907 $this->gi_tenderness = $data;
2910 function get_gi_tenderness_text() {
2911 return $this->gi_tenderness_text;
2913 function set_gi_tenderness_text($data) {
2914 if(!empty($data)) {
2915 $this->gi_tenderness_text = $data;
2920 var $gi_vomiting;
2921 var $gi_vomiting_text;
2922 function get_gi_vomiting() {
2923 return $this->gi_vomiting;
2925 function get_gi_vomiting_yes() {
2926 return $this->gi_vomiting == "Yes" ? "CHECKED" : ""; }
2927 function get_gi_vomiting_no() {
2928 return $this->gi_vomiting == "No" ? "CHECKED" : ""; }
2929 function set_gi_vomiting($data) {
2930 if(!empty($data)) {
2931 $this->gi_vomiting = $data;
2934 function get_gi_vomiting_text() {
2935 return $this->gi_vomiting_text;
2937 function set_gi_vomiting_text($data) {
2938 if(!empty($data)) {
2939 $this->gi_vomiting_text = $data;
2944 var $gi_frequent_diarrhea;
2945 var $gi_frequent_diarrhea_text;
2946 function get_gi_frequent_diarrhea() {
2947 return $this->gi_frequent_diarrhea;
2949 function get_gi_frequent_diarrhea_yes() {
2950 return $this->gi_frequent_diarrhea == "Yes" ? "CHECKED" : ""; }
2951 function get_gi_frequent_diarrhea_no() {
2952 return $this->gi_frequent_diarrhea == "No" ? "CHECKED" : ""; }
2953 function set_gi_frequent_diarrhea($data) {
2954 if(!empty($data)) {
2955 $this->gi_frequent_diarrhea = $data;
2958 function get_gi_frequent_diarrhea_text() {
2959 return $this->gi_frequent_diarrhea_text;
2961 function set_gi_frequent_diarrhea_text($data) {
2962 if(!empty($data)) {
2963 $this->gi_frequent_diarrhea_text = $data;
2968 var $gi_significant_constipation;
2969 var $gi_significant_constipation_text;
2970 function get_gi_significant_constipation() {
2971 return $this->gi_significant_constipation;
2973 function get_gi_significant_constipation_yes() {
2974 return $this->gi_significant_constipation == "Yes" ? "CHECKED" : ""; }
2975 function get_gi_significant_constipation_no() {
2976 return $this->gi_significant_constipation == "No" ? "CHECKED" : ""; }
2977 function set_gi_significant_constipation($data) {
2978 if(!empty($data)) {
2979 $this->gi_significant_constipation = $data;
2982 function get_gi_significant_constipation_text() {
2983 return $this->gi_significant_constipation_text;
2985 function set_gi_significant_constipation_text($data) {
2986 if(!empty($data)) {
2987 $this->gi_significant_constipation_text = $data;
2992 var $gi_excessive_belching;
2993 var $gi_excessive_belching_text;
2994 function get_gi_excessive_belching() {
2995 return $this->gi_excessive_belching;
2997 function get_gi_excessive_belching_yes() {
2998 return $this->gi_excessive_belching == "Yes" ? "CHECKED" : ""; }
2999 function get_gi_excessive_belching_no() {
3000 return $this->gi_excessive_belching == "No" ? "CHECKED" : ""; }
3001 function set_gi_excessive_belching($data) {
3002 if(!empty($data)) {
3003 $this->gi_excessive_belching = $data;
3006 function get_gi_excessive_belching_text() {
3007 return $this->gi_excessive_belching_text;
3009 function set_gi_excessive_belching_text($data) {
3010 if(!empty($data)) {
3011 $this->gi_excessive_belching_text = $data;
3016 var $gi_changed_bowel_habits;
3017 var $gi_changed_bowel_habits_text;
3018 function get_gi_changed_bowel_habits() {
3019 return $this->gi_changed_bowel_habits;
3021 function get_gi_changed_bowel_habits_yes() {
3022 return $this->gi_changed_bowel_habits == "Yes" ? "CHECKED" : ""; }
3023 function get_gi_changed_bowel_habits_no() {
3024 return $this->gi_changed_bowel_habits == "No" ? "CHECKED" : ""; }
3025 function set_gi_changed_bowel_habits($data) {
3026 if(!empty($data)) {
3027 $this->gi_changed_bowel_habits = $data;
3030 function get_gi_changed_bowel_habits_text() {
3031 return $this->gi_changed_bowel_habits_text;
3033 function set_gi_changed_bowel_habits_text($data) {
3034 if(!empty($data)) {
3035 $this->gi_changed_bowel_habits_text = $data;
3040 var $gi_excessive_flatulence;
3041 var $gi_excessive_flatulence_text;
3042 function get_gi_excessive_flatulence() {
3043 return $this->gi_excessive_flatulence;
3045 function get_gi_excessive_flatulence_yes() {
3046 return $this->gi_excessive_flatulence == "Yes" ? "CHECKED" : ""; }
3047 function get_gi_excessive_flatulence_no() {
3048 return $this->gi_excessive_flatulence == "No" ? "CHECKED" : ""; }
3049 function set_gi_excessive_flatulence($data) {
3050 if(!empty($data)) {
3051 $this->gi_excessive_flatulence = $data;
3054 function get_gi_excessive_flatulence_text() {
3055 return $this->gi_excessive_flatulence_text;
3057 function set_gi_excessive_flatulence_text($data) {
3058 if(!empty($data)) {
3059 $this->gi_excessive_flatulence_text = $data;
3064 var $gi_hematemesis;
3065 var $gi_hematemesis_text;
3066 function get_gi_hematemesis() {
3067 return $this->gi_hematemesis;
3069 function get_gi_hematemesis_yes() {
3070 return $this->gi_hematemesis == "Yes" ? "CHECKED" : ""; }
3071 function get_gi_hematemesis_no() {
3072 return $this->gi_hematemesis == "No" ? "CHECKED" : ""; }
3073 function set_gi_hematemesis($data) {
3074 if(!empty($data)) {
3075 $this->gi_hematemesis = $data;
3078 function get_gi_hematemesis_text() {
3079 return $this->gi_hematemesis_text;
3081 function set_gi_hematemesis_text($data) {
3082 if(!empty($data)) {
3083 $this->gi_hematemesis_text = $data;
3088 var $gi_hemorrhoids;
3089 var $gi_hemorrhoids_text;
3090 function get_gi_hemorrhoids() {
3091 return $this->gi_hemorrhoids;
3093 function get_gi_hemorrhoids_yes() {
3094 return $this->gi_hemorrhoids == "Yes" ? "CHECKED" : ""; }
3095 function get_gi_hemorrhoids_no() {
3096 return $this->gi_hemorrhoids == "No" ? "CHECKED" : ""; }
3097 function set_gi_hemorrhoids($data) {
3098 if(!empty($data)) {
3099 $this->gi_hemorrhoids = $data;
3102 function get_gi_hemorrhoids_text() {
3103 return $this->gi_hemorrhoids_text;
3105 function set_gi_hemorrhoids_text($data) {
3106 if(!empty($data)) {
3107 $this->gi_hemorrhoids_text = $data;
3112 var $gi_hepatitis;
3113 var $gi_hepatitis_text;
3114 function get_gi_hepatitis() {
3115 return $this->gi_hepatitis;
3117 function get_gi_hepatitis_yes() {
3118 return $this->gi_hepatitis == "Yes" ? "CHECKED" : ""; }
3119 function get_gi_hepatitis_no() {
3120 return $this->gi_hepatitis == "No" ? "CHECKED" : ""; }
3121 function set_gi_hepatitis($data) {
3122 if(!empty($data)) {
3123 $this->gi_hepatitis = $data;
3126 function get_gi_hepatitis_text() {
3127 return $this->gi_hepatitis_text;
3129 function set_gi_hepatitis_text($data) {
3130 if(!empty($data)) {
3131 $this->gi_hepatitis_text = $data;
3136 var $gi_jaundice;
3137 var $gi_jaundice_text;
3138 function get_gi_jaundice() {
3139 return $this->gi_jaundice;
3141 function get_gi_jaundice_yes() {
3142 return $this->gi_jaundice == "Yes" ? "CHECKED" : ""; }
3143 function get_gi_jaundice_no() {
3144 return $this->gi_jaundice == "No" ? "CHECKED" : ""; }
3145 function set_gi_jaundice($data) {
3146 if(!empty($data)) {
3147 $this->gi_jaundice = $data;
3150 function get_gi_jaundice_text() {
3151 return $this->gi_jaundice_text;
3153 function set_gi_jaundice_text($data) {
3154 if(!empty($data)) {
3155 $this->gi_jaundice_text = $data;
3160 var $gi_lactose_intolerance;
3161 var $gi_lactose_intolerance_text;
3162 function get_gi_lactose_intolerance() {
3163 return $this->gi_lactose_intolerance;
3165 function get_gi_lactose_intolerance_yes() {
3166 return $this->gi_lactose_intolerance == "Yes" ? "CHECKED" : ""; }
3167 function get_gi_lactose_intolerance_no() {
3168 return $this->gi_lactose_intolerance == "No" ? "CHECKED" : ""; }
3169 function set_gi_lactose_intolerance($data) {
3170 if(!empty($data)) {
3171 $this->gi_lactose_intolerance = $data;
3174 function get_gi_lactose_intolerance_text() {
3175 return $this->gi_lactose_intolerance_text;
3177 function set_gi_lactose_intolerance_text($data) {
3178 if(!empty($data)) {
3179 $this->gi_lactose_intolerance_text = $data;
3184 var $gi_chronic_laxative_use;
3185 var $gi_chronic_laxative_use_text;
3186 function get_gi_chronic_laxative_use() {
3187 return $this->gi_chronic_laxative_use;
3189 function get_gi_chronic_laxative_use_yes() {
3190 return $this->gi_chronic_laxative_use == "Yes" ? "CHECKED" : ""; }
3191 function get_gi_chronic_laxative_use_no() {
3192 return $this->gi_chronic_laxative_use == "No" ? "CHECKED" : ""; }
3193 function set_gi_chronic_laxative_use($data) {
3194 if(!empty($data)) {
3195 $this->gi_chronic_laxative_use = $data;
3198 function get_gi_chronic_laxative_use_text() {
3199 return $this->gi_chronic_laxative_use_text;
3201 function set_gi_chronic_laxative_use_text($data) {
3202 if(!empty($data)) {
3203 $this->gi_chronic_laxative_use_text = $data;
3208 var $gi_melena;
3209 var $gi_melena_text;
3210 function get_gi_melena() {
3211 return $this->gi_melena;
3213 function get_gi_melena_yes() {
3214 return $this->gi_melena == "Yes" ? "CHECKED" : ""; }
3215 function get_gi_melena_no() {
3216 return $this->gi_melena == "No" ? "CHECKED" : ""; }
3217 function set_gi_melena($data) {
3218 if(!empty($data)) {
3219 $this->gi_melena = $data;
3222 function get_gi_melena_text() {
3223 return $this->gi_melena_text;
3225 function set_gi_melena_text($data) {
3226 if(!empty($data)) {
3227 $this->gi_melena_text = $data;
3232 var $gi_frequent_nausea;
3233 var $gi_frequent_nausea_text;
3234 function get_gi_frequent_nausea() {
3235 return $this->gi_frequent_nausea;
3237 function get_gi_frequent_nausea_yes() {
3238 return $this->gi_frequent_nausea == "Yes" ? "CHECKED" : ""; }
3239 function get_gi_frequent_nausea_no() {
3240 return $this->gi_frequent_nausea == "No" ? "CHECKED" : ""; }
3241 function set_gi_frequent_nausea($data) {
3242 if(!empty($data)) {
3243 $this->gi_frequent_nausea = $data;
3246 function get_gi_frequent_nausea_text() {
3247 return $this->gi_frequent_nausea_text;
3249 function set_gi_frequent_nausea_text($data) {
3250 if(!empty($data)) {
3251 $this->gi_frequent_nausea_text = $data;
3256 var $gi_rectal_bleeding;
3257 var $gi_rectal_bleeding_text;
3258 function get_gi_rectal_bleeding() {
3259 return $this->gi_rectal_bleeding;
3261 function get_gi_rectal_bleeding_yes() {
3262 return $this->gi_rectal_bleeding == "Yes" ? "CHECKED" : ""; }
3263 function get_gi_rectal_bleeding_no() {
3264 return $this->gi_rectal_bleeding == "No" ? "CHECKED" : ""; }
3265 function set_gi_rectal_bleeding($data) {
3266 if(!empty($data)) {
3267 $this->gi_rectal_bleeding = $data;
3270 function get_gi_rectal_bleeding_text() {
3271 return $this->gi_rectal_bleeding_text;
3273 function set_gi_rectal_bleeding_text($data) {
3274 if(!empty($data)) {
3275 $this->gi_rectal_bleeding_text = $data;
3280 var $gi_rectal_pain;
3281 var $gi_rectal_pain_text;
3282 function get_gi_rectal_pain() {
3283 return $this->gi_rectal_pain;
3285 function get_gi_rectal_pain_yes() {
3286 return $this->gi_rectal_pain == "Yes" ? "CHECKED" : ""; }
3287 function get_gi_rectal_pain_no() {
3288 return $this->gi_rectal_pain == "No" ? "CHECKED" : ""; }
3289 function set_gi_rectal_pain($data) {
3290 if(!empty($data)) {
3291 $this->gi_rectal_pain = $data;
3294 function get_gi_rectal_pain_text() {
3295 return $this->gi_rectal_pain_text;
3297 function set_gi_rectal_pain_text($data) {
3298 if(!empty($data)) {
3299 $this->gi_rectal_pain_text = $data;
3304 var $gi_stool_caliber_change;
3305 var $gi_stool_caliber_change_text;
3306 function get_gi_stool_caliber_change() {
3307 return $this->gi_stool_caliber_change;
3309 function get_gi_stool_caliber_change_yes() {
3310 return $this->gi_stool_caliber_change == "Yes" ? "CHECKED" : ""; }
3311 function get_gi_stool_caliber_change_no() {
3312 return $this->gi_stool_caliber_change == "No" ? "CHECKED" : ""; }
3313 function set_gi_stool_caliber_change($data) {
3314 if(!empty($data)) {
3315 $this->gi_stool_caliber_change = $data;
3318 function get_gi_stool_caliber_change_text() {
3319 return $this->gi_stool_caliber_change_text;
3321 function set_gi_stool_caliber_change_text($data) {
3322 if(!empty($data)) {
3323 $this->gi_stool_caliber_change_text = $data;
3327 // ----- pallor -----
3329 var $integument_pallor;
3330 var $integument_pallor_text;
3331 function get_integument_pallor() {
3332 return $this->integument_pallor;
3334 function get_integument_pallor_yes() {
3335 return $this->integument_pallor == "Yes" ? "CHECKED" : ""; }
3336 function get_integument_pallor_no() {
3337 return $this->integument_pallor == "No" ? "CHECKED" : ""; }
3338 function set_integument_pallor($data) {
3339 if(!empty($data)) {
3340 $this->integument_pallor = $data;
3343 function get_integument_pallor_text() {
3344 return $this->integument_pallor_text;
3346 function set_integument_pallor_text($data) {
3347 if(!empty($data)) {
3348 $this->integument_pallor_text = $data;
3353 var $integument_diaphoresis;
3354 var $integument_diaphoresis_text;
3355 function get_integument_diaphoresis() {
3356 return $this->integument_diaphoresis;
3358 function get_integument_diaphoresis_yes() {
3359 return $this->integument_diaphoresis == "Yes" ? "CHECKED" : ""; }
3360 function get_integument_diaphoresis_no() {
3361 return $this->integument_diaphoresis == "No" ? "CHECKED" : ""; }
3362 function set_integument_diaphoresis($data) {
3363 if(!empty($data)) {
3364 $this->integument_diaphoresis = $data;
3367 function get_integument_diaphoresis_text() {
3368 return $this->integument_diaphoresis_text;
3370 function set_integument_diaphoresis_text($data) {
3371 if(!empty($data)) {
3372 $this->integument_diaphoresis_text = $data;
3377 var $integument_rash;
3378 var $integument_rash_text;
3379 function get_integument_rash() {
3380 return $this->integument_rash;
3382 function get_integument_rash_yes() {
3383 return $this->integument_rash == "Yes" ? "CHECKED" : ""; }
3384 function get_integument_rash_no() {
3385 return $this->integument_rash == "No" ? "CHECKED" : ""; }
3386 function set_integument_rash($data) {
3387 if(!empty($data)) {
3388 $this->integument_rash = $data;
3391 function get_integument_rash_text() {
3392 return $this->integument_rash_text;
3394 function set_integument_rash_text($data) {
3395 if(!empty($data)) {
3396 $this->integument_rash_text = $data;
3401 var $integument_itching;
3402 var $integument_itching_text;
3403 function get_integument_itching() {
3404 return $this->integument_itching;
3406 function get_integument_itching_yes() {
3407 return $this->integument_itching == "Yes" ? "CHECKED" : ""; }
3408 function get_integument_itching_no() {
3409 return $this->integument_itching == "No" ? "CHECKED" : ""; }
3410 function set_integument_itching($data) {
3411 if(!empty($data)) {
3412 $this->integument_itching = $data;
3415 function get_integument_itching_text() {
3416 return $this->integument_itching_text;
3418 function set_integument_itching_text($data) {
3419 if(!empty($data)) {
3420 $this->integument_itching_text = $data;
3425 var $integument_ulcers;
3426 var $integument_ulcers_text;
3427 function get_integument_ulcers() {
3428 return $this->integument_ulcers;
3430 function get_integument_ulcers_yes() {
3431 return $this->integument_ulcers == "Yes" ? "CHECKED" : ""; }
3432 function get_integument_ulcers_no() {
3433 return $this->integument_ulcers == "No" ? "CHECKED" : ""; }
3434 function set_integument_ulcers($data) {
3435 if(!empty($data)) {
3436 $this->integument_ulcers = $data;
3439 function get_integument_ulcers_text() {
3440 return $this->integument_ulcers_text;
3442 function set_integument_ulcers_text($data) {
3443 if(!empty($data)) {
3444 $this->integument_ulcers_text = $data;
3449 var $integument_abscess;
3450 var $integument_abscess_text;
3451 function get_integument_abscess() {
3452 return $this->integument_abscess;
3454 function get_integument_abscess_yes() {
3455 return $this->integument_abscess == "Yes" ? "CHECKED" : ""; }
3456 function get_integument_abscess_no() {
3457 return $this->integument_abscess == "No" ? "CHECKED" : ""; }
3458 function set_integument_abscess($data) {
3459 if(!empty($data)) {
3460 $this->integument_abscess = $data;
3463 function get_integument_abscess_text() {
3464 return $this->integument_abscess_text;
3466 function set_integument_abscess_text($data) {
3467 if(!empty($data)) {
3468 $this->integument_abscess_text = $data;
3473 var $integument_nodules;
3474 var $integument_nodules_text;
3475 function get_integument_nodules() {
3476 return $this->integument_nodules;
3478 function get_integument_nodules_yes() {
3479 return $this->integument_nodules == "Yes" ? "CHECKED" : ""; }
3480 function get_integument_nodules_no() {
3481 return $this->integument_nodules == "No" ? "CHECKED" : ""; }
3482 function set_integument_nodules($data) {
3483 if(!empty($data)) {
3484 $this->integument_nodules = $data;
3487 function get_integument_nodules_text() {
3488 return $this->integument_nodules_text;
3490 function set_integument_nodules_text($data) {
3491 if(!empty($data)) {
3492 $this->integument_nodules_text = $data;
3497 var $integument_acne;
3498 var $integument_acne_text;
3499 function get_integument_acne() {
3500 return $this->integument_acne;
3502 function get_integument_acne_yes() {
3503 return $this->integument_acne == "Yes" ? "CHECKED" : ""; }
3504 function get_integument_acne_no() {
3505 return $this->integument_acne == "No" ? "CHECKED" : ""; }
3506 function set_integument_acne($data) {
3507 if(!empty($data)) {
3508 $this->integument_acne = $data;
3511 function get_integument_acne_text() {
3512 return $this->integument_acne_text;
3514 function set_integument_acne_text($data) {
3515 if(!empty($data)) {
3516 $this->integument_acne_text = $data;
3521 var $integument_recurrent_boils;
3522 var $integument_recurrent_boils_text;
3523 function get_integument_recurrent_boils() {
3524 return $this->integument_recurrent_boils;
3526 function get_integument_recurrent_boils_yes() {
3527 return $this->integument_recurrent_boils == "Yes" ? "CHECKED" : ""; }
3528 function get_integument_recurrent_boils_no() {
3529 return $this->integument_recurrent_boils == "No" ? "CHECKED" : ""; }
3530 function set_integument_recurrent_boils($data) {
3531 if(!empty($data)) {
3532 $this->integument_recurrent_boils = $data;
3535 function get_integument_recurrent_boils_text() {
3536 return $this->integument_recurrent_boils_text;
3538 function set_integument_recurrent_boils_text($data) {
3539 if(!empty($data)) {
3540 $this->integument_recurrent_boils_text = $data;
3545 var $integument_chronic_eczema;
3546 var $integument_chronic_eczema_text;
3547 function get_integument_chronic_eczema() {
3548 return $this->integument_chronic_eczema;
3550 function get_integument_chronic_eczema_yes() {
3551 return $this->integument_chronic_eczema == "Yes" ? "CHECKED" : ""; }
3552 function get_integument_chronic_eczema_no() {
3553 return $this->integument_chronic_eczema == "No" ? "CHECKED" : ""; }
3554 function set_integument_chronic_eczema($data) {
3555 if(!empty($data)) {
3556 $this->integument_chronic_eczema = $data;
3559 function get_integument_chronic_eczema_text() {
3560 return $this->integument_chronic_eczema_text;
3562 function set_integument_chronic_eczema_text($data) {
3563 if(!empty($data)) {
3564 $this->integument_chronic_eczema_text = $data;
3569 var $integument_changing_moles;
3570 var $integument_changing_moles_text;
3571 function get_integument_changing_moles() {
3572 return $this->integument_changing_moles;
3574 function get_integument_changing_moles_yes() {
3575 return $this->integument_changing_moles == "Yes" ? "CHECKED" : ""; }
3576 function get_integument_changing_moles_no() {
3577 return $this->integument_changing_moles == "No" ? "CHECKED" : ""; }
3578 function set_integument_changing_moles($data) {
3579 if(!empty($data)) {
3580 $this->integument_changing_moles = $data;
3583 function get_integument_changing_moles_text() {
3584 return $this->integument_changing_moles_text;
3586 function set_integument_changing_moles_text($data) {
3587 if(!empty($data)) {
3588 $this->integument_changing_moles_text = $data;
3593 var $integument_nail_abnormalities;
3594 var $integument_nail_abnormalities_text;
3595 function get_integument_nail_abnormalities() {
3596 return $this->integument_nail_abnormalities;
3598 function get_integument_nail_abnormalities_yes() {
3599 return $this->integument_nail_abnormalities == "Yes" ? "CHECKED" : ""; }
3600 function get_integument_nail_abnormalities_no() {
3601 return $this->integument_nail_abnormalities == "No" ? "CHECKED" : ""; }
3602 function set_integument_nail_abnormalities($data) {
3603 if(!empty($data)) {
3604 $this->integument_nail_abnormalities = $data;
3607 function get_integument_nail_abnormalities_text() {
3608 return $this->integument_nail_abnormalities_text;
3610 function set_integument_nail_abnormalities_text($data) {
3611 if(!empty($data)) {
3612 $this->integument_nail_abnormalities_text = $data;
3617 var $integument_psoriasis;
3618 var $integument_psoriasis_text;
3619 function get_integument_psoriasis() {
3620 return $this->integument_psoriasis;
3622 function get_integument_psoriasis_yes() {
3623 return $this->integument_psoriasis == "Yes" ? "CHECKED" : ""; }
3624 function get_integument_psoriasis_no() {
3625 return $this->integument_psoriasis == "No" ? "CHECKED" : ""; }
3626 function set_integument_psoriasis($data) {
3627 if(!empty($data)) {
3628 $this->integument_psoriasis = $data;
3631 function get_integument_psoriasis_text() {
3632 return $this->integument_psoriasis_text;
3634 function set_integument_psoriasis_text($data) {
3635 if(!empty($data)) {
3636 $this->integument_psoriasis_text = $data;
3641 var $integument_recurrent_hives;
3642 var $integument_recurrent_hives_text;
3643 function get_integument_recurrent_hives() {
3644 return $this->integument_recurrent_hives;
3646 function get_integument_recurrent_hives_yes() {
3647 return $this->integument_recurrent_hives == "Yes" ? "CHECKED" : ""; }
3648 function get_integument_recurrent_hives_no() {
3649 return $this->integument_recurrent_hives == "No" ? "CHECKED" : ""; }
3650 function set_integument_recurrent_hives($data) {
3651 if(!empty($data)) {
3652 $this->integument_recurrent_hives = $data;
3655 function get_integument_recurrent_hives_text() {
3656 return $this->integument_recurrent_hives_text;
3658 function set_integument_recurrent_hives_text($data) {
3659 if(!empty($data)) {
3660 $this->integument_recurrent_hives_text = $data;
3664 // ----- deformity -----
3666 var $musculoskeletal_deformity;
3667 var $musculoskeletal_deformity_text;
3668 function get_musculoskeletal_deformity() {
3669 return $this->musculoskeletal_deformity;
3671 function get_musculoskeletal_deformity_yes() {
3672 return $this->musculoskeletal_deformity == "Yes" ? "CHECKED" : ""; }
3673 function get_musculoskeletal_deformity_no() {
3674 return $this->musculoskeletal_deformity == "No" ? "CHECKED" : ""; }
3675 function set_musculoskeletal_deformity($data) {
3676 if(!empty($data)) {
3677 $this->musculoskeletal_deformity = $data;
3680 function get_musculoskeletal_deformity_text() {
3681 return $this->musculoskeletal_deformity_text;
3683 function set_musculoskeletal_deformity_text($data) {
3684 if(!empty($data)) {
3685 $this->musculoskeletal_deformity_text = $data;
3690 var $musculoskeletal_edema;
3691 var $musculoskeletal_edema_text;
3692 function get_musculoskeletal_edema() {
3693 return $this->musculoskeletal_edema;
3695 function get_musculoskeletal_edema_yes() {
3696 return $this->musculoskeletal_edema == "Yes" ? "CHECKED" : ""; }
3697 function get_musculoskeletal_edema_no() {
3698 return $this->musculoskeletal_edema == "No" ? "CHECKED" : ""; }
3699 function set_musculoskeletal_edema($data) {
3700 if(!empty($data)) {
3701 $this->musculoskeletal_edema = $data;
3704 function get_musculoskeletal_edema_text() {
3705 return $this->musculoskeletal_edema_text;
3707 function set_musculoskeletal_edema_text($data) {
3708 if(!empty($data)) {
3709 $this->musculoskeletal_edema_text = $data;
3714 var $musculoskeletal_pain;
3715 var $musculoskeletal_pain_text;
3716 function get_musculoskeletal_pain() {
3717 return $this->musculoskeletal_pain;
3719 function get_musculoskeletal_pain_yes() {
3720 return $this->musculoskeletal_pain == "Yes" ? "CHECKED" : ""; }
3721 function get_musculoskeletal_pain_no() {
3722 return $this->musculoskeletal_pain == "No" ? "CHECKED" : ""; }
3723 function set_musculoskeletal_pain($data) {
3724 if(!empty($data)) {
3725 $this->musculoskeletal_pain = $data;
3728 function get_musculoskeletal_pain_text() {
3729 return $this->musculoskeletal_pain_text;
3731 function set_musculoskeletal_pain_text($data) {
3732 if(!empty($data)) {
3733 $this->musculoskeletal_pain_text = $data;
3738 var $musculoskeletal_limited_rom;
3739 var $musculoskeletal_limited_rom_text;
3740 function get_musculoskeletal_limited_rom() {
3741 return $this->musculoskeletal_limited_rom;
3743 function get_musculoskeletal_limited_rom_yes() {
3744 return $this->musculoskeletal_limited_rom == "Yes" ? "CHECKED" : ""; }
3745 function get_musculoskeletal_limited_rom_no() {
3746 return $this->musculoskeletal_limited_rom == "No" ? "CHECKED" : ""; }
3747 function set_musculoskeletal_limited_rom($data) {
3748 if(!empty($data)) {
3749 $this->musculoskeletal_limited_rom = $data;
3752 function get_musculoskeletal_limited_rom_text() {
3753 return $this->musculoskeletal_limited_rom_text;
3755 function set_musculoskeletal_limited_rom_text($data) {
3756 if(!empty($data)) {
3757 $this->musculoskeletal_limited_rom_text = $data;
3762 var $musculoskeletal_gait;
3763 var $musculoskeletal_gait_text;
3764 function get_musculoskeletal_gait() {
3765 return $this->musculoskeletal_gait;
3767 function get_musculoskeletal_gait_yes() {
3768 return $this->musculoskeletal_gait == "Yes" ? "CHECKED" : ""; }
3769 function get_musculoskeletal_gait_no() {
3770 return $this->musculoskeletal_gait == "No" ? "CHECKED" : ""; }
3771 function set_musculoskeletal_gait($data) {
3772 if(!empty($data)) {
3773 $this->musculoskeletal_gait = $data;
3776 function get_musculoskeletal_gait_text() {
3777 return $this->musculoskeletal_gait_text;
3779 function set_musculoskeletal_gait_text($data) {
3780 if(!empty($data)) {
3781 $this->musculoskeletal_gait_text = $data;
3786 var $musculoskeletal_arthritis;
3787 var $musculoskeletal_arthritis_text;
3788 function get_musculoskeletal_arthritis() {
3789 return $this->musculoskeletal_arthritis;
3791 function get_musculoskeletal_arthritis_yes() {
3792 return $this->musculoskeletal_arthritis == "Yes" ? "CHECKED" : ""; }
3793 function get_musculoskeletal_arthritis_no() {
3794 return $this->musculoskeletal_arthritis == "No" ? "CHECKED" : ""; }
3795 function set_musculoskeletal_arthritis($data) {
3796 if(!empty($data)) {
3797 $this->musculoskeletal_arthritis = $data;
3800 function get_musculoskeletal_arthritis_text() {
3801 return $this->musculoskeletal_arthritis_text;
3803 function set_musculoskeletal_arthritis_text($data) {
3804 if(!empty($data)) {
3805 $this->musculoskeletal_arthritis_text = $data;
3810 var $musculoskeletal_neck_pain;
3811 var $musculoskeletal_neck_pain_text;
3812 function get_musculoskeletal_neck_pain() {
3813 return $this->musculoskeletal_neck_pain;
3815 function get_musculoskeletal_neck_pain_yes() {
3816 return $this->musculoskeletal_neck_pain == "Yes" ? "CHECKED" : ""; }
3817 function get_musculoskeletal_neck_pain_no() {
3818 return $this->musculoskeletal_neck_pain == "No" ? "CHECKED" : ""; }
3819 function set_musculoskeletal_neck_pain($data) {
3820 if(!empty($data)) {
3821 $this->musculoskeletal_neck_pain = $data;
3824 function get_musculoskeletal_neck_pain_text() {
3825 return $this->musculoskeletal_neck_pain_text;
3827 function set_musculoskeletal_neck_pain_text($data) {
3828 if(!empty($data)) {
3829 $this->musculoskeletal_neck_pain_text = $data;
3834 var $musculoskeletal_mid_back_pain;
3835 var $musculoskeletal_mid_back_pain_text;
3836 function get_musculoskeletal_mid_back_pain() {
3837 return $this->musculoskeletal_mid_back_pain;
3839 function get_musculoskeletal_mid_back_pain_yes() {
3840 return $this->musculoskeletal_mid_back_pain == "Yes" ? "CHECKED" : ""; }
3841 function get_musculoskeletal_mid_back_pain_no() {
3842 return $this->musculoskeletal_mid_back_pain == "No" ? "CHECKED" : ""; }
3843 function set_musculoskeletal_mid_back_pain($data) {
3844 if(!empty($data)) {
3845 $this->musculoskeletal_mid_back_pain = $data;
3848 function get_musculoskeletal_mid_back_pain_text() {
3849 return $this->musculoskeletal_mid_back_pain_text;
3851 function set_musculoskeletal_mid_back_pain_text($data) {
3852 if(!empty($data)) {
3853 $this->musculoskeletal_mid_back_pain_text = $data;
3858 var $musculoskeletal_low_back_pain;
3859 var $musculoskeletal_low_back_pain_text;
3860 function get_musculoskeletal_low_back_pain() {
3861 return $this->musculoskeletal_low_back_pain;
3863 function get_musculoskeletal_low_back_pain_yes() {
3864 return $this->musculoskeletal_low_back_pain == "Yes" ? "CHECKED" : ""; }
3865 function get_musculoskeletal_low_back_pain_no() {
3866 return $this->musculoskeletal_low_back_pain == "No" ? "CHECKED" : ""; }
3867 function set_musculoskeletal_low_back_pain($data) {
3868 if(!empty($data)) {
3869 $this->musculoskeletal_low_back_pain = $data;
3872 function get_musculoskeletal_low_back_pain_text() {
3873 return $this->musculoskeletal_low_back_pain_text;
3875 function set_musculoskeletal_low_back_pain_text($data) {
3876 if(!empty($data)) {
3877 $this->musculoskeletal_low_back_pain_text = $data;
3882 var $musculoskeletal_bursitis;
3883 var $musculoskeletal_bursitis_text;
3884 function get_musculoskeletal_bursitis() {
3885 return $this->musculoskeletal_bursitis;
3887 function get_musculoskeletal_bursitis_yes() {
3888 return $this->musculoskeletal_bursitis == "Yes" ? "CHECKED" : ""; }
3889 function get_musculoskeletal_bursitis_no() {
3890 return $this->musculoskeletal_bursitis == "No" ? "CHECKED" : ""; }
3891 function set_musculoskeletal_bursitis($data) {
3892 if(!empty($data)) {
3893 $this->musculoskeletal_bursitis = $data;
3896 function get_musculoskeletal_bursitis_text() {
3897 return $this->musculoskeletal_bursitis_text;
3899 function set_musculoskeletal_bursitis_text($data) {
3900 if(!empty($data)) {
3901 $this->musculoskeletal_bursitis_text = $data;
3906 var $musculoskeletal_gout;
3907 var $musculoskeletal_gout_text;
3908 function get_musculoskeletal_gout() {
3909 return $this->musculoskeletal_gout;
3911 function get_musculoskeletal_gout_yes() {
3912 return $this->musculoskeletal_gout == "Yes" ? "CHECKED" : ""; }
3913 function get_musculoskeletal_gout_no() {
3914 return $this->musculoskeletal_gout == "No" ? "CHECKED" : ""; }
3915 function set_musculoskeletal_gout($data) {
3916 if(!empty($data)) {
3917 $this->musculoskeletal_gout = $data;
3920 function get_musculoskeletal_gout_text() {
3921 return $this->musculoskeletal_gout_text;
3923 function set_musculoskeletal_gout_text($data) {
3924 if(!empty($data)) {
3925 $this->musculoskeletal_gout_text = $data;
3930 var $musculoskeletal_joint_injury;
3931 var $musculoskeletal_joint_injury_text;
3932 function get_musculoskeletal_joint_injury() {
3933 return $this->musculoskeletal_joint_injury;
3935 function get_musculoskeletal_joint_injury_yes() {
3936 return $this->musculoskeletal_joint_injury == "Yes" ? "CHECKED" : ""; }
3937 function get_musculoskeletal_joint_injury_no() {
3938 return $this->musculoskeletal_joint_injury == "No" ? "CHECKED" : ""; }
3939 function set_musculoskeletal_joint_injury($data) {
3940 if(!empty($data)) {
3941 $this->musculoskeletal_joint_injury = $data;
3944 function get_musculoskeletal_joint_injury_text() {
3945 return $this->musculoskeletal_joint_injury_text;
3947 function set_musculoskeletal_joint_injury_text($data) {
3948 if(!empty($data)) {
3949 $this->musculoskeletal_joint_injury_text = $data;
3954 var $musculoskeletal_joint_pain;
3955 var $musculoskeletal_joint_pain_text;
3956 function get_musculoskeletal_joint_pain() {
3957 return $this->musculoskeletal_joint_pain;
3959 function get_musculoskeletal_joint_pain_yes() {
3960 return $this->musculoskeletal_joint_pain == "Yes" ? "CHECKED" : ""; }
3961 function get_musculoskeletal_joint_pain_no() {
3962 return $this->musculoskeletal_joint_pain == "No" ? "CHECKED" : ""; }
3963 function set_musculoskeletal_joint_pain($data) {
3964 if(!empty($data)) {
3965 $this->musculoskeletal_joint_pain = $data;
3968 function get_musculoskeletal_joint_pain_text() {
3969 return $this->musculoskeletal_joint_pain_text;
3971 function set_musculoskeletal_joint_pain_text($data) {
3972 if(!empty($data)) {
3973 $this->musculoskeletal_joint_pain_text = $data;
3978 var $musculoskeletal_joint_swelling;
3979 var $musculoskeletal_joint_swelling_text;
3980 function get_musculoskeletal_joint_swelling() {
3981 return $this->musculoskeletal_joint_swelling;
3983 function get_musculoskeletal_joint_swelling_yes() {
3984 return $this->musculoskeletal_joint_swelling == "Yes" ? "CHECKED" : ""; }
3985 function get_musculoskeletal_joint_swelling_no() {
3986 return $this->musculoskeletal_joint_swelling == "No" ? "CHECKED" : ""; }
3987 function set_musculoskeletal_joint_swelling($data) {
3988 if(!empty($data)) {
3989 $this->musculoskeletal_joint_swelling = $data;
3992 function get_musculoskeletal_joint_swelling_text() {
3993 return $this->musculoskeletal_joint_swelling_text;
3995 function set_musculoskeletal_joint_swelling_text($data) {
3996 if(!empty($data)) {
3997 $this->musculoskeletal_joint_swelling_text = $data;
4002 var $musculoskeletal_myalgias;
4003 var $musculoskeletal_myalgias_text;
4004 function get_musculoskeletal_myalgias() {
4005 return $this->musculoskeletal_myalgias;
4007 function get_musculoskeletal_myalgias_yes() {
4008 return $this->musculoskeletal_myalgias == "Yes" ? "CHECKED" : ""; }
4009 function get_musculoskeletal_myalgias_no() {
4010 return $this->musculoskeletal_myalgias == "No" ? "CHECKED" : ""; }
4011 function set_musculoskeletal_myalgias($data) {
4012 if(!empty($data)) {
4013 $this->musculoskeletal_myalgias = $data;
4016 function get_musculoskeletal_myalgias_text() {
4017 return $this->musculoskeletal_myalgias_text;
4019 function set_musculoskeletal_myalgias_text($data) {
4020 if(!empty($data)) {
4021 $this->musculoskeletal_myalgias_text = $data;
4026 var $musculoskeletal_sciatica;
4027 var $musculoskeletal_sciatica_text;
4028 function get_musculoskeletal_sciatica() {
4029 return $this->musculoskeletal_sciatica;
4031 function get_musculoskeletal_sciatica_yes() {
4032 return $this->musculoskeletal_sciatica == "Yes" ? "CHECKED" : ""; }
4033 function get_musculoskeletal_sciatica_no() {
4034 return $this->musculoskeletal_sciatica == "No" ? "CHECKED" : ""; }
4035 function set_musculoskeletal_sciatica($data) {
4036 if(!empty($data)) {
4037 $this->musculoskeletal_sciatica = $data;
4040 function get_musculoskeletal_sciatica_text() {
4041 return $this->musculoskeletal_sciatica_text;
4043 function set_musculoskeletal_sciatica_text($data) {
4044 if(!empty($data)) {
4045 $this->musculoskeletal_sciatica_text = $data;
4050 var $musculoskeletal_scoliosis;
4051 var $musculoskeletal_scoliosis_text;
4052 function get_musculoskeletal_scoliosis() {
4053 return $this->musculoskeletal_scoliosis;
4055 function get_musculoskeletal_scoliosis_yes() {
4056 return $this->musculoskeletal_scoliosis == "Yes" ? "CHECKED" : ""; }
4057 function get_musculoskeletal_scoliosis_no() {
4058 return $this->musculoskeletal_scoliosis == "No" ? "CHECKED" : ""; }
4059 function set_musculoskeletal_scoliosis($data) {
4060 if(!empty($data)) {
4061 $this->musculoskeletal_scoliosis = $data;
4064 function get_musculoskeletal_scoliosis_text() {
4065 return $this->musculoskeletal_scoliosis_text;
4067 function set_musculoskeletal_scoliosis_text($data) {
4068 if(!empty($data)) {
4069 $this->musculoskeletal_scoliosis_text = $data;
4073 // ----- Anemia -----
4075 var $hematological_anemia;
4076 var $hematological_anemia_text;
4077 function get_hematological_anemia() {
4078 return $this->hematological_anemia;
4080 function get_hematological_anemia_yes() {
4081 return $this->hematological_anemia == "Yes" ? "CHECKED" : ""; }
4082 function get_hematological_anemia_no() {
4083 return $this->hematological_anemia == "No" ? "CHECKED" : ""; }
4084 function set_hematological_anemia($data) {
4085 if(!empty($data)) {
4086 $this->hematological_anemia = $data;
4089 function get_hematological_anemia_text() {
4090 return $this->hematological_anemia_text;
4092 function set_hematological_anemia_text($data) {
4093 if(!empty($data)) {
4094 $this->hematological_anemia_text = $data;
4099 var $hematological_pallor;
4100 var $hematological_pallor_text;
4101 function get_hematological_pallor() {
4102 return $this->hematological_pallor;
4104 function get_hematological_pallor_yes() {
4105 return $this->hematological_pallor == "Yes" ? "CHECKED" : ""; }
4106 function get_hematological_pallor_no() {
4107 return $this->hematological_pallor == "No" ? "CHECKED" : ""; }
4108 function set_hematological_pallor($data) {
4109 if(!empty($data)) {
4110 $this->hematological_pallor = $data;
4113 function get_hematological_pallor_text() {
4114 return $this->hematological_pallor_text;
4116 function set_hematological_pallor_text($data) {
4117 if(!empty($data)) {
4118 $this->hematological_pallor_text = $data;
4123 var $hematological_bleeding_tendencies;
4124 var $hematological_bleeding_tendencies_text;
4125 function get_hematological_bleeding_tendencies() {
4126 return $this->hematological_bleeding_tendencies;
4128 function get_hematological_bleeding_tendencies_yes() {
4129 return $this->hematological_bleeding_tendencies == "Yes" ? "CHECKED" : ""; }
4130 function get_hematological_bleeding_tendencies_no() {
4131 return $this->hematological_bleeding_tendencies == "No" ? "CHECKED" : ""; }
4132 function set_hematological_bleeding_tendencies($data) {
4133 if(!empty($data)) {
4134 $this->hematological_bleeding_tendencies = $data;
4137 function get_hematological_bleeding_tendencies_text() {
4138 return $this->hematological_bleeding_tendencies_text;
4140 function set_hematological_bleeding_tendencies_text($data) {
4141 if(!empty($data)) {
4142 $this->hematological_bleeding_tendencies_text = $data;
4147 var $hematological_bruising;
4148 var $hematological_bruising_text;
4149 function get_hematological_bruising() {
4150 return $this->hematological_bruising;
4152 function get_hematological_bruising_yes() {
4153 return $this->hematological_bruising == "Yes" ? "CHECKED" : ""; }
4154 function get_hematological_bruising_no() {
4155 return $this->hematological_bruising == "No" ? "CHECKED" : ""; }
4156 function set_hematological_bruising($data) {
4157 if(!empty($data)) {
4158 $this->hematological_bruising = $data;
4161 function get_hematological_bruising_text() {
4162 return $this->hematological_bruising_text;
4164 function set_hematological_bruising_text($data) {
4165 if(!empty($data)) {
4166 $this->hematological_bruising_text = $data;
4170 // ----- Thyroid Problems -----
4172 var $endocrine_thyroid_problems;
4173 var $endocrine_thyroid_problems_text;
4174 function get_endocrine_thyroid_problems() {
4175 return $this->endocrine_thyroid_problems;
4177 function get_endocrine_thyroid_problems_yes() {
4178 return $this->endocrine_thyroid_problems == "Yes" ? "CHECKED" : ""; }
4179 function get_endocrine_thyroid_problems_no() {
4180 return $this->endocrine_thyroid_problems == "No" ? "CHECKED" : ""; }
4181 function set_endocrine_thyroid_problems($data) {
4182 if(!empty($data)) {
4183 $this->endocrine_thyroid_problems = $data;
4186 function get_endocrine_thyroid_problems_text() {
4187 return $this->endocrine_thyroid_problems_text;
4189 function set_endocrine_thyroid_problems_text($data) {
4190 if(!empty($data)) {
4191 $this->endocrine_thyroid_problems_text = $data;
4196 var $endocrine_enlarged_thyroid;
4197 var $endocrine_enlarged_thyroid_text;
4198 function get_endocrine_enlarged_thyroid() {
4199 return $this->endocrine_enlarged_thyroid;
4201 function get_endocrine_enlarged_thyroid_yes() {
4202 return $this->endocrine_enlarged_thyroid == "Yes" ? "CHECKED" : ""; }
4203 function get_endocrine_enlarged_thyroid_no() {
4204 return $this->endocrine_enlarged_thyroid == "No" ? "CHECKED" : ""; }
4205 function set_endocrine_enlarged_thyroid($data) {
4206 if(!empty($data)) {
4207 $this->endocrine_enlarged_thyroid = $data;
4210 function get_endocrine_enlarged_thyroid_text() {
4211 return $this->endocrine_enlarged_thyroid_text;
4213 function set_endocrine_enlarged_thyroid_text($data) {
4214 if(!empty($data)) {
4215 $this->endocrine_enlarged_thyroid_text = $data;
4220 var $endocrine_hyperglycemia;
4221 var $endocrine_hyperglycemia_text;
4222 function get_endocrine_hyperglycemia() {
4223 return $this->endocrine_hyperglycemia;
4225 function get_endocrine_hyperglycemia_yes() {
4226 return $this->endocrine_hyperglycemia == "Yes" ? "CHECKED" : ""; }
4227 function get_endocrine_hyperglycemia_no() {
4228 return $this->endocrine_hyperglycemia == "No" ? "CHECKED" : ""; }
4229 function set_endocrine_hyperglycemia($data) {
4230 if(!empty($data)) {
4231 $this->endocrine_hyperglycemia = $data;
4234 function get_endocrine_hyperglycemia_text() {
4235 return $this->endocrine_hyperglycemia_text;
4237 function set_endocrine_hyperglycemia_text($data) {
4238 if(!empty($data)) {
4239 $this->endocrine_hyperglycemia_text = $data;
4244 var $endocrine_hypoglycemia;
4245 var $endocrine_hypoglycemia_text;
4246 function get_endocrine_hypoglycemia() {
4247 return $this->endocrine_hypoglycemia;
4249 function get_endocrine_hypoglycemia_yes() {
4250 return $this->endocrine_hypoglycemia == "Yes" ? "CHECKED" : ""; }
4251 function get_endocrine_hypoglycemia_no() {
4252 return $this->endocrine_hypoglycemia == "No" ? "CHECKED" : ""; }
4253 function set_endocrine_hypoglycemia($data) {
4254 if(!empty($data)) {
4255 $this->endocrine_hypoglycemia = $data;
4258 function get_endocrine_hypoglycemia_text() {
4259 return $this->endocrine_hypoglycemia_text;
4261 function set_endocrine_hypoglycemia_text($data) {
4262 if(!empty($data)) {
4263 $this->endocrine_hypoglycemia_text = $data;
4268 var $endocrine_cold_intolerance;
4269 var $endocrine_cold_intolerance_text;
4270 function get_endocrine_cold_intolerance() {
4271 return $this->endocrine_cold_intolerance;
4273 function get_endocrine_cold_intolerance_yes() {
4274 return $this->endocrine_cold_intolerance == "Yes" ? "CHECKED" : ""; }
4275 function get_endocrine_cold_intolerance_no() {
4276 return $this->endocrine_cold_intolerance == "No" ? "CHECKED" : ""; }
4277 function set_endocrine_cold_intolerance($data) {
4278 if(!empty($data)) {
4279 $this->endocrine_cold_intolerance = $data;
4282 function get_endocrine_cold_intolerance_text() {
4283 return $this->endocrine_cold_intolerance_text;
4285 function set_endocrine_cold_intolerance_text($data) {
4286 if(!empty($data)) {
4287 $this->endocrine_cold_intolerance_text = $data;
4292 var $endocrine_heat_intolerance;
4293 var $endocrine_heat_intolerance_text;
4294 function get_endocrine_heat_intolerance() {
4295 return $this->endocrine_heat_intolerance;
4297 function get_endocrine_heat_intolerance_yes() {
4298 return $this->endocrine_heat_intolerance == "Yes" ? "CHECKED" : ""; }
4299 function get_endocrine_heat_intolerance_no() {
4300 return $this->endocrine_heat_intolerance == "No" ? "CHECKED" : ""; }
4301 function set_endocrine_heat_intolerance($data) {
4302 if(!empty($data)) {
4303 $this->endocrine_heat_intolerance = $data;
4306 function get_endocrine_heat_intolerance_text() {
4307 return $this->endocrine_heat_intolerance_text;
4309 function set_endocrine_heat_intolerance_text($data) {
4310 if(!empty($data)) {
4311 $this->endocrine_heat_intolerance_text = $data;
4316 var $endocrine_early_awakening;
4317 var $endocrine_early_awakening_text;
4318 function get_endocrine_early_awakening() {
4319 return $this->endocrine_early_awakening;
4321 function get_endocrine_early_awakening_yes() {
4322 return $this->endocrine_early_awakening == "Yes" ? "CHECKED" : ""; }
4323 function get_endocrine_early_awakening_no() {
4324 return $this->endocrine_early_awakening == "No" ? "CHECKED" : ""; }
4325 function set_endocrine_early_awakening($data) {
4326 if(!empty($data)) {
4327 $this->endocrine_early_awakening = $data;
4330 function get_endocrine_early_awakening_text() {
4331 return $this->endocrine_early_awakening_text;
4333 function set_endocrine_early_awakening_text($data) {
4334 if(!empty($data)) {
4335 $this->endocrine_early_awakening_text = $data;
4340 var $endocrine_fatigue_unexplained;
4341 var $endocrine_fatigue_unexplained_text;
4342 function get_endocrine_fatigue_unexplained() {
4343 return $this->endocrine_fatigue_unexplained;
4345 function get_endocrine_fatigue_unexplained_yes() {
4346 return $this->endocrine_fatigue_unexplained == "Yes" ? "CHECKED" : ""; }
4347 function get_endocrine_fatigue_unexplained_no() {
4348 return $this->endocrine_fatigue_unexplained == "No" ? "CHECKED" : ""; }
4349 function set_endocrine_fatigue_unexplained($data) {
4350 if(!empty($data)) {
4351 $this->endocrine_fatigue_unexplained = $data;
4354 function get_endocrine_fatigue_unexplained_text() {
4355 return $this->endocrine_fatigue_unexplained_text;
4357 function set_endocrine_fatigue_unexplained_text($data) {
4358 if(!empty($data)) {
4359 $this->endocrine_fatigue_unexplained_text = $data;
4364 var $endocrine_weight_gain;
4365 var $endocrine_weight_gain_text;
4366 function get_endocrine_weight_gain() {
4367 return $this->endocrine_weight_gain;
4369 function get_endocrine_weight_gain_yes() {
4370 return $this->endocrine_weight_gain == "Yes" ? "CHECKED" : ""; }
4371 function get_endocrine_weight_gain_no() {
4372 return $this->endocrine_weight_gain == "No" ? "CHECKED" : ""; }
4373 function set_endocrine_weight_gain($data) {
4374 if(!empty($data)) {
4375 $this->endocrine_weight_gain = $data;
4378 function get_endocrine_weight_gain_text() {
4379 return $this->endocrine_weight_gain_text;
4381 function set_endocrine_weight_gain_text($data) {
4382 if(!empty($data)) {
4383 $this->endocrine_weight_gain_text = $data;
4388 var $endocrine_weight_loss;
4389 var $endocrine_weight_loss_text;
4390 function get_endocrine_weight_loss() {
4391 return $this->endocrine_weight_loss;
4393 function get_endocrine_weight_loss_yes() {
4394 return $this->endocrine_weight_loss == "Yes" ? "CHECKED" : ""; }
4395 function get_endocrine_weight_loss_no() {
4396 return $this->endocrine_weight_loss == "No" ? "CHECKED" : ""; }
4397 function set_endocrine_weight_loss($data) {
4398 if(!empty($data)) {
4399 $this->endocrine_weight_loss = $data;
4402 function get_endocrine_weight_loss_text() {
4403 return $this->endocrine_weight_loss_text;
4405 function set_endocrine_weight_loss_text($data) {
4406 if(!empty($data)) {
4407 $this->endocrine_weight_loss_text = $data;
4412 var $endocrine_premenstrual_symptoms;
4413 var $endocrine_premenstrual_symptoms_text;
4414 function get_endocrine_premenstrual_symptoms() {
4415 return $this->endocrine_premenstrual_symptoms;
4417 function get_endocrine_premenstrual_symptoms_yes() {
4418 return $this->endocrine_premenstrual_symptoms == "Yes" ? "CHECKED" : ""; }
4419 function get_endocrine_premenstrual_symptoms_no() {
4420 return $this->endocrine_premenstrual_symptoms == "No" ? "CHECKED" : ""; }
4421 function set_endocrine_premenstrual_symptoms($data) {
4422 if(!empty($data)) {
4423 $this->endocrine_premenstrual_symptoms = $data;
4426 function get_endocrine_premenstrual_symptoms_text() {
4427 return $this->endocrine_premenstrual_symptoms_text;
4429 function set_endocrine_premenstrual_symptoms_text($data) {
4430 if(!empty($data)) {
4431 $this->endocrine_premenstrual_symptoms_text = $data;
4436 var $endocrine_hair_no_change_or_no_loss;
4437 var $endocrine_hair_no_change_or_no_loss_text;
4438 function get_endocrine_hair_no_change_or_no_loss() {
4439 return $this->endocrine_hair_no_change_or_no_loss;
4441 function get_endocrine_hair_no_change_or_no_loss_yes() {
4442 return $this->endocrine_hair_no_change_or_no_loss == "Yes" ? "CHECKED" : ""; }
4443 function get_endocrine_hair_no_change_or_no_loss_no() {
4444 return $this->endocrine_hair_no_change_or_no_loss == "No" ? "CHECKED" : ""; }
4445 function set_endocrine_hair_no_change_or_no_loss($data) {
4446 if(!empty($data)) {
4447 $this->endocrine_hair_no_change_or_no_loss = $data;
4450 function get_endocrine_hair_no_change_or_no_loss_text() {
4451 return $this->endocrine_hair_no_change_or_no_loss_text;
4453 function set_endocrine_hair_no_change_or_no_loss_text($data) {
4454 if(!empty($data)) {
4455 $this->endocrine_hair_no_change_or_no_loss_text = $data;
4460 var $endocrine_hot_flashes;
4461 var $endocrine_hot_flashes_text;
4462 function get_endocrine_hot_flashes() {
4463 return $this->endocrine_hot_flashes;
4465 function get_endocrine_hot_flashes_yes() {
4466 return $this->endocrine_hot_flashes == "Yes" ? "CHECKED" : ""; }
4467 function get_endocrine_hot_flashes_no() {
4468 return $this->endocrine_hot_flashes == "No" ? "CHECKED" : ""; }
4469 function set_endocrine_hot_flashes($data) {
4470 if(!empty($data)) {
4471 $this->endocrine_hot_flashes = $data;
4474 function get_endocrine_hot_flashes_text() {
4475 return $this->endocrine_hot_flashes_text;
4477 function set_endocrine_hot_flashes_text($data) {
4478 if(!empty($data)) {
4479 $this->endocrine_hot_flashes_text = $data;
4483 // ----- Swollen lymph nodes -----
4485 var $lymphatic_swollen_lymph_nodes;
4486 var $lymphatic_swollen_lymph_nodes_text;
4487 function get_lymphatic_swollen_lymph_nodes() {
4488 return $this->lymphatic_swollen_lymph_nodes;
4490 function get_lymphatic_swollen_lymph_nodes_yes() {
4491 return $this->lymphatic_swollen_lymph_nodes == "Yes" ? "CHECKED" : ""; }
4492 function get_lymphatic_swollen_lymph_nodes_no() {
4493 return $this->lymphatic_swollen_lymph_nodes == "No" ? "CHECKED" : ""; }
4494 function set_lymphatic_swollen_lymph_nodes($data) {
4495 if(!empty($data)) {
4496 $this->lymphatic_swollen_lymph_nodes = $data;
4499 function get_lymphatic_swollen_lymph_nodes_text() {
4500 return $this->lymphatic_swollen_lymph_nodes_text;
4502 function set_lymphatic_swollen_lymph_nodes_text($data) {
4503 if(!empty($data)) {
4504 $this->lymphatic_swollen_lymph_nodes_text = $data;
4509 var $lymphatic_swollen_extremities;
4510 var $lymphatic_swollen_extremities_text;
4511 function get_lymphatic_swollen_extremities() {
4512 return $this->lymphatic_swollen_extremities;
4514 function get_lymphatic_swollen_extremities_yes() {
4515 return $this->lymphatic_swollen_extremities == "Yes" ? "CHECKED" : ""; }
4516 function get_lymphatic_swollen_extremities_no() {
4517 return $this->lymphatic_swollen_extremities == "No" ? "CHECKED" : ""; }
4518 function set_lymphatic_swollen_extremities($data) {
4519 if(!empty($data)) {
4520 $this->lymphatic_swollen_extremities = $data;
4523 function get_lymphatic_swollen_extremities_text() {
4524 return $this->lymphatic_swollen_extremities_text;
4526 function set_lymphatic_swollen_extremities_text($data) {
4527 if(!empty($data)) {
4528 $this->lymphatic_swollen_extremities_text = $data;
4532 // ----- Compulsions -----
4534 var $psychiatric_compulsions;
4535 var $psychiatric_compulsions_text;
4536 function get_psychiatric_compulsions() {
4537 return $this->psychiatric_compulsions;
4539 function get_psychiatric_compulsions_yes() {
4540 return $this->psychiatric_compulsions == "Yes" ? "CHECKED" : ""; }
4541 function get_psychiatric_compulsions_no() {
4542 return $this->psychiatric_compulsions == "No" ? "CHECKED" : ""; }
4543 function set_psychiatric_compulsions($data) {
4544 if(!empty($data)) {
4545 $this->psychiatric_compulsions = $data;
4548 function get_psychiatric_compulsions_text() {
4549 return $this->psychiatric_compulsions_text;
4551 function set_psychiatric_compulsions_text($data) {
4552 if(!empty($data)) {
4553 $this->psychiatric_compulsions_text = $data;
4558 var $psychiatric_depression;
4559 var $psychiatric_depression_text;
4560 function get_psychiatric_depression() {
4561 return $this->psychiatric_depression;
4563 function get_psychiatric_depression_yes() {
4564 return $this->psychiatric_depression == "Yes" ? "CHECKED" : ""; }
4565 function get_psychiatric_depression_no() {
4566 return $this->psychiatric_depression == "No" ? "CHECKED" : ""; }
4567 function set_psychiatric_depression($data) {
4568 if(!empty($data)) {
4569 $this->psychiatric_depression = $data;
4572 function get_psychiatric_depression_text() {
4573 return $this->psychiatric_depression_text;
4575 function set_psychiatric_depression_text($data) {
4576 if(!empty($data)) {
4577 $this->psychiatric_depression_text = $data;
4582 var $psychiatric_fear;
4583 var $psychiatric_fear_text;
4584 function get_psychiatric_fear() {
4585 return $this->psychiatric_fear;
4587 function get_psychiatric_fear_yes() {
4588 return $this->psychiatric_fear == "Yes" ? "CHECKED" : ""; }
4589 function get_psychiatric_fear_no() {
4590 return $this->psychiatric_fear == "No" ? "CHECKED" : ""; }
4591 function set_psychiatric_fear($data) {
4592 if(!empty($data)) {
4593 $this->psychiatric_fear = $data;
4596 function get_psychiatric_fear_text() {
4597 return $this->psychiatric_fear_text;
4599 function set_psychiatric_fear_text($data) {
4600 if(!empty($data)) {
4601 $this->psychiatric_fear_text = $data;
4606 var $psychiatric_anxiety;
4607 var $psychiatric_anxiety_text;
4608 function get_psychiatric_anxiety() {
4609 return $this->psychiatric_anxiety;
4611 function get_psychiatric_anxiety_yes() {
4612 return $this->psychiatric_anxiety == "Yes" ? "CHECKED" : ""; }
4613 function get_psychiatric_anxiety_no() {
4614 return $this->psychiatric_anxiety == "No" ? "CHECKED" : ""; }
4615 function set_psychiatric_anxiety($data) {
4616 if(!empty($data)) {
4617 $this->psychiatric_anxiety = $data;
4620 function get_psychiatric_anxiety_text() {
4621 return $this->psychiatric_anxiety_text;
4623 function set_psychiatric_anxiety_text($data) {
4624 if(!empty($data)) {
4625 $this->psychiatric_anxiety_text = $data;
4630 var $psychiatric_hallucinations;
4631 var $psychiatric_hallucinations_text;
4632 function get_psychiatric_hallucinations() {
4633 return $this->psychiatric_hallucinations;
4635 function get_psychiatric_hallucinations_yes() {
4636 return $this->psychiatric_hallucinations == "Yes" ? "CHECKED" : ""; }
4637 function get_psychiatric_hallucinations_no() {
4638 return $this->psychiatric_hallucinations == "No" ? "CHECKED" : ""; }
4639 function set_psychiatric_hallucinations($data) {
4640 if(!empty($data)) {
4641 $this->psychiatric_hallucinations = $data;
4644 function get_psychiatric_hallucinations_text() {
4645 return $this->psychiatric_hallucinations_text;
4647 function set_psychiatric_hallucinations_text($data) {
4648 if(!empty($data)) {
4649 $this->psychiatric_hallucinations_text = $data;
4654 var $psychiatric_loss_of_interest;
4655 var $psychiatric_loss_of_interest_text;
4656 function get_psychiatric_loss_of_interest() {
4657 return $this->psychiatric_loss_of_interest;
4659 function get_psychiatric_loss_of_interest_yes() {
4660 return $this->psychiatric_loss_of_interest == "Yes" ? "CHECKED" : ""; }
4661 function get_psychiatric_loss_of_interest_no() {
4662 return $this->psychiatric_loss_of_interest == "No" ? "CHECKED" : ""; }
4663 function set_psychiatric_loss_of_interest($data) {
4664 if(!empty($data)) {
4665 $this->psychiatric_loss_of_interest = $data;
4668 function get_psychiatric_loss_of_interest_text() {
4669 return $this->psychiatric_loss_of_interest_text;
4671 function set_psychiatric_loss_of_interest_text($data) {
4672 if(!empty($data)) {
4673 $this->psychiatric_loss_of_interest_text = $data;
4678 var $psychiatric_memory_loss;
4679 var $psychiatric_memory_loss_text;
4680 function get_psychiatric_memory_loss() {
4681 return $this->psychiatric_memory_loss;
4683 function get_psychiatric_memory_loss_yes() {
4684 return $this->psychiatric_memory_loss == "Yes" ? "CHECKED" : ""; }
4685 function get_psychiatric_memory_loss_no() {
4686 return $this->psychiatric_memory_loss == "No" ? "CHECKED" : ""; }
4687 function set_psychiatric_memory_loss($data) {
4688 if(!empty($data)) {
4689 $this->psychiatric_memory_loss = $data;
4692 function get_psychiatric_memory_loss_text() {
4693 return $this->psychiatric_memory_loss_text;
4695 function set_psychiatric_memory_loss_text($data) {
4696 if(!empty($data)) {
4697 $this->psychiatric_memory_loss_text = $data;
4702 var $psychiatric_mood_swings;
4703 var $psychiatric_mood_swings_text;
4704 function get_psychiatric_mood_swings() {
4705 return $this->psychiatric_mood_swings;
4707 function get_psychiatric_mood_swings_yes() {
4708 return $this->psychiatric_mood_swings == "Yes" ? "CHECKED" : ""; }
4709 function get_psychiatric_mood_swings_no() {
4710 return $this->psychiatric_mood_swings == "No" ? "CHECKED" : ""; }
4711 function set_psychiatric_mood_swings($data) {
4712 if(!empty($data)) {
4713 $this->psychiatric_mood_swings = $data;
4716 function get_psychiatric_mood_swings_text() {
4717 return $this->psychiatric_mood_swings_text;
4719 function set_psychiatric_mood_swings_text($data) {
4720 if(!empty($data)) {
4721 $this->psychiatric_mood_swings_text = $data;
4726 var $psychiatric_pananoia;
4727 var $psychiatric_pananoia_text;
4728 function get_psychiatric_pananoia() {
4729 return $this->psychiatric_pananoia;
4731 function get_psychiatric_pananoia_yes() {
4732 return $this->psychiatric_pananoia == "Yes" ? "CHECKED" : ""; }
4733 function get_psychiatric_pananoia_no() {
4734 return $this->psychiatric_pananoia == "No" ? "CHECKED" : ""; }
4735 function set_psychiatric_pananoia($data) {
4736 if(!empty($data)) {
4737 $this->psychiatric_pananoia = $data;
4740 function get_psychiatric_pananoia_text() {
4741 return $this->psychiatric_pananoia_text;
4743 function set_psychiatric_pananoia_text($data) {
4744 if(!empty($data)) {
4745 $this->psychiatric_pananoia_text = $data;
4750 var $psychiatric_insomnia;
4751 var $psychiatric_insomnia_text;
4752 function get_psychiatric_insomnia() {
4753 return $this->psychiatric_insomnia;
4755 function get_psychiatric_insomnia_yes() {
4756 return $this->psychiatric_insomnia == "Yes" ? "CHECKED" : ""; }
4757 function get_psychiatric_insomnia_no() {
4758 return $this->psychiatric_insomnia == "No" ? "CHECKED" : ""; }
4759 function set_psychiatric_insomnia($data) {
4760 if(!empty($data)) {
4761 $this->psychiatric_insomnia = $data;
4764 function get_psychiatric_insomnia_text() {
4765 return $this->psychiatric_insomnia_text;
4767 function set_psychiatric_insomnia_text($data) {
4768 if(!empty($data)) {
4769 $this->psychiatric_insomnia_text = $data;
4773 } // end of Form