added physical_exam encounter form
[openemr.git] / interface / forms / physical_exam / lines.php
blob74d15f59e92be5e284266b13d0a274f1d167c740
1 <?php
3 // The hash is overkill, but easy to traverse for presenting the form.
4 // The first level key is the displayed category name, and the second
5 // level is the line_id for the database. Be careful not to duplicate
6 // these IDs!
8 $pelines = array(
9 'GEN' => array(
10 'GENWELL' => 'Appearance'),
11 'EYE' => array(
12 'EYECP' => 'Conjuntiva, pupils'),
13 'ENT' => array(
14 'ENTTM' => 'TMs/EAMs/EE, ext nose',
15 'ENTNASAL' => 'Nasal mucosa pink, septum midline',
16 'ENTORAL' => 'Oral mucosa pink, throat clear',
17 'ENTNECK' => 'Neck supple',
18 'ENTTHY' => 'Thyroid normal'),
19 'CV' => array(
20 'CVRRR' => 'RRR without MOR',
21 'CVNTOH' => 'No thrills or heaves',
22 'CVCP' => 'Cartoid pulsations nl, pedal pulses nl',
23 'CVNPE' => 'No peripheral edema'),
24 'CHEST' => array(
25 'CHNSD' => 'No skin dimpling or breast nodules'),
26 'RESP' => array(
27 'RECTAB' => 'Chest CTAB',
28 'REEFF' => 'Respirator effort unlabored'),
29 'GI' => array(
30 'GIMASS' => 'No masses, tenderness',
31 'GIOG' => 'No ogrganomegoly',
32 'GIHERN' => 'No hernia',
33 'GIRECT' => 'Anus nl, no rectal tenderness/mass'),
34 'GU' => array(
35 'GUTEST' => 'No testicular tenderness, masses',
36 'GUPROS' => 'Prostate w/o enlrgmt, nodules, tender',
37 'GUEG' => 'Nl ext genitalia, vag mucosa, cervix',
38 'GUAD' => 'No adnexal tenderness/masses'),
39 'LYMPH' => array(
40 'LYAD' => 'No adenopathy (2 areas required)'),
41 'MUSC' => array(
42 'MUSTR' => 'Strength',
43 'MUROM' => 'ROM',
44 'MUSTAB' => 'Stability',
45 'MUINSP' => 'Inspection'),
46 'NEURO' => array(
47 'NEUCN2' => 'CN2-12 intact',
48 'NEUREF' => 'Reflexes normal',
49 'NEUSENS' => 'Sensory exam normal'),
50 'PSYCH' => array(
51 'PSYOR' => 'Orientated x 3',
52 'PSYAFF' => 'Affect normal'),
53 'SKIN' => array(
54 'SKRASH' => 'No rash or abnormal lesions'),
55 'OTHER' => array(
56 'OTHER' => 'Other'),
58 // These generate the Treatment lines:
59 '*' => array(
60 'TRTLABS' => 'Labs',
61 'TRTXRAY' => 'X-ray',
62 'TRTRET' => 'Return Visit')