2 // Copyright (C) 2006 Rod Roark <rod@sunsetsystems.com>
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',
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('',
35 $route_array_verbose = array('',
49 $substitute_array = array('', 'Allowed', 'Not Allowed');