Removed some erroneous copyright headers.
[openemr.git] / sites / default / config.php
blobaa175270ce3cbb6140cf4d564f99b61868b9f000
1 <?php
3 $GLOBALS['oer_config']['freeb']['claim_file_dir'] = "/usr/share/freeb/public/";
4 //currently can be pdf or txt
5 $GLOBALS['oer_config']['freeb']['default_format'] = "pdf";
6 $GLOBALS['oer_config']['freeb']['username'] = "freeb";
7 $GLOBALS['oer_config']['freeb']['password'] = "12345";
8 $GLOBALS['oer_config']['freeb']['print_command'] = "/usr/bin/lpr";
9 $GLOBALS['oer_config']['freeb']['printer_name'] = "HP_LaserJet4L";
10 // This does not seem useful for PDF HCFAs, see freeb/targetbin/ascii2pdf instead:
11 $GLOBALS['oer_config']['freeb']['printer_extras'] = "-o PageSize=Letter -o portrait";
12 // Set this to make an additional copy of HCFA PDFs in the specified directory,
13 // e.g. for an external billing service. You must end this path with a slash:
14 $GLOBALS['oer_config']['freeb']['copy_pdfs_to'] = '';
16 //used differently by different applications, intuit programs only like numbers
17 $GLOBALS['oer_config']['ofx']['bankid'] = "123456789";
19 //you can use this to match to an existing account in you accounting application
20 $GLOBALS['oer_config']['ofx']['acctid'] = "123456789";
22 //use FL for FLORIDA compatible format, leave blank for default
23 $GLOBALS['oer_config']['prescriptions']['format'] = "";
25 // Document storage repository document root. Must include a trailing slash.
26 $GLOBALS['oer_config']['documents']['repopath'] = $GLOBALS['OE_SITE_DIR'] . "/documents/";
27 $GLOBALS['oer_config']['documents']['file_command_path'] = "/usr/bin/file";
29 //Name of prescription graphic in interface/pic/ directory without preceding slash. Can be JPEG or PNG, normally 3 inches wide.
30 $GLOBALS['oer_config']['prescriptions']['logo_pic'] = "Rx.png";
32 // Name of signature graphic in interface/pic/ directory without preceding
33 // slash. Normally 3 inches wide. This filename may include the string
34 // "{userid}" to indicate the numeric ID of the user, so that prescriptions
35 // can print with the correct provider's signature if you have multiple
36 // providers. Also signature images are used only for faxed prescriptions,
37 // not printed prescriptions.
38 $GLOBALS['oer_config']['prescriptions']['sig_pic'] = "sig.png";
39 //Option to used signature graphic or not
40 $GLOBALS['oer_config']['prescriptions']['use_signature'] = false;
42 // To print the prescription medication area on a grey background:
43 $GLOBALS['oer_config']['prescriptions']['shading'] = false;
45 // only works with hylafax sendfax client, and sendfax must be in PATH
46 // assign 'sendfax' to turn fax sending on
47 $GLOBALS['oer_config']['prescriptions']['sendfax'] = '';
49 // asign a value here if there is any prefix needed to get dialing tone
50 // you can also append a comma to add a one second delay
51 // i.e. 9, will dial 9 for external tone, and wait a second.
52 $GLOBALS['oer_config']['prescriptions']['prefix'] = '';
54 // Similarly for bottle labels if you are dispensing drugs. Note that paper
55 // size here or for prescriptions may be an array (0, 0, width, height).
56 // As above, these measurements are in points.
57 $GLOBALS['oer_config']['druglabels']['paper_size'] = array(0, 0, 216, 216);
58 $GLOBALS['oer_config']['druglabels']['left'] = 18;
59 $GLOBALS['oer_config']['druglabels']['right'] = 18;
60 $GLOBALS['oer_config']['druglabels']['top'] = 18;
61 $GLOBALS['oer_config']['druglabels']['bottom'] = 18;
62 $GLOBALS['oer_config']['druglabels']['logo_pic'] = 'druglogo.png';
63 $GLOBALS['oer_config']['druglabels']['disclaimer'] =
64 'Caution: Federal law prohibits dispensing without a prescription. ' .
65 'Use only as directed.';
67 // Accounts Receivable support. Use one of the following numeric values:
68 // 0 = None
69 // 1 = Using SQL-Ledger
70 // 2 = A/R internal to OpenEMR (recommended)
72 $GLOBALS['oer_config']['ws_accounting']['enabled'] = 2;
74 // If 1 is chosen above, then the following must be set correctly:
76 $GLOBALS['oer_config']['ws_accounting']['server'] = "localhost";
77 $GLOBALS['oer_config']['ws_accounting']['port'] = "80";
78 $GLOBALS['oer_config']['ws_accounting']['url'] = "/sql-ledger/ws_server.pl";
79 $GLOBALS['oer_config']['ws_accounting']['username'] = "unused";
80 $GLOBALS['oer_config']['ws_accounting']['password'] = "unused";
81 $GLOBALS['oer_config']['ws_accounting']['url_path'] = "http://" .
82 $_SERVER["SERVER_NAME"] . "/sql-ledger/login.pl";
83 $GLOBALS['oer_config']['ws_accounting']['income_acct'] = "4320";
85 //don't alter below this line unless you are an advanced user and know what you are doing
87 $GLOBALS['oer_config']['prescriptions']['logo'] = dirname(__FILE__) .
88 "/../../interface/pic/" . $GLOBALS['oer_config']['prescriptions']['logo_pic'];
89 $GLOBALS['oer_config']['prescriptions']['signature'] = dirname(__FILE__) .
90 "/../../interface/pic/" . $GLOBALS['oer_config']['prescriptions']['sig_pic'];
92 $GLOBALS['oer_config']['druglabels']['logo'] = dirname(__FILE__) .
93 "/../../interface/pic/" . $GLOBALS['oer_config']['druglabels']['logo_pic'];
95 $GLOBALS['oer_config']['documents']['repository'] = $GLOBALS['oer_config']['documents']['repopath'];