refinements for in-house drugs
[openemr.git] / interface / drugs / drugs.inc.php
blobd9be4d980c6eaf2289c071327e810e48b60d00b8
1 <?php
2 // Copyright (C) 2006 Rod Roark <rod@sunsetsystems.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 // These were adapted from library/classes/Prescription.class.php:
11 $form_array = array('', 'suspension', 'tablet', 'capsule', 'solution', 'tsp',
12 'ml', 'units', 'inhalations', 'gtts(drops)');
14 $unit_array = array('', 'mg', 'mg/1cc', 'mg/2cc', 'mg/3cc', 'mg/4cc',
15 'mg/5cc', 'grams', 'mcg');
17 $route_array = array('', 'Per Oris', 'Per Rectum', 'To Skin',
18 'To Affected Area', 'Sublingual', 'OS', 'OD', 'OU', 'SQ', 'IM', 'IV',
19 'Per Nostril');
21 $interval_array = array('', 'b.i.d.', 't.i.d.', 'q.i.d.', 'q.3h', 'q.4h',
22 'q.5h', 'q.6h', 'q.8h', 'q.d.');
24 $interval_array_verbose = array('',
25 'twice daily',
26 '3 times daily',
27 '4 times daily',
28 'every 3 hours',
29 'every 4 hours',
30 'every 5 hours',
31 'every 6 hours',
32 'every 8 hours',
33 'daily');
35 $route_array_verbose = array('',
36 'by mouth',
37 'rectally',
38 'to skin',
39 'to affected area',
40 'under tongue',
41 'in left eye',
42 'in right eye',
43 'in each eye',
44 'subcutaneously',
45 'intramuscularly',
46 'intravenously',
47 'in nostril');
49 $substitute_array = array('', 'Allowed', 'Not Allowed');