Fee sheet improvements. Can set default code type. take 3.
[openemr.git] / library / globals.inc.php
blob22bedbc1e7c9c23dcce319fa999cf2b58941366c
1 <?php
2 // Copyright (C) 2010-2015 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 // $GLOBALS['print_command'] is the
10 // Print command for spooling to printers, used by statements.inc.php
11 // This is the command to be used for printing (without the filename).
12 // The word following "-P" should be the name of your printer. This
13 // example is designed for 8.5x11-inch paper with 1-inch margins,
14 // 10 CPI, 6 LPI, 65 columns, 54 lines per page.
16 // IF lpr services are installed on Windows this setting will be similar
17 // Otherwise configure it as needed (print /d:PRN) might be an option for Windows parallel printers
19 // Current supported languages: // Allow capture of term for translation:
20 // Albanian // xl('Albanian')
21 // Amharic // xl('Amharic')
22 // Arabic // xl('Arabic')
23 // Armenian // xl('Armenian')
24 // Bahasa Indonesia // xl('Bahasa Indonesia')
25 // Bengali // xl('Bengali')
26 // Bosnian // xl('Bosnian')
27 // Chinese (Simplified) // xl('Chinese (Simplified)')
28 // Chinese (Traditional) // xl('Chinese (Traditional)')
29 // Croatian // xl('Croatian')
30 // Czech // xl('Czech')
31 // Danish // xl('Danish')
32 // Dutch // xl('Dutch')
33 // English (Indian) // xl('English (Indian)')
34 // English (Standard) // xl('English (Standard)')
35 // Estonian // xl('Estonian')
36 // Finnish // xl('Finnish')
37 // French // xl('French (Standard)')
38 // French // xl('French (Canadian)')
39 // Georgian // xl('Georgian')
40 // German // xl('German')
41 // Greek // xl('Greek')
42 // Hebrew // xl('Hebrew')
43 // Hindi // xl('Hindi')
44 // Hungarian // xl('Hungarian')
45 // Italian // xl('Italian')
46 // Japanese // xl('Japanese')
47 // Korean // xl('Korean')
48 // Lithuanian // xl('Lithuanian')
49 // Marathi // xl('Marathi')
50 // Norwegian // xl('Norwegian')
51 // Persian // xl('Persian')
52 // Polish // xl('Polish')
53 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
54 // Portuguese (European) // xl('Portuguese (European)')
55 // Romanian // xl('Romanian')
56 // Russian // xl('Russian')
57 // Serbian // xl('Serbian')
58 // Sinhala // xl('Sinhala')
59 // Slovak // xl('Slovak')
60 // Spanish (Latin American) // xl('Spanish (Latin American)')
61 // Spanish (Spain) // xl('Spanish (Spain)')
62 // Swedish // xl('Swedish')
63 // Turkish // xl('Turkish')
64 // Ukrainian // xl('Ukrainian')
65 // Vietnamese // xl('Vietnamese')
67 // OS-dependent stuff.
68 if (stristr(PHP_OS, 'WIN')) {
69 // MS Windows
70 $mysql_bin_dir = 'C:/xampp/mysql/bin';
71 $perl_bin_dir = 'C:/xampp/perl/bin';
72 $temporary_files_dir = 'C:/windows/temp';
73 $backup_log_dir = 'C:/windows/temp';
75 else {
76 // Everything else
77 $mysql_bin_dir = '/usr/bin';
78 $perl_bin_dir = '/usr/bin';
79 $temporary_files_dir = '/tmp';
80 $backup_log_dir = '/tmp';
83 // Language constant declarations:
84 // xl('Appearance')
85 // xl('Locale')
86 // xl('Features')
87 // xl('Calendar')
88 // xl('Security')
89 // xl('Notifications')
90 // xl('Miscellaneous')
92 // List of user specific tabs and globals
93 $USER_SPECIFIC_TABS = array('Appearance',
94 'Locale',
95 'Report',
96 'Calendar',
97 'Connectors');
98 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
99 'concurrent_layout',
100 'css_header',
101 'gbl_pt_list_page_size',
102 'gbl_pt_list_new_window',
103 'drop_bottom',
104 'units_of_measurement',
105 'us_weight_format',
106 'date_display_format',
107 'time_display_format',
108 'ledger_begin_date',
109 'print_next_appointment_on_ledger',
110 'calendar_view_type',
111 'event_color',
112 'pat_trkr_timer',
113 'checkout_roll_off',
114 'ptkr_pt_list_new_window',
115 'erx_import_status_message');
117 $GLOBALS_METADATA = array(
119 // Appearance Tab
121 'Appearance' => array(
123 'default_top_pane' => array(
124 xl('Main Top Pane Screen'), // descriptive name
125 array(
126 'main_info.php' => xl('Calendar Screen'),
127 '../new/new.php' => xl('Patient Search/Add Screen'),
128 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
130 'main_info.php', // default = calendar
131 xl('Type of screen layout')
134 'concurrent_layout' => array(
135 xl('Layout Style'), // descriptive name
136 array(
137 '0' => xl('Old style layout with no left menu'),
138 '1' => xl('Navigation menu consists of pairs of radio buttons'),
139 '2' => xl('Navigation menu is a tree view'),
140 '3' => xl('Navigation uses a sliding menu'),
142 '3', // default = tree menu
143 xl('Type of screen layout')
146 'default_encounter_view' => array(
147 xl('Default Encounter View'), // descriptive name
148 array(
149 '0' => xl('Clinical View'),
150 '1' => xl('Billing View'),
152 '0', // default = tree menu
153 xl('Choose your default encounter view')
156 'css_header' => array(
157 xl('Theme'),
158 'css',
159 'style_oemr.css',
160 xl('Pick a CSS theme.')
163 'gbl_nav_area_width' => array(
164 xl('Navigation Area Width'),
165 'num',
166 '150',
167 xl('Width in pixels of the left navigation frame.')
170 'openemr_name' => array(
171 xl('Application Title'),
172 'text',
173 'OpenEMR',
174 xl('Application name for login page and main window title.')
177 'full_new_patient_form' => array(
178 xl('New Patient Form'),
179 array(
180 '0' => xl('Old-style static form without search or duplication check'),
181 '1' => xl('All demographics fields, with search and duplication check'),
182 '2' => xl('Mandatory or specified fields only, search and dup check'),
183 '3' => xl('Mandatory or specified fields only, dup check, no search'),
185 '1', // default
186 xl('Style of form used for adding new patients')
189 'patient_search_results_style' => array(
190 xl('Patient Search Results Style'),
191 array(
192 '0' => xl('Encounter statistics'),
193 '1' => xl('Mandatory and specified fields'),
195 '0', // default
196 xl('Type of columns displayed for patient search results')
199 'gbl_tall_nav_area' => array(
200 xl('Tall Navigation Area'),
201 'bool', // data type
202 '0', // default = false
203 xl('Navigation area uses full height of frameset')
206 'gbl_nav_visit_forms' => array(
207 xl('Navigation Area Visit Forms'),
208 'bool', // data type
209 '1', // default = true
210 xl('Navigation area includes encounter forms')
213 'simplified_demographics' => array(
214 xl('Simplified Demographics'),
215 'bool', // data type
216 '0', // default = false
217 xl('Omit insurance and some other things from the demographics form')
220 'simplified_prescriptions' => array(
221 xl('Simplified Prescriptions'),
222 'bool', // data type
223 '0', // default = false
224 xl('Omit form, route and interval which then become part of dosage')
227 'simplified_copay' => array(
228 xl('Simplified Co-Pay'),
229 'bool', // data type
230 '0', // default = false
231 xl('Omit method of payment from the co-pay panel')
234 'use_charges_panel' => array(
235 xl('Use Charges Panel'),
236 'bool', // data type
237 '0', // default = false
238 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
241 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
242 'enable_fees_in_left_menu' => array(
243 xl('Enable Fees In Left Menu'),
244 'bool', // data type
245 '1', // default = true
246 xl('Enable Fees In Left Menu')
248 // EDI history 2012-09-13
249 'enable_edihistory_in_left_menu' => array(
250 xl('Enable EDI History In Left Menu'),
251 'bool', // data type
252 '1', // default = true
253 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
256 'online_support_link' => array(
257 xl('Online Support Link'),
258 'text', // data type
259 'http://open-emr.org/',
260 xl('URL for OpenEMR support.')
263 'drop_bottom' => array(
264 xl('Remove Bottom Pane'),
265 'bool', // data type
266 '0', // default = false
267 xl('Removes the bottom pane by default on start up.')
270 'encounter_page_size' => array(
271 xl('Encounter Page Size'),
272 array(
273 '0' => xl('Show All'),
274 '5' => '5',
275 '10' => '10',
276 '15' => '15',
277 '20' => '20',
278 '25' => '25',
279 '50' => '50',
281 '20',
282 xl('Number of encounters to display per page.')
285 'gbl_pt_list_page_size' => array(
286 xl('Patient List Page Size'),
287 array(
288 '10' => '10',
289 '25' => '25',
290 '50' => '50',
291 '100' => '100',
293 '10',
294 xl('Number of patients to display per page in the patient list.')
297 'gbl_pt_list_new_window' => array(
298 xl('Patient List New Window'),
299 'bool', // data type
300 '0', // default = false
301 xl('Default state of New Window checkbox in the patient list.')
304 'gbl_vitals_options' => array(
305 xl('Vitals Form Options'),
306 array(
307 '0' => xl('Standard'),
308 '1' => xl('Omit circumferences'),
310 '0', // default
311 xl('Special treatment for the Vitals form')
316 // Locale Tab
318 'Locale' => array(
320 'language_default' => array(
321 xl('Default Language'),
322 'lang', // data type
323 'English (Standard)', // default = english
324 xl('Default language if no other is allowed or chosen.')
327 'language_menu_showall' => array(
328 xl('All Languages Allowed'),
329 'bool', // data type
330 '1', // default = true
331 xl('Allow all available languages as choices on menu at login.')
334 'language_menu_other' => array(
335 xl('Allowed Languages'),
336 'm_lang', // data type
337 '', // default = none
338 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
341 'allow_debug_language' => array(
342 xl('Allow Debugging Language'),
343 'bool', // data type
344 '1', // default = true during development and false for production releases
345 xl('This will allow selection of the debugging (\'dummy\') language.')
348 'translate_layout' => array(
349 xl('Translate Layouts'),
350 'bool', // data type
351 '1', // default = true
352 xl('Is text from form layouts to be translated?')
355 'translate_lists' => array(
356 xl('Translate Lists'),
357 'bool', // data type
358 '1', // default = true
359 xl('Is text from lists to be translated?')
362 'translate_gacl_groups' => array(
363 xl('Translate Access Control Groups'),
364 'bool', // data type
365 '1', // default = true
366 xl('Are access control group names to be translated?')
369 'translate_form_titles' => array(
370 xl('Translate Patient Note Titles'),
371 'bool', // data type
372 '1', // default = true
373 xl('Are patient note titles to be translated?')
376 'translate_document_categories' => array(
377 xl('Translate Document Categories'),
378 'bool', // data type
379 '1', // default = true
380 xl('Are document category names to be translated?')
383 'translate_appt_categories' => array(
384 xl('Translate Appointment Categories'),
385 'bool', // data type
386 '1', // default = true
387 xl('Are appointment category names to be translated?')
390 'units_of_measurement' => array(
391 xl('Units for Visit Forms'),
392 array(
393 '1' => xl('Show both US and metric (main unit is US)'),
394 '2' => xl('Show both US and metric (main unit is metric)'),
395 '3' => xl('Show US only'),
396 '4' => xl('Show metric only'),
398 '1', // default = Both/US
399 xl('Applies to the Vitals form and Growth Chart')
402 'us_weight_format' => array(
403 xl('Display Format for US Weights'),
404 array(
405 '1'=>xl('Show pounds as decimal value'),
406 '2'=>xl('Show pounds and ounces')
408 '1',
409 xl('Applies to Vitals form')
412 'disable_deprecated_metrics_form' => array(
413 xl('Disable Old Metric Vitals Form'),
414 'bool', // data type
415 '1', // default = true
416 xl('This was the older metric-only Vitals form, now deprecated.')
419 'phone_country_code' => array(
420 xl('Telephone Country Code'),
421 'num',
422 '1', // default = North America
423 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
426 'date_display_format' => array(
427 xl('Date Display Format'),
428 array(
429 '0' => xl('YYYY-MM-DD'),
430 '1' => xl('MM/DD/YYYY'),
431 '2' => xl('DD/MM/YYYY'),
433 '0',
434 xl('Format used to display most dates.')
437 'time_display_format' => array(
438 xl('Time Display Format'),
439 array(
440 '0' => xl('24 hr'),
441 '1' => xl('12 hr'),
443 '0',
444 xl('Format used to display most times.')
447 'currency_decimals' => array(
448 xl('Currency Decimal Places'),
449 array(
450 '0' => xl('0'),
451 '1' => xl('1'),
452 '2' => xl('2'),
454 '2',
455 xl('Number of digits after decimal point for currency, usually 0 or 2.')
458 'currency_dec_point' => array(
459 xl('Currency Decimal Point Symbol'),
460 array(
461 '.' => xl('Period'),
462 ',' => xl('Comma'),
464 '.',
465 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
468 'currency_thousands_sep' => array(
469 xl('Currency Thousands Separator'),
470 array(
471 ',' => xl('Comma'),
472 '.' => xl('Period'),
473 ' ' => xl('Space'),
474 '' => xl('None'),
476 ',',
477 xl('Symbol used to separate thousands for currency.')
480 'gbl_currency_symbol' => array(
481 xl('Currency Designator'),
482 'text', // data type
483 '$', // default
484 xl('Code or symbol to indicate currency')
486 'age_display_format'=>array(xl('Age Display Format'),
487 array(
488 '0'=>xl('Years or months'),
489 '1'=>xl('Years, months and days')
491 '0',
492 xl('Format for age display')
494 'age_display_limit' => array(
495 xl('Age in Years for Display Format Change'),
496 'num',
497 '3',
498 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
502 // Features Tab
504 'Features' => array(
506 'specific_application' => array(
507 xl('Specific Application'),
508 array(
509 '0' => xl('None'),
510 '1' => xl('Athletic team'),
511 '2' => xl('IPPF'),
512 '3' => xl('Weight loss clinic'),
514 '0', // default
515 xl('Indicator for specialized usage')
518 'inhouse_pharmacy' => array(
519 xl('Drugs and Products'),
520 array(
521 '0' => xl('Do not inventory and sell any products'),
522 '1' => xl('Inventory and sell drugs only'),
523 '2' => xl('Inventory and sell both drugs and non-drug products'),
524 '3' => xl('Products but no prescription drugs and no templates'),
526 '0', // default
527 xl('Option to support inventory and sales of products')
530 'disable_chart_tracker' => array(
531 xl('Disable Chart Tracker'),
532 'bool', // data type
533 '0', // default = false
534 xl('Removes the Chart Tracker feature')
537 'disable_phpmyadmin_link' => array(
538 xl('Disable phpMyAdmin'),
539 'bool', // data type
540 '0', // default = false
541 xl('Removes support for phpMyAdmin')
544 'disable_immunizations' => array(
545 xl('Disable Immunizations'),
546 'bool', // data type
547 '0', // default = false
548 xl('Removes support for immunizations')
551 'disable_prescriptions' => array(
552 xl('Disable Prescriptions'),
553 'bool', // data type
554 '0', // default = false
555 xl('Removes support for prescriptions')
558 'omit_employers' => array(
559 xl('Omit Employers'),
560 'bool', // data type
561 '0', // default = false
562 xl('Omit employer information in patient demographics')
565 'select_multi_providers' => array(
566 xl('Support Multi-Provider Events'),
567 'bool', // data type
568 '0', // default = false
569 xl('Support calendar events that apply to multiple providers')
572 'disable_non_default_groups' => array(
573 xl('Disable User Groups'),
574 'bool', // data type
575 '1', // default = true
576 xl('Normally this should be checked. Not related to access control.')
579 'ignore_pnotes_authorization' => array(
580 xl('Skip Authorization of Patient Notes'),
581 'bool', // data type
582 '1', // default = true
583 xl('Do not require patient notes to be authorized')
586 'support_encounter_claims' => array(
587 xl('Allow Encounter Claims'),
588 'bool', // data type
589 '0', // default = false
590 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
593 'advance_directives_warning' => array(
594 xl('Advance Directives Warning'),
595 'bool', // data type
596 '0', // default = false
597 xl('Display advance directives in the demographics page.')
600 'configuration_import_export' => array(
601 xl('Configuration Export/Import'),
602 'bool', // data type
603 '0', // default = false
604 xl('Support export/import of configuration data via the Backup page.')
607 'restrict_user_facility' => array(
608 xl('Restrict Users to Facilities'),
609 'bool', // data type
610 '0', // default
611 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
614 'set_facility_cookie' => array(
615 xl('Remember Selected Facility'),
616 'bool', // data type
617 '0', // default
618 xl('Set a facility cookie to remember the selected facility between logins.')
621 'receipts_by_provider' => array(
622 xl('Print Receipts by Provider'),
623 'bool',
624 '0', // default
625 xl('Causes Receipts to Print Encounter/Primary Provider Info')
628 'discount_by_money' => array(
629 xl('Discounts as Monetary Amounts'),
630 'bool', // data type
631 '1', // default = true
632 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
635 'gbl_visit_referral_source' => array(
636 xl('Referral Source for Encounters'),
637 'bool', // data type
638 '0', // default = false
639 xl('A referral source may be specified for each visit.')
642 'gbl_mask_patient_id' => array(
643 xl('Mask for Patient IDs'),
644 'text', // data type
645 '', // default
646 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
649 'gbl_mask_invoice_number' => array(
650 xl('Mask for Invoice Numbers'),
651 'text', // data type
652 '', // default
653 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
656 'gbl_mask_product_id' => array(
657 xl('Mask for Product IDs'),
658 'text', // data type
659 '', // default
660 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
663 'force_billing_widget_open' => array(
664 xl('Force Billing Widget Open'),
665 'bool', // data type
666 '0', // default = false
667 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
670 'num_past_appointments_to_show' => array(
671 xl('Past Appointment Display Widget'),
672 'num', // data type
673 '0', // default = false
674 xl('A positive number will show that many past appointments on a Widget in the Patient Summary screen (a negative number will show the past appointments in descending order)')
677 'activate_ccr_ccd_report' => array(
678 xl('Activate CCR/CCD Reporting'),
679 'bool', // data type
680 '1', // default = true
681 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
684 'hide_document_encryption' => array(
685 xl('Hide Encryption/Decryption Options In Document Management'),
686 'bool', // data type
687 '1', // default = true
688 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
691 'use_custom_immun_list' => array(
692 xl('Use Custom Immunization List'),
693 'bool', // data type
694 '0', // default = true
695 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
698 'cms_1500' => array(
699 xl('CMS 1500 Paper Form Format'),
700 array(
701 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
702 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
704 '1', // default
705 xl('This specifies which revision of the form the billing module should generate')
708 'cms_1500_box_31_format' => array(
709 xl('CMS 1500: Box 31 Format'),
710 array(
711 '0' => xl('Signature on File'),
712 '1' => xl('Firstname Lastname'),
713 '2' => xl('None'),
715 '0', // default
716 xl('This specifies whether to include date in Box 31.')
719 'cms_1500_box_31_date' => array(
720 xl('CMS 1500: Date in Box 31 (Signature)'),
721 array(
722 '0' => xl('None'),
723 '1' => xl('Date of Service'),
724 '2' => xl('Today'),
726 '0', // default
727 xl('This specifies whether to include date in Box 31.')
730 'amendments' => array (
731 xl('Amendments'),
732 'bool', // data type
733 '1', // default = true
734 xl('Enable amendments feature')
737 'default_search_code_type' => array(
738 xl('Default Search Code Type'),
739 'all_code_types', // data type
740 'ICD10', // default
741 xl('The default code type to search for in the Fee Sheet.')
745 // Report Tab
747 'Report' => array(
749 'use_custom_daysheet' => array(
750 xl('Use Custom End of Day Report'),
751 array(
752 '0' => xl('None'),
753 '1' => xl('Print End of Day Report 1'),
754 '2' => xl('Print End of Day Report 2'),
755 '3' => xl('Print End of Day Report 3'),
756 ), // data type
757 '1', // default = Print End of Day Report 1
758 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
761 'daysheet_provider_totals' => array(
762 xl('End of Day by Provider or allow Totals Only'),
763 array(
764 '0' => xl('Provider'),
765 '1' => xl('Totals Only'),
767 '1', // default
768 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
771 'ledger_begin_date' => array(
772 xl('Beginning Date for Ledger Report'),
773 array(
774 'Y1' => xl('One Year Ago'),
775 'Y2' => xl('Two Years Ago'),
776 'M6' => xl('Six Months Ago'),
777 'M3' => xl('Three Months Ago'),
778 'M1' => xl('One Month Ago'),
779 'D1' => xl('One Day Ago'),
781 'Y1', // default = One Year
782 xl('This is the Beginning date for the Ledger Report.')
785 'print_next_appointment_on_ledger' => array(
786 xl('Print the Next Appointment on the Bottom of the Ledger'),
787 'bool', // data type
788 '1', // default = true
789 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
792 'sales_report_invoice' => array(
793 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
794 array(
795 '0' => xl('Invoice Number'),
796 '1' => xl('Patient Name and ID'),
797 '2' => xl('Patient Name and Invoice'),
799 '2', // default = 2
800 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
804 // Billing Tab
806 'Billing' => array(
808 'support_fee_sheet_line_item_provider' => array(
809 xl('Support provider in line item in fee sheet'),
810 'bool', // data type
811 '0', // default = false
812 xl('This Enables provider in line item in the fee sheet')
815 'default_fee_sheet_line_item_provider' => array(
816 xl('Default to a provider for line item in the fee sheet'),
817 'bool', // data type
818 '0', // default = false
819 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
823 // E-Sign Tab
825 'E-Sign' => array(
827 'esign_all' => array(
828 xl('Allows E-Sign on the entire encounter'),
829 'bool', // data type
830 '0', // default = false
831 xl('This will enable signing an entire encounter, rather than individual forms')
834 'lock_esign_all' => array(
835 xl('Lock e-signed encounters and their forms'),
836 'bool', // data type
837 '0', // default = false
838 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
841 'esign_individual' => array(
842 xl('Allows E-Signing Individual Forms'),
843 'bool', // data type
844 '1', // default = false
845 xl('This will enable signing individual forms separately')
848 'lock_esign_individual' => array(
849 xl('Lock an e-signed form individually'),
850 'bool', // data type
851 '1', // default = false
852 xl('This will disable the Edit button on any form that is e-signed')
855 'esign_lock_toggle' => array(
856 xl('Enable lock toggle'),
857 'bool', // data type
858 '0', // default = false
859 xl('This will give the user the option to lock (separate locking and signing)')
862 'esign_report_hide_empty_sig' => array(
863 xl('Hide Empty E-Sign Logs On Report'),
864 'bool', // data type
865 '1', // default = false
866 xl('This will hide empty e-sign logs on the patient report')
870 //Documents Tab
871 'Documents' => array(
872 'document_storage_method' => array(
873 xl('Document Storage Method'),
874 array(
875 '0' => xl('Hard Disk'),
876 '1' => xl('CouchDB')
878 '0', // default
879 xl('Option to save method of document storage.')
881 'couchdb_host' => array(
882 xl('CouchDB HostName'),
883 'text',
884 'localhost',
885 xl('CouchDB host'),
887 'couchdb_user' => array(
888 xl('CouchDB UserName'),
889 'text',
891 xl('Username to connect to CouchDB'),
893 'couchdb_pass' => array(
894 xl('CouchDB Password'),
895 'text',
897 xl('Password to connect to CouchDB'),
899 'couchdb_port' => array(
900 xl('CouchDB Port'),
901 'text',
902 '5984',
903 xl('CouchDB port'),
905 'couchdb_dbase' => array(
906 xl('CouchDB Database'),
907 'text',
909 xl('CouchDB database name'),
911 'couchdb_log' => array(
912 xl('CouchDB Log Enable'),
913 'bool',
914 '0',
915 xl('Enable log for document uploads/downloads to CouchDB'),
918 'patient_id_category_name' => array(
919 xl('Patient ID Category Name'),
920 'text', // data type
921 'Patient ID card', // default
922 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
925 'patient_photo_category_name' => array(
926 xl('Patient Photo Category Name'),
927 'text', // data type
928 'Patient Photograph', // default
929 xl('Optional category name for photo images that can be viewed from the patient summary page.')
932 'lab_results_category_name' => array(
933 xl('Lab Results Category Name'),
934 'text', // data type
935 'Lab Report', // default
936 xl('Document category name for storage of electronically received lab results.')
939 'gbl_mdm_category_name' => array(
940 xl('MDM Document Category Name'),
941 'text', // data type
942 'Lab Report', // default
943 xl('Document category name for storage of electronically received MDM documents.')
948 // Calendar Tab
950 'Calendar' => array(
952 'disable_calendar' => array(
953 xl('Disable Calendar'),
954 'bool', // data type
955 '0', // default
956 xl('Do not display the calendar.')
959 'schedule_start' => array(
960 xl('Calendar Starting Hour'),
961 'hour',
962 '8', // default
963 xl('Beginning hour of day for calendar events.')
966 'schedule_end' => array(
967 xl('Calendar Ending Hour'),
968 'hour',
969 '17', // default
970 xl('Ending hour of day for calendar events.')
973 'calendar_interval' => array(
974 xl('Calendar Interval'),
975 array(
976 '5' => '5',
977 '10' => '10',
978 '15' => '15',
979 '20' => '20',
980 '30' => '30',
981 '60' => '60',
983 '15', // default
984 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
987 'calendar_view_type' => array(
988 xl('Default Calendar View'),
989 array(
990 'day' => xl('Day'),
991 'week' => xl('Week'),
992 'month' => xl('Month'),
994 'day', // default
995 xl('This sets the Default Calendar View, Default is Day.')
998 'calendar_appt_style' => array(
999 xl('Appointment Display Style'),
1000 array(
1001 '1' => 'Last name',
1002 '2' => 'Last name, first name',
1003 '3' => 'Last name, first name (title)',
1004 '4' => 'Last name, first name (title: description)',
1006 '2', // default
1007 xl('This determines how appointments display on the calendar.')
1010 'docs_see_entire_calendar' => array(
1011 xl('Providers See Entire Calendar'),
1012 'bool', // data type
1013 '0', // default
1014 xl('Check this if you want providers to see all appointments by default and not just their own.')
1017 'auto_create_new_encounters' => array(
1018 xl('Auto-Create New Encounters'),
1019 'bool', // data type
1020 '1', // default
1021 xl('Automatically create a new encounter when an appointment check in status is selected.')
1024 'event_color' => array(
1025 xl('Appointment/Event Color'),
1026 array(
1027 '1' => 'Category Color Schema',
1028 '2' => 'Facility Color Schema',
1029 ), // data type
1030 '1', // default
1031 xl('This determines which color schema used for appointment')
1034 'disable_pat_trkr' => array(
1035 xl('Disable Patient Flow Board'),
1036 'bool', // data type
1037 '0', // default
1038 xl('Do not display the patient flow board.')
1041 'ptkr_pt_list_new_window' => array(
1042 xl('Open Demographics in New Window from Patient Flow Board'),
1043 'bool', // data type
1044 '0', // default = false
1045 xl('When Checked, Demographics Will Open in New Window from Patient Flow Board.')
1048 'pat_trkr_timer' => array(
1049 xl('Patient Flow Board Timer Interval'),
1050 array(
1051 '0' => 'No automatic refresh',
1052 '0:10' => '10',
1053 '0:20' => '20',
1054 '0:30' => '30',
1055 '0:40' => '40',
1056 '0:50' => '50',
1057 '0:59' => '60',
1059 '0:20', // default
1060 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1063 'checkout_roll_off' => array(
1064 xl('Number of Minutes to display completed checkouts'),
1065 'num',
1066 '0', // default
1067 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1070 'drug_screen' => array(
1071 xl('Enable Random Drug Testing'),
1072 'bool', // data type
1073 '0', // default
1074 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1077 'drug_testing_percentage' => array(
1078 xl('Percentage of Patients to Drug Test'),
1079 'num',
1080 '33', // default
1081 xl('Percentage of Patients to select for Random Drug Testing.')
1084 'maximum_drug_test_yearly' => array(
1085 xl('Maximum number of times a Patient can be tested in a year'),
1086 'num',
1087 '0', // default
1088 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1093 // Security Tab
1095 'Security' => array(
1097 'timeout' => array(
1098 xl('Idle Session Timeout Seconds'),
1099 'num', // data type
1100 '7200', // default
1101 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1104 'secure_password' => array(
1105 xl('Require Strong Passwords'),
1106 'bool', // data type
1107 '0', // default
1108 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1111 'password_history' => array(
1112 xl('Require Unique Passwords'),
1113 'bool', // data type
1114 '0', // default
1115 xl('Means none of last three passwords are allowed when changing a password.')
1117 'password_compatibility' => array(
1118 xl('Permit unsalted passwords'),
1119 'bool', // data type
1120 '1', // default
1121 xl('After migration from the old password mechanisms where passwords are stored in the users table without salt is complete, this flag should be set to false so that only authentication by the new method is possible')
1124 'password_expiration_days' => array(
1125 xl('Default Password Expiration Days'),
1126 'num', // data type
1127 '0', // default
1128 xl('Default password expiration period in days. 0 means this feature is disabled.')
1131 'password_grace_time' => array(
1132 xl('Password Expiration Grace Period'),
1133 'num', // data type
1134 '0', // default
1135 xl('Period in days where a user may login with an expired password.')
1138 'is_client_ssl_enabled' => array(
1139 xl('Enable Client SSL'),
1140 'bool', // data type
1141 '0', // default
1142 xl('Enable client SSL certificate authentication.')
1145 'certificate_authority_crt' => array(
1146 xl('Path to CA Certificate File'),
1147 'text', // data type
1148 '', // default
1149 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1152 'certificate_authority_key' => array(
1153 xl('Path to CA Key File'),
1154 'text', // data type
1155 '', // default
1156 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1159 'client_certificate_valid_in_days' => array(
1160 xl('Client Certificate Expiration Days'),
1161 'num', // data type
1162 '365', // default
1163 xl('Number of days that the client certificate is valid.')
1166 'Emergency_Login_email_id' => array(
1167 xl('Emergency Login Email Address'),
1168 'text', // data type
1169 '', // default
1170 xl('Email address, if any, to receive emergency login user activation messages.')
1175 // Notifications Tab
1177 'Notifications' => array(
1179 'patient_reminder_sender_name' => array(
1180 xl('Patient Reminder Sender Name'),
1181 'text', // data type
1182 '', // default
1183 xl('Name of the sender for patient reminders.')
1186 'patient_reminder_sender_email' => array(
1187 xl('Patient Reminder Sender Email'),
1188 'text', // data type
1189 '', // default
1190 xl('Email address of the sender for patient reminders. Replies to patient reminders will be directed to this address. It is important to use an address from your clinic\'s domain to avoid help prevent patient reminders from going to junk mail folders.')
1193 'practice_return_email_path' => array(
1194 xl('Notification Email Address'),
1195 'text', // data type
1196 '', // default
1197 xl('Email address, if any, to receive administrative notifications.')
1200 'EMAIL_METHOD' => array(
1201 xl('Email Transport Method'),
1202 array(
1203 'PHPMAIL' => 'PHPMAIL',
1204 'SENDMAIL' => 'SENDMAIL',
1205 'SMTP' => 'SMTP',
1207 'SMTP', // default
1208 xl('Method for sending outgoing email.')
1211 'SMTP_HOST' => array(
1212 xl('SMTP Server Hostname'),
1213 'text', // data type
1214 'localhost', // default
1215 xl('If SMTP is used, the server`s hostname or IP address.')
1218 'SMTP_PORT' => array(
1219 xl('SMTP Server Port Number'),
1220 'num', // data type
1221 '25', // default
1222 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1225 'SMTP_USER' => array(
1226 xl('SMTP User for Authentication'),
1227 'text', // data type
1228 '', // default
1229 xl('Must be empty if SMTP authentication is not used.')
1232 'SMTP_PASS' => array(
1233 xl('SMTP Password for Authentication'),
1234 'text', // data type
1235 '', // default
1236 xl('Must be empty if SMTP authentication is not used.')
1239 'SMTP_SECURE' => array(
1240 xl('SMTP Security Protocol'),
1241 array(
1242 '' => xl('None'),
1243 'ssl' => 'SSL',
1244 'tls' => 'TLS'
1247 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1250 'EMAIL_NOTIFICATION_HOUR' => array(
1251 xl('Email Notification Hours'),
1252 'num', // data type
1253 '50', // default
1254 xl('Number of hours in advance to send email notifications.')
1257 'SMS_NOTIFICATION_HOUR' => array(
1258 xl('SMS Notification Hours'),
1259 'num', // data type
1260 '50', // default
1261 xl('Number of hours in advance to send SMS notifications.')
1264 'SMS_GATEWAY_USENAME' => array(
1265 xl('SMS Gateway Username'),
1266 'text', // data type
1267 '', // default
1268 xl('Username for SMS Gateway.')
1271 'SMS_GATEWAY_PASSWORD' => array(
1272 xl('SMS Gateway Password'),
1273 'text', // data type
1274 '', // default
1275 xl('Password for SMS Gateway.')
1278 'SMS_GATEWAY_APIKEY' => array(
1279 xl('SMS Gateway API Key'),
1280 'text', // data type
1281 '', // default
1282 xl('API key for SMS Gateway.')
1285 'phone_notification_hour' => array(
1286 xl('Phone Notification Hour'),
1287 'num', // data type
1288 '50', // default
1289 xl('Number of hours in advance to send Phone notification.')
1292 'phone_gateway_username' => array(
1293 xl('Phone Gateway Username'),
1294 'text', // data type
1295 '', // default
1296 xl('Username for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
1299 'phone_gateway_password' => array(
1300 xl('Phone Gateway Password'),
1301 'text', // data type
1302 '', // default
1303 xl('Password for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
1306 'phone_gateway_url' => array(
1307 xl('Phone Gateway URL'),
1308 'text', // data type
1309 '', // default
1310 xl('URL for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
1315 // CDR (Clinical Decision Rules)
1317 'CDR' => array(
1319 'enable_cdr' => array(
1320 xl('Enable Clinical Decisions Rules (CDR)'),
1321 'bool', // data type
1322 '1', // default
1323 xl('Enable Clinical Decisions Rules (CDR)')
1326 'enable_cdr_crw' => array(
1327 xl('Enable Clinical Reminder Widget'),
1328 'bool', // data type
1329 '1', // default
1330 xl('Enable Clinical Reminder Widget')
1333 'enable_cdr_crp' => array(
1334 xl('Enable Clinical Reminder Popup'),
1335 'bool', // data type
1336 '1', // default
1337 xl('Enable Clinical Reminder Popup')
1340 'enable_cdr_prw' => array(
1341 xl('Enable Patient Reminder Widget'),
1342 'bool', // data type
1343 '1', // default
1344 xl('Enable Patient Reminder Widget')
1347 'enable_cqm' => array(
1348 xl('Enable CQM Reporting'),
1349 'bool', // data type
1350 '1', // default
1351 xl('Enable Clinical Quality Measure (CQM) Reporting')
1354 'pqri_registry_name' => array(
1355 xl('PQRI Registry Name'),
1356 'text', // data type
1357 'Model Registry', // default
1358 xl('PQRI Registry Name')
1361 'pqri_registry_id' => array(
1362 xl('PQRI Registry ID'),
1363 'text', // data type
1364 '125789123', // default
1365 xl('PQRI Registry ID')
1368 'enable_amc' => array(
1369 xl('Enable AMC Reporting'),
1370 'bool', // data type
1371 '1', // default
1372 xl('Enable Automated Measure Calculations (AMC) Reporting')
1375 'enable_amc_prompting' => array(
1376 xl('Enable AMC Prompting'),
1377 'bool', // data type
1378 '1', // default
1379 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1382 'enable_amc_tracking' => array(
1383 xl('Enable AMC Tracking'),
1384 'bool', // data type
1385 '1', // default
1386 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
1389 'cdr_report_nice' => array(
1390 xl('CDR Reports Processing Priority'),
1391 array(
1392 '' => xl('Default Priority'),
1393 '5' => xl('Moderate Priority'),
1394 '10' => xl('Moderate/Low Priority'),
1395 '15' => xl('Low Priority'),
1396 '20' => xl('Lowest Priority')
1398 '', // default
1399 xl('Set processing priority for CDR engine based reports.')
1402 'pat_rem_clin_nice' => array(
1403 xl('Patient Reminder Creation Processing Priority'),
1404 array(
1405 '' => xl('Default Priority'),
1406 '5' => xl('Moderate Priority'),
1407 '10' => xl('Moderate/Low Priority'),
1408 '15' => xl('Low Priority'),
1409 '20' => xl('Lowest Priority')
1411 '', // default
1412 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
1415 'report_itemizing_standard' => array(
1416 xl('Enable Standard Report Itemization'),
1417 'bool', // data type
1418 '1', // default
1419 xl('Enable Itemization of Standard Clinical Rules Reports')
1422 'report_itemizing_cqm' => array(
1423 xl('Enable CQM Report Itemization'),
1424 'bool', // data type
1425 '1', // default
1426 xl('Enable Itemization of CQM Reports')
1429 'report_itemizing_amc' => array(
1430 xl('Enable AMC Report Itemization'),
1431 'bool', // data type
1432 '1', // default
1433 xl('Enable Itemization of AMC Reports')
1438 // Logging
1440 'Logging' => array(
1442 'enable_auditlog' => array(
1443 xl('Enable Audit Logging'),
1444 'bool', // data type
1445 '1', // default
1446 xl('Enable Audit Logging')
1449 'audit_events_patient-record' => array(
1450 xl('Audit Logging Patient Record'),
1451 'bool', // data type
1452 '1', // default
1453 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1456 'audit_events_scheduling' => array(
1457 xl('Audit Logging Scheduling'),
1458 'bool', // data type
1459 '1', // default
1460 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1463 'audit_events_order' => array(
1464 xl('Audit Logging Order'),
1465 'bool', // data type
1466 '1', // default
1467 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1470 'audit_events_security-administration' => array(
1471 xl('Audit Logging Security Administration'),
1472 'bool', // data type
1473 '1', // default
1474 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1477 'audit_events_backup' => array(
1478 xl('Audit Logging Backups'),
1479 'bool', // data type
1480 '1', // default
1481 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1484 'audit_events_other' => array(
1485 xl('Audit Logging Miscellaneous'),
1486 'bool', // data type
1487 '1', // default
1488 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1491 'audit_events_query' => array(
1492 xl('Audit Logging SELECT Query'),
1493 'bool', // data type
1494 '0', // default
1495 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1498 'audit_events_cdr' => array(
1499 xl('Audit CDR Engine Queries'),
1500 'bool', // data type
1501 '0', // default
1502 xl('Enable logging of CDR Engine Queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1505 'enable_atna_audit' => array(
1506 xl('Enable ATNA Auditing'),
1507 'bool', // data type
1508 '0', // default
1509 xl('Enable Audit Trail and Node Authentication (ATNA).')
1512 'atna_audit_host' => array(
1513 xl('ATNA audit host'),
1514 'text', // data type
1515 '', // default
1516 xl('The hostname of the ATNA audit repository machine.')
1519 'atna_audit_port' => array(
1520 xl('ATNA audit port'),
1521 'text', // data type
1522 '6514', // default
1523 xl('Listening port of the RFC 5425 TLS syslog server.')
1526 'atna_audit_localcert' => array(
1527 xl('ATNA audit local certificate'),
1528 'text', // data type
1529 '', // default
1530 xl('Certificate to send to RFC 5425 TLS syslog server.')
1533 'atna_audit_cacert' => array(
1534 xl('ATNA audit CA certificate'),
1535 'text', // data type
1536 '', // default
1537 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
1540 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
1541 'enable_auditlog_encryption' => array(
1542 xl('Enable Audit Log Encryption'),
1543 'bool', // data type
1544 '0', // default
1545 xl('Enable Audit Log Encryption')
1548 'billing_log_option' => array(
1549 xl('Billing Log Option'),
1550 array(
1551 '1' => xl('Billing Log Append'),
1552 '2' => xl('Billing Log Overwrite')
1554 '1', // default
1555 xl('Billing log setting to append or overwrite the log file.')
1558 'gbl_print_log_option' => array(
1559 xl('Printing Log Option'),
1560 array(
1561 '0' => xl('No logging'),
1562 '1' => xl('Hide print feature'),
1563 '2' => xl('Log entire document'),
1565 '0', // default
1566 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
1571 // Miscellaneous Tab
1573 'Miscellaneous' => array(
1575 'mysql_bin_dir' => array(
1576 xl('Path to MySQL Binaries'),
1577 'text', // data type
1578 $mysql_bin_dir, // default
1579 xl('Full path to directory containing MySQL executables.')
1582 'perl_bin_dir' => array(
1583 xl('Path to Perl Binaries'),
1584 'text', // data type
1585 $perl_bin_dir, // default
1586 xl('Full path to directory containing Perl executables.')
1589 'temporary_files_dir' => array(
1590 xl('Path to Temporary Files'),
1591 'text', // data type
1592 $temporary_files_dir, // default
1593 xl('Full path to directory used for temporary files.')
1596 'backup_log_dir' => array(
1597 xl('Path for Event Log Backup'),
1598 'text', // data type
1599 $backup_log_dir, // default
1600 xl('Full path to directory for event log backup.')
1603 'state_data_type' => array(
1604 xl('State Data Type'),
1605 array(
1606 '2' => xl('Text field'),
1607 '1' => xl('Single-selection list'),
1608 '26' => xl('Single-selection list with ability to add to the list'),
1610 '26', // default
1611 xl('Field type to use for employer or subscriber state in demographics.')
1614 'state_list' => array(
1615 xl('State list'),
1616 'text', // data type
1617 'state', // default
1618 xl('List used by above State Data Type option.')
1621 'state_custom_addlist_widget' => array(
1622 xl('State List Widget Custom Fields'),
1623 'bool', // data type
1624 '1', // default
1625 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
1628 'country_data_type' => array(
1629 xl('Country Data Type'),
1630 array(
1631 '2' => xl('Text field'),
1632 '1' => xl('Single-selection list'),
1633 '26' => xl('Single-selection list with ability to add to the list'),
1635 '26', // default
1636 xl('Field type to use for employer or subscriber country in demographics.')
1639 'country_list' => array(
1640 xl('Country list'),
1641 'text', // data type
1642 'country', // default
1643 xl('List used by above Country Data Type option.')
1646 'print_command' => array(
1647 xl('Print Command'),
1648 'text', // data type
1649 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
1650 xl('Shell command for printing from the server.')
1653 'default_chief_complaint' => array(
1654 xl('Default Reason for Visit'),
1655 'text', // data type
1657 xl('You may put text here as the default complaint in the New Patient Encounter form.')
1660 'default_new_encounter_form' => array(
1661 xl('Default Encounter Form ID'),
1662 'text', // data type
1664 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
1667 'MedicareReferrerIsRenderer' => array(
1668 xl('Medicare Referrer Is Renderer'),
1669 'bool', // data type
1670 '0', // default = true
1671 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
1674 'post_to_date_benchmark' => array(
1675 xl('Financial Close Date (yyyy-mm-dd)'),
1676 'text', // data type
1677 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
1678 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
1681 'enable_hylafax' => array(
1682 xl('Enable Hylafax Support'),
1683 'bool', // data type
1684 '0', // default
1685 xl('Enable Hylafax Support')
1688 'hylafax_server' => array(
1689 xl('Hylafax Server'),
1690 'text', // data type
1691 'localhost', // default
1692 xl('Hylafax server hostname.')
1695 'hylafax_basedir' => array(
1696 xl('Hylafax Directory'),
1697 'text', // data type
1698 '/var/spool/fax', // default
1699 xl('Location where Hylafax stores faxes.')
1702 'hylafax_enscript' => array(
1703 xl('Hylafax Enscript Command'),
1704 'text', // data type
1705 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
1706 xl('Enscript command used by Hylafax.')
1709 'enable_scanner' => array(
1710 xl('Enable Scanner Support'),
1711 'bool', // data type
1712 '0', // default
1713 xl('Enable Scanner Support')
1716 'scanner_output_directory' => array(
1717 xl('Scanner Directory'),
1718 'text', // data type
1719 '/mnt/scan_docs', // default
1720 xl('Location where scans are stored.')
1724 // Portal Tab
1726 'Portal' => array(
1728 'portal_onsite_enable' => array(
1729 xl('Enable Onsite Patient Portal'),
1730 'bool', // data type
1731 '0',
1732 xl('Enable Onsite Patient Portal.')
1735 'portal_onsite_address' => array(
1736 xl('Onsite Patient Portal Site Address'),
1737 'text', // data type
1738 'https://your_web_site.com/openemr/patients',
1739 xl('Website link for the Onsite Patient Portal.')
1742 'portal_onsite_document_download' => array(
1743 xl('Enable Onsite Patient Portal Document Download'),
1744 'bool', // data type
1745 '1',
1746 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
1749 'portal_offsite_enable' => array(
1750 xl('Enable Offsite Patient Portal'),
1751 'bool', // data type
1752 '0',
1753 xl('Enable Offsite Patient Portal.')
1756 'portal_offsite_providerid' => array(
1757 xl('Offsite Patient Portal Provider ID'),
1758 'text', // data type
1760 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
1763 'portal_offsite_username' => array(
1764 xl('Offsite Patient Portal Username'),
1765 'text', // data type
1767 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
1770 'portal_offsite_password' => array(
1771 xl('Offsite Patient Portal Password'),
1772 'pwd', // data type
1774 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
1777 'portal_offsite_address' => array(
1778 xl('Offsite Patient Portal Site Address'),
1779 'text', // data type
1780 'https://ssh.mydocsportal.com/provider.php',
1781 xl('Offsite Https link for the Patient Portal.')
1784 'portal_offsite_address_patient_link' => array(
1785 xl('Offsite Patient Portal Site Address (Patient Link)'),
1786 'text', // data type
1787 'https://ssh.mydocsportal.com',
1788 xl('Offsite Https link for the Patient Portal.(Patient Link)')
1791 // Currently the "CMS Portal" supports WordPress. Other Content Management
1792 // Systems may be supported in the future.
1794 'gbl_portal_cms_enable' => array(
1795 xl('Enable CMS Portal'),
1796 'bool', // data type
1797 '0',
1798 xl('Enable support for the open source WordPress Portal by Sunset Systems')
1801 'gbl_portal_cms_address' => array(
1802 xl('CMS Portal Site Address'),
1803 'text', // data type
1804 'https://your_cms_site.com/',
1805 xl('URL for the WordPress site that supports the portal')
1808 'gbl_portal_cms_username' => array(
1809 xl('CMS Portal Username'),
1810 'text', // data type
1812 xl('Login name of WordPress user for portal access')
1815 'gbl_portal_cms_password' => array(
1816 xl('CMS Portal Password'),
1817 'text', // data type
1819 xl('Password for the above user')
1824 // Connectors Tab
1826 'Connectors' => array(
1828 'lab_exchange_enable' => array(
1829 xl('Enable Lab Exchange'),
1830 'bool', // data type
1831 '0',
1832 xl('Enable the Medical Information Integration, LLC Lab Exchange Service.')
1835 'lab_exchange_siteid' => array(
1836 xl('Lab Exchange Site ID'),
1837 'text', // data type
1838 '3',
1839 xl('Site ID for the Medical Information Integration, LLC Lab Exchange Service.')
1842 'lab_exchange_token' => array(
1843 xl('Lab Exchange Token ID'),
1844 'text', // data type
1845 '12345',
1846 xl('Token ID for the Medical Information Integration, LLC Lab Exchange Service.')
1849 'lab_exchange_endpoint' => array(
1850 xl('Lab Exchange Site Address'),
1851 'text', // data type
1852 'https://len.mi-squared.com:29443/len/api',
1853 xl('Contact Medical Information Integration, LLC at http://mi-squared.com for Lab Exchange Service.')
1856 'erx_enable' => array(
1857 xl('Enable NewCrop eRx Service'),
1858 'bool',
1859 '0',
1860 xl('Enable NewCrop eRx Service.') + ' ' +
1861 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing to the NewCrop eRx service.')
1864 'erx_newcrop_path' => array(
1865 xl('NewCrop eRx Site Address'),
1866 'text',
1867 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
1868 xl('URL for NewCrop eRx Site Address.')
1871 'erx_newcrop_path_soap' => array(
1872 xl('NewCrop eRx Web Service Address'),
1873 'text',
1874 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
1875 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
1878 'erx_soap_ttl_allergies' => array(
1879 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
1880 'num',
1881 '21600',
1882 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
1885 'erx_soap_ttl_medications' => array(
1886 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
1887 'num',
1888 '21600',
1889 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
1892 'erx_account_partner_name' => array(
1893 xl('NewCrop eRx Partner Name'),
1894 'text',
1896 xl('Partner Name issued for NewCrop eRx service.')
1899 'erx_account_name' => array(
1900 xl('NewCrop eRx Name'),
1901 'text',
1903 xl('Account Name issued for NewCrop eRx service.')
1906 'erx_account_password' => array(
1907 xl('NewCrop eRx Password'),
1908 'pass',
1910 xl('Account Password issued for NewCrop eRx service.')
1913 'erx_account_id' => array(
1914 xl('NewCrop eRx Account Id'),
1915 'text',
1916 '1',
1917 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
1920 'erx_upload_active' => array(
1921 xl('Only upload active prescriptions'),
1922 'bool',
1923 '0',
1924 xl('Only upload active prescriptions to NewCrop eRx.')
1927 'erx_import_status_message' => array(
1928 xl('Enable NewCrop eRx import status message'),
1929 'bool',
1930 '0',
1931 xl('Enable import status message after visiting NewCrop eRx.')
1934 'erx_medication_display' => array(
1935 xl('Do not display NewCrop eRx Medications uploaded'),
1936 'bool',
1937 '0',
1938 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
1941 'erx_allergy_display' => array(
1942 xl('Do not display NewCrop eRx Allergy uploaded'),
1943 'bool',
1944 '0',
1945 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
1948 'erx_default_patient_country' => array(
1949 xl('NewCrop eRx Default Patient Country'),
1950 array(
1951 '' => '',
1952 'US' => xl('USA'),
1953 'CA' => xl('Canada'),
1954 'MX' => xl('Mexico'),
1957 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
1960 'erx_debug_setting' => array(
1961 xl('NewCrop eRx Debug Setting'),
1962 array(
1963 0 => xl('None'),
1964 1 => xl('Request Only'),
1965 2 => xl('Response Only'),
1966 3 => xl('Request & Response'),
1968 '0',
1969 xl('Log all NewCrop eRx Requests and / or Responses.'),
1972 'phimail_enable' => array(
1973 xl('Enable phiMail Direct Messaging Service'),
1974 'bool', // data type
1975 '0',
1976 xl('Enable phiMail Direct Messaging Service')
1979 'phimail_server_address' => array(
1980 xl('phiMail Server Address'),
1981 'text', // data type
1982 'https://phimail.example.com:32541',
1983 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
1986 'phimail_username' => array(
1987 xl('phiMail Username'),
1988 'text', // data type
1990 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
1993 'phimail_password' => array(
1994 xl('phiMail Password'),
1995 'pass', // data type
1997 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2000 'phimail_notify' => array(
2001 xl('phiMail notification user'),
2002 'text', // data type
2003 'admin',
2004 xl('This user will receive notification of new incoming Direct messages')
2007 'phimail_interval' => array(
2008 xl('phiMail Message Check Interval (minutes)'),
2009 'num', // data type
2010 '5',
2011 xl('Interval between message checks (set to zero for manual checks only)')
2014 'phimail_ccd_enable' => array(
2015 xl('phiMail Allow CCD Send'),
2016 'bool', // data type
2017 '0',
2018 xl('phiMail Allow CCD Send')
2021 'phimail_ccr_enable' => array(
2022 xl('phiMail Allow CCR Send'),
2023 'bool', // data type
2024 '0',
2025 xl('phiMail Allow CCR Send')
2029 'Rx' => array(
2030 'rx_enable_DEA' => array(
2031 xl('Rx Enable DEA #'),
2032 'bool', // data type
2033 '1',
2034 xl('Rx Enable DEA #')
2036 'rx_show_DEA' => array(
2037 xl('Rx Show DEA #'),
2038 'bool', // data type
2039 '0',
2040 xl('Rx Show DEA #')
2042 'rx_enable_NPI' => array(
2043 xl('Rx Enable NPI'),
2044 'bool', // data type
2045 '0',
2046 xl('Rx Enable NPI')
2048 'rx_show_NPI' => array(
2049 xl('Rx Show NPI'),
2050 'bool', // data type
2051 '0',
2052 xl('Rx Show NPI')
2054 'rx_enable_SLN' => array(
2055 xl('Rx Enable State Lic. #'),
2056 'bool', // data type
2057 '0',
2058 xl('Rx Enable State Lic. #')
2060 'rx_show_SLN' => array(
2061 xl('Rx Show State Lic. #'),
2062 'bool', // data type
2063 '0',
2064 xl('Rx Show State Lic. #')
2066 'rx_paper_size' => array(
2067 xl('Rx Paper Size'), // descriptive name
2068 array(
2069 'LETTER' => xl('Letter Paper Size'),
2070 'LEGAL' => xl('Legal Paper Size'),
2071 'FOLIO' => xl('Folio Paper Size'),
2072 'EXECUTIVE' => xl('Executive Paper Size'),
2073 '4A0' => ('4A0' . " " . xl('Paper Size')),
2074 '2A0' => ('2A0' . " " . xl('Paper Size')),
2075 'A0' => ('A0' . " " . xl('Paper Size')),
2076 'A1' => ('A1' . " " . xl('Paper Size')),
2077 'A2' => ('A2' . " " . xl('Paper Size')),
2078 'A3' => ('A3' . " " . xl('Paper Size')),
2079 'A4' => ('A4' . " " . xl('Paper Size')),
2080 'A5' => ('A5' . " " . xl('Paper Size')),
2081 'A6' => ('A6' . " " . xl('Paper Size')),
2082 'A7' => ('A7' . " " . xl('Paper Size')),
2083 'A8' => ('A8' . " " . xl('Paper Size')),
2084 'A9' => ('A9' . " " . xl('Paper Size')),
2085 'A10' => ('A10' . " " . xl('Paper Size')),
2086 'B0' => ('B0' . " " . xl('Paper Size')),
2087 'B1' => ('B1' . " " . xl('Paper Size')),
2088 'B2' => ('B2' . " " . xl('Paper Size')),
2089 'B3' => ('B3' . " " . xl('Paper Size')),
2090 'B4' => ('B4' . " " . xl('Paper Size')),
2091 'B5' => ('B5' . " " . xl('Paper Size')),
2092 'B6' => ('B6' . " " . xl('Paper Size')),
2093 'B7' => ('B7' . " " . xl('Paper Size')),
2094 'B8' => ('B8' . " " . xl('Paper Size')),
2095 'B9' => ('B9' . " " . xl('Paper Size')),
2096 'B10' => ('B10' . " " . xl('Paper Size')),
2097 'C0' => ('C0' . " " . xl('Paper Size')),
2098 'C1' => ('C1' . " " . xl('Paper Size')),
2099 'C2' => ('C2' . " " . xl('Paper Size')),
2100 'C3' => ('C3' . " " . xl('Paper Size')),
2101 'C4' => ('C4' . " " . xl('Paper Size')),
2102 'C5' => ('C5' . " " . xl('Paper Size')),
2103 'C6' => ('C6' . " " . xl('Paper Size')),
2104 'C7' => ('C7' . " " . xl('Paper Size')),
2105 'C8' => ('C8' . " " . xl('Paper Size')),
2106 'C9' => ('C9' . " " . xl('Paper Size')),
2107 'C10' => ('C10' . " " . xl('Paper Size')),
2108 'RA0' => ('RA0' . " " . xl('Paper Size')),
2109 'RA1' => ('RA1' . " " . xl('Paper Size')),
2110 'RA2' => ('RA2' . " " . xl('Paper Size')),
2111 'RA3' => ('RA3' . " " . xl('Paper Size')),
2112 'RA4' => ('RA4' . " " . xl('Paper Size')),
2113 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2114 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2115 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2116 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2117 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2119 'LETTER', // default = tree menu
2120 xl('Rx Paper Size')
2122 'rx_left_margin' => array(
2123 xl('Rx Left Margin (px)'),
2124 'num',
2125 '30',
2126 xl('Rx Left Margin (px)')
2128 'rx_right_margin' => array(
2129 xl('Rx Right Margin (px)'),
2130 'num',
2131 '30',
2132 xl('Rx Right Margin (px)')
2134 'rx_top_margin' => array(
2135 xl('Rx Top Margin (px)'),
2136 'num',
2137 '72',
2138 xl('Rx Top Margin (px)')
2140 'rx_bottom_margin' => array(
2141 xl('Rx Bottom Margin (px)'),
2142 'num',
2143 '30',
2144 xl('Rx Bottom Margin (px)')
2148 'PDF' => array (
2149 'pdf_layout' => array (
2150 xl('Layout'),
2151 array(
2152 'P' => xl('Portrait'),
2153 'L' => xl('Landscape')
2155 'P', //defaut
2156 xl("Choose Layout Direction"),
2158 'pdf_language' => array (
2159 xl('PDF Language'),
2160 array(
2161 'aa' => xl('Afar'),
2162 'af' => xl('Afrikaans'),
2163 'ak' => xl('Akan'),
2164 'sq' => xl('Albanian'),
2165 'am' => xl('Amharic'),
2166 'ar' => xl('Arabic'),
2167 'an' => xl('Aragonese'),
2168 'hy' => xl('Armenian'),
2169 'as' => xl('Assamese'),
2170 'av' => xl('Avaric'),
2171 'ae' => xl('Avestan'),
2172 'ay' => xl('Aymara'),
2173 'az' => xl('Azerbaijani'),
2174 'bm' => xl('Bambara'),
2175 'ba' => xl('Bashkir'),
2176 'eu' => xl('Basque'),
2177 'be' => xl('Belarusian'),
2178 'bn' => xl('Bengali- Bangla'),
2179 'bh' => xl('Bihari'),
2180 'bi' => xl('Bislama'),
2181 'bs' => xl('Bosnian'),
2182 'br' => xl('Breton'),
2183 'bg' => xl('Bulgarian'),
2184 'my' => xl('Burmese'),
2185 'ca' => xl('Catalan- Valencian'),
2186 'ch' => xl('Chamorro'),
2187 'ce' => xl('Chechen'),
2188 'ny' => xl('Chichewa- Chewa- Nyanja'),
2189 'zh' => xl('Chinese'),
2190 'cv' => xl('Chuvash'),
2191 'kw' => xl('Cornish'),
2192 'co' => xl('Corsican'),
2193 'cr' => xl('Cree'),
2194 'hr' => xl('Croatian'),
2195 'cs' => xl('Czech'),
2196 'da' => xl('Danish'),
2197 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2198 'nl' => xl('Dutch'),
2199 'dz' => xl('Dzongkha'),
2200 'en' => xl('English'),
2201 'eo' => xl('Esperanto'),
2202 'et' => xl('Estonian'),
2203 'ee' => xl('Ewe'),
2204 'fo' => xl('Faroese'),
2205 'fj' => xl('Fijian'),
2206 'fi' => xl('Finnish'),
2207 'fr' => xl('French'),
2208 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2209 'gl' => xl('Galician'),
2210 'ka' => xl('Georgian'),
2211 'de' => xl('German'),
2212 'el' => xl('Greek, Modern'),
2213 'gn' => xl('Guaraní'),
2214 'gu' => xl('Gujarati'),
2215 'ht' => xl('Haitian- Haitian Creole'),
2216 'ha' => xl('Hausa'),
2217 'he' => xl('Hebrew (modern)'),
2218 'hz' => xl('Herero'),
2219 'hi' => xl('Hindi'),
2220 'ho' => xl('Hiri Motu'),
2221 'hu' => xl('Hungarian'),
2222 'ia' => xl('Interlingua'),
2223 'id' => xl('Indonesian'),
2224 'ie' => xl('Interlingue'),
2225 'ga' => xl('Irish'),
2226 'ig' => xl('Igbo'),
2227 'ik' => xl('Inupiaq'),
2228 'io' => xl('Ido'),
2229 'is' => xl('Icelandic'),
2230 'it' => xl('Italian'),
2231 'iu' => xl('Inuktitut'),
2232 'ja' => xl('Japanese'),
2233 'jv' => xl('Javanese'),
2234 'kl' => xl('Kalaallisut, Greenlandic'),
2235 'kn' => xl('Kannada'),
2236 'kr' => xl('Kanuri'),
2237 'ks' => xl('Kashmiri'),
2238 'kk' => xl('Kazakh'),
2239 'km' => xl('Khmer'),
2240 'ki' => xl('Kikuyu, Gikuyu'),
2241 'rw' => xl('Kinyarwanda'),
2242 'ky' => xl('Kyrgyz'),
2243 'kv' => xl('Komi'),
2244 'kg' => xl('Kongo'),
2245 'ko' => xl('Korean'),
2246 'ku' => xl('Kurdish'),
2247 'kj' => xl('Kwanyama, Kuanyama'),
2248 'la' => xl('Latin'),
2249 'lb' => xl('Luxembourgish, Letzeburgesch'),
2250 'lg' => xl('Ganda'),
2251 'li' => xl('Limburgish, Limburgan, Limburger'),
2252 'ln' => xl('Lingala'),
2253 'lo' => xl('Lao'),
2254 'lt' => xl('Lithuanian'),
2255 'lu' => xl('Luba-Katanga'),
2256 'lv' => xl('Latvian'),
2257 'gv' => xl('Manx'),
2258 'mk' => xl('Macedonian'),
2259 'mg' => xl('Malagasy'),
2260 'ms' => xl('Malay'),
2261 'ml' => xl('Malayalam'),
2262 'mt' => xl('Maltese'),
2263 'mi' => xl('Māori'),
2264 'mr' => xl('Marathi (Marāṭhī)'),
2265 'mh' => xl('Marshallese'),
2266 'mn' => xl('Mongolian'),
2267 'na' => xl('Nauru'),
2268 'nv' => xl('Navajo, Navaho'),
2269 'nb' => xl('Norwegian Bokmål'),
2270 'nd' => xl('North Ndebele'),
2271 'ne' => xl('Nepali'),
2272 'ng' => xl('Ndonga'),
2273 'nn' => xl('Norwegian Nynorsk'),
2274 'no' => xl('Norwegian'),
2275 'ii' => xl('Nuosu'),
2276 'nr' => xl('South Ndebele'),
2277 'oc' => xl('Occitan'),
2278 'oj' => xl('Ojibwe, Ojibwa'),
2279 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2280 'om' => xl('Oromo'),
2281 'or' => xl('Oriya'),
2282 'os' => xl('Ossetian, Ossetic'),
2283 'pa' => xl('Panjabi, Punjabi'),
2284 'pi' => xl('Pāli'),
2285 'fa' => xl('Persian (Farsi)'),
2286 'pl' => xl('Polish'),
2287 'ps' => xl('Pashto, Pushto'),
2288 'pt' => xl('Portuguese'),
2289 'qu' => xl('Quechua'),
2290 'rm' => xl('Romansh'),
2291 'rn' => xl('Kirundi'),
2292 'ro' => xl('Romanian'),
2293 'ru' => xl('Russian'),
2294 'sa' => xl('Sanskrit (Saṁskṛta)'),
2295 'sc' => xl('Sardinian'),
2296 'sd' => xl('Sindhi'),
2297 'se' => xl('Northern Sami'),
2298 'sm' => xl('Samoan'),
2299 'sg' => xl('Sango'),
2300 'sr' => xl('Serbian'),
2301 'gd' => xl('Scottish Gaelic- Gaelic'),
2302 'sn' => xl('Shona'),
2303 'si' => xl('Sinhala, Sinhalese'),
2304 'sk' => xl('Slovak'),
2305 'sl' => xl('Slovene'),
2306 'so' => xl('Somali'),
2307 'st' => xl('Southern Sotho'),
2308 'es' => xl('Spanish- Castilian'),
2309 'su' => xl('Sundanese'),
2310 'sw' => xl('Swahili'),
2311 'ss' => xl('Swati'),
2312 'sv' => xl('Swedish'),
2313 'ta' => xl('Tamil'),
2314 'te' => xl('Telugu'),
2315 'tg' => xl('Tajik'),
2316 'th' => xl('Thai'),
2317 'ti' => xl('Tigrinya'),
2318 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2319 'tk' => xl('Turkmen'),
2320 'tl' => xl('Tagalog'),
2321 'tn' => xl('Tswana'),
2322 'to' => xl('Tonga (Tonga Islands)'),
2323 'tr' => xl('Turkish'),
2324 'ts' => xl('Tsonga'),
2325 'tt' => xl('Tatar'),
2326 'tw' => xl('Twi'),
2327 'ty' => xl('Tahitian'),
2328 'ug' => xl('Uyghur, Uighur'),
2329 'uk' => xl('Ukrainian'),
2330 'ur' => xl('Urdu'),
2331 'uz' => xl('Uzbek'),
2332 've' => xl('Venda'),
2333 'vi' => xl('Vietnamese'),
2334 'vo' => xl('Volapük'),
2335 'wa' => xl('Walloon'),
2336 'cy' => xl('Welsh'),
2337 'wo' => xl('Wolof'),
2338 'fy' => xl('Western Frisian'),
2339 'xh' => xl('Xhosa'),
2340 'yi' => xl('Yiddish'),
2341 'yo' => xl('Yoruba'),
2342 'za' => xl('Zhuang, Chuang'),
2343 'zu' => xl('Zulu'),
2345 'en', // default English
2346 xl('Choose PDF languange Preference'),
2348 'pdf_size' => array(
2349 xl('Paper Size'), // Descriptive Name
2350 array(
2351 'LETTER' => xl('Letter Paper Size'),
2352 'LEGAL' => xl('Legal Paper Size'),
2353 'FOLIO' => xl('Folio Paper Size'),
2354 'EXECUTIVE' => xl('Executive Paper Size'),
2355 '4A0' => ('4A0' . " " . xl('Paper Size')),
2356 '2A0' => ('2A0' . " " . xl('Paper Size')),
2357 'A0' => ('A0' . " " . xl('Paper Size')),
2358 'A1' => ('A1' . " " . xl('Paper Size')),
2359 'A2' => ('A2' . " " . xl('Paper Size')),
2360 'A3' => ('A3' . " " . xl('Paper Size')),
2361 'A4' => ('A4' . " " . xl('Paper Size')),
2362 'A5' => ('A5' . " " . xl('Paper Size')),
2363 'A6' => ('A6' . " " . xl('Paper Size')),
2364 'A7' => ('A7' . " " . xl('Paper Size')),
2365 'A8' => ('A8' . " " . xl('Paper Size')),
2366 'A9' => ('A9' . " " . xl('Paper Size')),
2367 'A10' => ('A10' . " " . xl('Paper Size')),
2368 'B0' => ('B0' . " " . xl('Paper Size')),
2369 'B1' => ('B1' . " " . xl('Paper Size')),
2370 'B2' => ('B2' . " " . xl('Paper Size')),
2371 'B3' => ('B3' . " " . xl('Paper Size')),
2372 'B4' => ('B4' . " " . xl('Paper Size')),
2373 'B5' => ('B5' . " " . xl('Paper Size')),
2374 'B6' => ('B6' . " " . xl('Paper Size')),
2375 'B7' => ('B7' . " " . xl('Paper Size')),
2376 'B8' => ('B8' . " " . xl('Paper Size')),
2377 'B9' => ('B9' . " " . xl('Paper Size')),
2378 'B10' => ('B10' . " " . xl('Paper Size')),
2379 'C0' => ('C0' . " " . xl('Paper Size')),
2380 'C1' => ('C1' . " " . xl('Paper Size')),
2381 'C2' => ('C2' . " " . xl('Paper Size')),
2382 'C3' => ('C3' . " " . xl('Paper Size')),
2383 'C4' => ('C4' . " " . xl('Paper Size')),
2384 'C5' => ('C5' . " " . xl('Paper Size')),
2385 'C6' => ('C6' . " " . xl('Paper Size')),
2386 'C7' => ('C7' . " " . xl('Paper Size')),
2387 'C8' => ('C8' . " " . xl('Paper Size')),
2388 'C9' => ('C9' . " " . xl('Paper Size')),
2389 'C10' => ('C10' . " " . xl('Paper Size')),
2390 'RA0' => ('RA0' . " " . xl('Paper Size')),
2391 'RA1' => ('RA1' . " " . xl('Paper Size')),
2392 'RA2' => ('RA2' . " " . xl('Paper Size')),
2393 'RA3' => ('RA3' . " " . xl('Paper Size')),
2394 'RA4' => ('RA4' . " " . xl('Paper Size')),
2395 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2396 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2397 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2398 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2399 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2401 'LETTER',
2402 xl('Choose Paper Size')
2404 'pdf_left_margin' => array(
2405 xl('Left Margin (mm)'),
2406 'num',
2407 '5',
2408 xl('Left Margin (mm)')
2410 'pdf_right_margin' => array(
2411 xl('Right Margin (mm)'),
2412 'num',
2413 '5',
2414 xl('Right Margin (mm)')
2416 'pdf_top_margin' => array(
2417 xl('Top Margin (mm)'),
2418 'num',
2419 '5',
2420 xl('Top Margin (mm)')
2422 'pdf_bottom_margin' => array(
2423 xl('Bottom Margin (px)'),
2424 'num',
2425 '8',
2426 xl('Bottom Margin (px)')
2428 'pdf_output' => array (
2429 xl('Output Type'),
2430 array(
2431 'D' => xl('Download'),
2432 'I' => xl('Inline')
2434 'D', //defaut
2435 xl("Choose Download or Display Inline"),
2438 'chart_label_type' => array(
2439 xl('Patient Label Type'),
2440 array(
2441 '0' => xl('None'),
2442 '1' => '5160',
2443 '2' => '5161',
2444 '3' => '5162'
2446 '1', // default
2447 xl('Avery Label type for printing patient labels from popups in left nav screen'),
2450 'barcode_label_type' => array(
2451 xl('Barcode Label Type'),
2452 array(
2453 '0' => xl('None'),
2454 '1' => 'std25',
2455 '2' => 'int25',
2456 '3' => 'ean8',
2457 '4' => 'ean13',
2458 '5' => 'upc',
2459 '6' => 'code11',
2460 '7' => 'code39',
2461 '8' => 'code93',
2462 '9' => 'code128',
2463 '10' => 'codabar',
2464 '11' => 'msi',
2465 '12' => 'datamatrix'
2467 '9', // default = None
2468 xl('Barcode type for printing barcode labels from popups in left nav screen.')
2471 'addr_label_type' => array(
2472 xl('Print Patient Address Label'),
2473 'bool', // data type
2474 '1', // default = false
2475 xl('Select to print patient address labels from popups in left nav screen.')