psr2 fixes to prior commit
[openemr.git] / sites / default / config.php
blobd9d6062d22506726f502d122a5c12d4071575abd
1 <?php
2 //used differently by different applications, intuit programs only like numbers
3 $GLOBALS['oer_config']['ofx']['bankid'] = "123456789";
5 //you can use this to match to an existing account in you accounting application
6 $GLOBALS['oer_config']['ofx']['acctid'] = "123456789";
8 //use FL for FLORIDA compatible format, leave blank for default
9 $GLOBALS['oer_config']['prescriptions']['format'] = "";
11 // Document storage repository document root. Must include a trailing slash.
12 $GLOBALS['oer_config']['documents']['repopath'] = $GLOBALS['OE_SITE_DIR'] . "/documents/";
13 $GLOBALS['oer_config']['documents']['file_command_path'] = "/usr/bin/file";
15 //Name of prescription graphic in interface/pic/ directory without preceding slash. Can be JPEG or PNG, normally 3 inches wide.
16 $GLOBALS['oer_config']['prescriptions']['logo_pic'] = "Rx.png";
18 // Name of signature graphic in interface/pic/ directory without preceding
19 // slash. Normally 3 inches wide. This filename may include the string
20 // "{userid}" to indicate the numeric ID of the user, so that prescriptions
21 // can print with the correct provider's signature if you have multiple
22 // providers. Also signature images are used only for faxed prescriptions,
23 // not printed prescriptions.
24 $GLOBALS['oer_config']['prescriptions']['sig_pic'] = "sig.png";
25 //Option to used signature graphic or not
26 $GLOBALS['oer_config']['prescriptions']['use_signature'] = false;
28 // To print the prescription medication area on a grey background:
29 $GLOBALS['oer_config']['prescriptions']['shading'] = false;
31 // only works with hylafax sendfax client, and sendfax must be in PATH
32 // assign 'sendfax' to turn fax sending on
33 $GLOBALS['oer_config']['prescriptions']['sendfax'] = '';
35 // asign a value here if there is any prefix needed to get dialing tone
36 // you can also append a comma to add a one second delay
37 // i.e. 9, will dial 9 for external tone, and wait a second.
38 $GLOBALS['oer_config']['prescriptions']['prefix'] = '';
40 // Similarly for bottle labels if you are dispensing drugs. Note that paper
41 // size here or for prescriptions may be an array (0, 0, width, height).
42 // As above, these measurements are in points.
43 $GLOBALS['oer_config']['druglabels']['paper_size'] = array(0, 0, 216, 216);
44 $GLOBALS['oer_config']['druglabels']['left'] = 18;
45 $GLOBALS['oer_config']['druglabels']['right'] = 18;
46 $GLOBALS['oer_config']['druglabels']['top'] = 18;
47 $GLOBALS['oer_config']['druglabels']['bottom'] = 18;
48 $GLOBALS['oer_config']['druglabels']['logo_pic'] = 'druglogo.png';
49 $GLOBALS['oer_config']['druglabels']['disclaimer'] =
50 'Caution: Federal law prohibits dispensing without a prescription. ' .
51 'Use only as directed.';
53 //don't alter below this line unless you are an advanced user and know what you are doing
55 $GLOBALS['oer_config']['prescriptions']['logo'] = dirname(__FILE__) .
56 "/../../interface/pic/" . $GLOBALS['oer_config']['prescriptions']['logo_pic'];
57 $GLOBALS['oer_config']['prescriptions']['signature'] = dirname(__FILE__) .
58 "/../../interface/pic/" . $GLOBALS['oer_config']['prescriptions']['sig_pic'];
60 $GLOBALS['oer_config']['druglabels']['logo'] = dirname(__FILE__) .
61 "/../../interface/pic/" . $GLOBALS['oer_config']['druglabels']['logo_pic'];
63 $GLOBALS['oer_config']['documents']['repository'] = $GLOBALS['oer_config']['documents']['repopath'];