Remove freeb and some other legacy code.
[openemr.git] / library / globals.inc.php
blob2f00fac14c1f21a779babb6c2c555e0ed7ca7e92
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 // Somali // xl('Somali')
61 // Spanish (Latin American) // xl('Spanish (Latin American)')
62 // Spanish (Spain) // xl('Spanish (Spain)')
63 // Swedish // xl('Swedish')
64 // Turkish // xl('Turkish')
65 // Ukrainian // xl('Ukrainian')
66 // Vietnamese // xl('Vietnamese')
68 // OS-dependent stuff.
69 if (stristr(PHP_OS, 'WIN')) {
70 // MS Windows
71 $mysql_bin_dir = 'C:/xampp/mysql/bin';
72 $perl_bin_dir = 'C:/xampp/perl/bin';
73 $temporary_files_dir = 'C:/windows/temp';
74 $backup_log_dir = 'C:/windows/temp';
76 else {
77 // Everything else
78 $mysql_bin_dir = '/usr/bin';
79 $perl_bin_dir = '/usr/bin';
80 $temporary_files_dir = '/tmp';
81 $backup_log_dir = '/tmp';
84 // Language constant declarations:
85 // xl('Appearance')
86 // xl('Locale')
87 // xl('Features')
88 // xl('Calendar')
89 // xl('Security')
90 // xl('Notifications')
91 // xl('Miscellaneous')
93 // List of user specific tabs and globals
94 $USER_SPECIFIC_TABS = array('Appearance',
95 'Locale',
96 'Report',
97 'Calendar',
98 'Connectors');
99 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
100 'concurrent_layout',
101 'css_header',
102 'gbl_pt_list_page_size',
103 'gbl_pt_list_new_window',
104 'drop_bottom',
105 'units_of_measurement',
106 'us_weight_format',
107 'date_display_format',
108 'time_display_format',
109 'ledger_begin_date',
110 'print_next_appointment_on_ledger',
111 'calendar_view_type',
112 'event_color',
113 'pat_trkr_timer',
114 'ptkr_visit_reason',
115 'checkout_roll_off',
116 'ptkr_pt_list_new_window',
117 'erx_import_status_message');
119 $GLOBALS_METADATA = array(
121 // Appearance Tab
123 'Appearance' => array(
125 'default_top_pane' => array(
126 xl('Main Top Pane Screen'), // descriptive name
127 array(
128 'main_info.php' => xl('Calendar Screen'),
129 '../new/new.php' => xl('Patient Search/Add Screen'),
130 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
132 'main_info.php', // default = calendar
133 xl('Type of screen layout')
136 'new_tabs_layout' => array(
137 xl('Tabs Layout Style (need to logout/login after change this setting)'),
138 array(
139 '0' => xl('Off'),
140 '1' => xl('On'),
142 '0', // default = off
143 xl('Use the new tabs layout style (need to logout and then login to see this new setting).')
146 'concurrent_layout' => array(
147 xl('Layout Style'), // descriptive name
148 array(
149 '0' => xl('Old style layout with no left menu'),
150 '1' => xl('Navigation menu consists of pairs of radio buttons'),
151 '2' => xl('Navigation menu is a tree view'),
152 '3' => xl('Navigation uses a sliding menu'),
154 '3', // default = tree menu
155 xl('Type of screen layout')
158 'default_encounter_view' => array(
159 xl('Default Encounter View'), // descriptive name
160 array(
161 '0' => xl('Clinical View'),
162 '1' => xl('Billing View'),
164 '0', // default = tree menu
165 xl('Choose your default encounter view')
168 'css_header' => array(
169 xl('Theme'),
170 'css',
171 'style_light.css',
172 xl('Pick a CSS theme.')
175 'gbl_nav_area_width' => array(
176 xl('Navigation Area Width'),
177 'num',
178 '150',
179 xl('Width in pixels of the left navigation frame.')
182 'openemr_name' => array(
183 xl('Application Title'),
184 'text',
185 'OpenEMR',
186 xl('Application name for login page and main window title.')
189 'full_new_patient_form' => array(
190 xl('New Patient Form'),
191 array(
192 '0' => xl('Old-style static form without search or duplication check'),
193 '1' => xl('All demographics fields, with search and duplication check'),
194 '2' => xl('Mandatory or specified fields only, search and dup check'),
195 '3' => xl('Mandatory or specified fields only, dup check, no search'),
197 '1', // default
198 xl('Style of form used for adding new patients')
201 'patient_search_results_style' => array(
202 xl('Patient Search Results Style'),
203 array(
204 '0' => xl('Encounter statistics'),
205 '1' => xl('Mandatory and specified fields'),
207 '0', // default
208 xl('Type of columns displayed for patient search results')
211 'gbl_tall_nav_area' => array(
212 xl('Tall Navigation Area'),
213 'bool', // data type
214 '0', // default = false
215 xl('Navigation area uses full height of frameset')
218 'gbl_nav_visit_forms' => array(
219 xl('Navigation Area Visit Forms'),
220 'bool', // data type
221 '1', // default = true
222 xl('Navigation area includes encounter forms')
225 'simplified_demographics' => array(
226 xl('Simplified Demographics'),
227 'bool', // data type
228 '0', // default = false
229 xl('Omit insurance and some other things from the demographics form')
232 'simplified_prescriptions' => array(
233 xl('Simplified Prescriptions'),
234 'bool', // data type
235 '0', // default = false
236 xl('Omit form, route and interval which then become part of dosage')
239 'simplified_copay' => array(
240 xl('Simplified Co-Pay'),
241 'bool', // data type
242 '0', // default = false
243 xl('Omit method of payment from the co-pay panel')
246 'use_charges_panel' => array(
247 xl('Use Charges Panel'),
248 'bool', // data type
249 '0', // default = false
250 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
253 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
254 'enable_fees_in_left_menu' => array(
255 xl('Enable Fees In Left Menu'),
256 'bool', // data type
257 '1', // default = true
258 xl('Enable Fees In Left Menu')
260 // EDI history 2012-09-13
261 'enable_edihistory_in_left_menu' => array(
262 xl('Enable EDI History In Left Menu'),
263 'bool', // data type
264 '1', // default = true
265 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
268 'online_support_link' => array(
269 xl('Online Support Link'),
270 'text', // data type
271 'http://open-emr.org/',
272 xl('URL for OpenEMR support.')
275 'support_phone_number' => array(
276 xl('Support Phone Number'),
277 'text',
279 xl('Phone Number for Vendor Support that Appears on the About Page.')
282 'drop_bottom' => array(
283 xl('Remove Bottom Pane'),
284 'bool', // data type
285 '0', // default = false
286 xl('Removes the bottom pane by default on start up.')
289 'encounter_page_size' => array(
290 xl('Encounter Page Size'),
291 array(
292 '0' => xl('Show All'),
293 '5' => '5',
294 '10' => '10',
295 '15' => '15',
296 '20' => '20',
297 '25' => '25',
298 '50' => '50',
300 '20',
301 xl('Number of encounters to display per page.')
304 'gbl_pt_list_page_size' => array(
305 xl('Patient List Page Size'),
306 array(
307 '10' => '10',
308 '25' => '25',
309 '50' => '50',
310 '100' => '100',
312 '10',
313 xl('Number of patients to display per page in the patient list.')
316 'gbl_pt_list_new_window' => array(
317 xl('Patient List New Window'),
318 'bool', // data type
319 '0', // default = false
320 xl('Default state of New Window checkbox in the patient list.')
323 'gbl_vitals_options' => array(
324 xl('Vitals Form Options'),
325 array(
326 '0' => xl('Standard'),
327 '1' => xl('Omit circumferences'),
329 '0', // default
330 xl('Special treatment for the Vitals form')
333 'insurance_information' => array(
334 xl('Show Additional Insurance Information'), // descriptive name
335 array(
336 '0' => xl('None'),
337 '1' => xl('Address Only'),
338 '2' => xl('Address and Postal Code'),
339 '3' => xl('Address and State'),
340 '4' => xl('Address, State and Postal Code'),
341 '5' => xl('Postal Code and Box Number'),
343 '4', // default
344 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
350 // Locale Tab
352 'Locale' => array(
354 'language_default' => array(
355 xl('Default Language'),
356 'lang', // data type
357 'English (Standard)', // default = english
358 xl('Default language if no other is allowed or chosen.')
361 'language_menu_showall' => array(
362 xl('All Languages Allowed'),
363 'bool', // data type
364 '1', // default = true
365 xl('Allow all available languages as choices on menu at login.')
368 'language_menu_other' => array(
369 xl('Allowed Languages'),
370 'm_lang', // data type
371 '', // default = none
372 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
375 'allow_debug_language' => array(
376 xl('Allow Debugging Language'),
377 'bool', // data type
378 '1', // default = true during development and false for production releases
379 xl('This will allow selection of the debugging (\'dummy\') language.')
382 'translate_layout' => array(
383 xl('Translate Layouts'),
384 'bool', // data type
385 '1', // default = true
386 xl('Is text from form layouts to be translated?')
389 'translate_lists' => array(
390 xl('Translate Lists'),
391 'bool', // data type
392 '1', // default = true
393 xl('Is text from lists to be translated?')
396 'translate_gacl_groups' => array(
397 xl('Translate Access Control Groups'),
398 'bool', // data type
399 '1', // default = true
400 xl('Are access control group names to be translated?')
403 'translate_form_titles' => array(
404 xl('Translate Patient Note Titles'),
405 'bool', // data type
406 '1', // default = true
407 xl('Are patient note titles to be translated?')
410 'translate_document_categories' => array(
411 xl('Translate Document Categories'),
412 'bool', // data type
413 '1', // default = true
414 xl('Are document category names to be translated?')
417 'translate_appt_categories' => array(
418 xl('Translate Appointment Categories'),
419 'bool', // data type
420 '1', // default = true
421 xl('Are appointment category names to be translated?')
424 'units_of_measurement' => array(
425 xl('Units for Visit Forms'),
426 array(
427 '1' => xl('Show both US and metric (main unit is US)'),
428 '2' => xl('Show both US and metric (main unit is metric)'),
429 '3' => xl('Show US only'),
430 '4' => xl('Show metric only'),
432 '1', // default = Both/US
433 xl('Applies to the Vitals form and Growth Chart')
436 'us_weight_format' => array(
437 xl('Display Format for US Weights'),
438 array(
439 '1'=>xl('Show pounds as decimal value'),
440 '2'=>xl('Show pounds and ounces')
442 '1',
443 xl('Applies to Vitals form')
446 'disable_deprecated_metrics_form' => array(
447 xl('Disable Old Metric Vitals Form'),
448 'bool', // data type
449 '1', // default = true
450 xl('This was the older metric-only Vitals form, now deprecated.')
453 'phone_country_code' => array(
454 xl('Telephone Country Code'),
455 'num',
456 '1', // default = North America
457 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
460 'date_display_format' => array(
461 xl('Date Display Format'),
462 array(
463 '0' => xl('YYYY-MM-DD'),
464 '1' => xl('MM/DD/YYYY'),
465 '2' => xl('DD/MM/YYYY'),
467 '0',
468 xl('Format used to display most dates.')
471 'time_display_format' => array(
472 xl('Time Display Format'),
473 array(
474 '0' => xl('24 hr'),
475 '1' => xl('12 hr'),
477 '0',
478 xl('Format used to display most times.')
481 'currency_decimals' => array(
482 xl('Currency Decimal Places'),
483 array(
484 '0' => xl('0'),
485 '1' => xl('1'),
486 '2' => xl('2'),
488 '2',
489 xl('Number of digits after decimal point for currency, usually 0 or 2.')
492 'currency_dec_point' => array(
493 xl('Currency Decimal Point Symbol'),
494 array(
495 '.' => xl('Period'),
496 ',' => xl('Comma'),
498 '.',
499 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
502 'currency_thousands_sep' => array(
503 xl('Currency Thousands Separator'),
504 array(
505 ',' => xl('Comma'),
506 '.' => xl('Period'),
507 ' ' => xl('Space'),
508 '' => xl('None'),
510 ',',
511 xl('Symbol used to separate thousands for currency.')
514 'gbl_currency_symbol' => array(
515 xl('Currency Designator'),
516 'text', // data type
517 '$', // default
518 xl('Code or symbol to indicate currency')
520 'age_display_format'=>array(xl('Age Display Format'),
521 array(
522 '0'=>xl('Years or months'),
523 '1'=>xl('Years, months and days')
525 '0',
526 xl('Format for age display')
528 'age_display_limit' => array(
529 xl('Age in Years for Display Format Change'),
530 'num',
531 '3',
532 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
534 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
535 'weekend_days' => array(
536 xl('Your weekend days'),
537 array(
538 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
539 '0' => xl('Sunday'),
540 '5' => xl('Friday'),
541 '6' => xl('Saturday'),
542 '5,6' => xl('Friday') .' - ' . xl('Saturday'),
544 '6,0'
545 ,xl('which days are your weekend days?')
550 // Features Tab
552 'Features' => array(
554 'specific_application' => array(
555 xl('Specific Application'),
556 array(
557 '0' => xl('None'),
558 '2' => xl('IPPF'),
559 '3' => xl('Weight loss clinic'),
561 '0', // default
562 xl('Indicator for specialized usage')
565 'inhouse_pharmacy' => array(
566 xl('Drugs and Products'),
567 array(
568 '0' => xl('Do not inventory and sell any products'),
569 '1' => xl('Inventory and sell drugs only'),
570 '2' => xl('Inventory and sell both drugs and non-drug products'),
571 '3' => xl('Products but no prescription drugs and no templates'),
573 '0', // default
574 xl('Option to support inventory and sales of products')
577 'disable_chart_tracker' => array(
578 xl('Disable Chart Tracker'),
579 'bool', // data type
580 '0', // default = false
581 xl('Removes the Chart Tracker feature')
584 'disable_phpmyadmin_link' => array(
585 xl('Disable phpMyAdmin'),
586 'bool', // data type
587 '0', // default = false
588 xl('Removes support for phpMyAdmin')
591 'disable_immunizations' => array(
592 xl('Disable Immunizations'),
593 'bool', // data type
594 '0', // default = false
595 xl('Removes support for immunizations')
598 'disable_prescriptions' => array(
599 xl('Disable Prescriptions'),
600 'bool', // data type
601 '0', // default = false
602 xl('Removes support for prescriptions')
605 'omit_employers' => array(
606 xl('Omit Employers'),
607 'bool', // data type
608 '0', // default = false
609 xl('Omit employer information in patient demographics')
612 'select_multi_providers' => array(
613 xl('Support Multi-Provider Events'),
614 'bool', // data type
615 '0', // default = false
616 xl('Support calendar events that apply to multiple providers')
619 'disable_non_default_groups' => array(
620 xl('Disable User Groups'),
621 'bool', // data type
622 '1', // default = true
623 xl('Normally this should be checked. Not related to access control.')
626 'ignore_pnotes_authorization' => array(
627 xl('Skip Authorization of Patient Notes'),
628 'bool', // data type
629 '1', // default = true
630 xl('Do not require patient notes to be authorized')
633 'support_encounter_claims' => array(
634 xl('Allow Encounter Claims'),
635 'bool', // data type
636 '0', // default = false
637 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
640 'advance_directives_warning' => array(
641 xl('Advance Directives Warning'),
642 'bool', // data type
643 '0', // default = false
644 xl('Display advance directives in the demographics page.')
647 'configuration_import_export' => array(
648 xl('Configuration Export/Import'),
649 'bool', // data type
650 '0', // default = false
651 xl('Support export/import of configuration data via the Backup page.')
654 'restrict_user_facility' => array(
655 xl('Restrict Users to Facilities'),
656 'bool', // data type
657 '0', // default
658 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
661 'set_facility_cookie' => array(
662 xl('Remember Selected Facility'),
663 'bool', // data type
664 '0', // default
665 xl('Set a facility cookie to remember the selected facility between logins.')
668 'receipts_by_provider' => array(
669 xl('Print Receipts by Provider'),
670 'bool',
671 '0', // default
672 xl('Causes Receipts to Print Encounter/Primary Provider Info')
675 'discount_by_money' => array(
676 xl('Discounts as Monetary Amounts'),
677 'bool', // data type
678 '1', // default = true
679 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
682 'gbl_visit_referral_source' => array(
683 xl('Referral Source for Encounters'),
684 'bool', // data type
685 '0', // default = false
686 xl('A referral source may be specified for each visit.')
689 'gbl_mask_patient_id' => array(
690 xl('Mask for Patient IDs'),
691 'text', // data type
692 '', // default
693 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
696 'gbl_mask_invoice_number' => array(
697 xl('Mask for Invoice Numbers'),
698 'text', // data type
699 '', // default
700 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
703 'gbl_mask_product_id' => array(
704 xl('Mask for Product IDs'),
705 'text', // data type
706 '', // default
707 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
710 'hide_billing_widget' => array(
711 xl('Hide Billing Widget'),
712 'bool', // data type
713 '0', // default = false
714 xl('This will hide the Billing Widget in the Patient Summary screen')
717 'force_billing_widget_open' => array(
718 xl('Force Billing Widget Open'),
719 'bool', // data type
720 '0', // default = false
721 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
724 'activate_ccr_ccd_report' => array(
725 xl('Activate CCR/CCD Reporting'),
726 'bool', // data type
727 '1', // default = true
728 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
731 'hide_document_encryption' => array(
732 xl('Hide Encryption/Decryption Options In Document Management'),
733 'bool', // data type
734 '1', // default = true
735 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
738 'use_custom_immun_list' => array(
739 xl('Use Custom Immunization List'),
740 'bool', // data type
741 '0', // default = true
742 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
745 'cms_1500' => array(
746 xl('CMS 1500 Paper Form Format'),
747 array(
748 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
749 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
751 '1', // default
752 xl('This specifies which revision of the form the billing module should generate')
755 'cms_1500_box_31_format' => array(
756 xl('CMS 1500: Box 31 Format'),
757 array(
758 '0' => xl('Signature on File'),
759 '1' => xl('Firstname Lastname'),
760 '2' => xl('None'),
762 '0', // default
763 xl('This specifies whether to include date in Box 31.')
766 'cms_1500_box_31_date' => array(
767 xl('CMS 1500: Date in Box 31 (Signature)'),
768 array(
769 '0' => xl('None'),
770 '1' => xl('Date of Service'),
771 '2' => xl('Today'),
773 '0', // default
774 xl('This specifies whether to include date in Box 31.')
777 'amendments' => array (
778 xl('Amendments'),
779 'bool', // data type
780 '1', // default = true
781 xl('Enable amendments feature')
784 'allow_pat_delete' => array(
785 xl('Allow Administrators to Delete Patients'),
786 'bool', // data type
787 '0', // default = false
788 xl('Allow Administrators to Delete Patients')
792 'observation_results_immunization' => array(
793 xl('Immunization Observation Results'),
794 'bool', // data type
795 '1', // default
796 xl('Observation Results in Immunization')
800 // Report Tab
802 'Report' => array(
804 'use_custom_daysheet' => array(
805 xl('Use Custom End of Day Report'),
806 array(
807 '0' => xl('None'),
808 '1' => xl('Print End of Day Report 1'),
809 '2' => xl('Print End of Day Report 2'),
810 '3' => xl('Print End of Day Report 3'),
811 ), // data type
812 '1', // default = Print End of Day Report 1
813 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
816 'daysheet_provider_totals' => array(
817 xl('End of Day by Provider or allow Totals Only'),
818 array(
819 '0' => xl('Provider'),
820 '1' => xl('Totals Only'),
822 '1', // default
823 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
826 'ledger_begin_date' => array(
827 xl('Beginning Date for Ledger Report'),
828 array(
829 'Y1' => xl('One Year Ago'),
830 'Y2' => xl('Two Years Ago'),
831 'M6' => xl('Six Months Ago'),
832 'M3' => xl('Three Months Ago'),
833 'M1' => xl('One Month Ago'),
834 'D1' => xl('One Day Ago'),
836 'Y1', // default = One Year
837 xl('This is the Beginning date for the Ledger Report.')
840 'print_next_appointment_on_ledger' => array(
841 xl('Print the Next Appointment on the Bottom of the Ledger'),
842 'bool', // data type
843 '1', // default = true
844 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
847 'sales_report_invoice' => array(
848 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
849 array(
850 '0' => xl('Invoice Number'),
851 '1' => xl('Patient Name and ID'),
852 '2' => xl('Patient Name and Invoice'),
854 '2', // default = 2
855 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
858 'cash_receipts_report_invoice' => array(
859 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
860 array(
861 '0' => xl('Invoice Number'),
862 '1' => xl('Patient Name'),
864 '0', // default = 0
865 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
870 // Billing Tab
872 'Billing' => array(
874 'default_search_code_type' => array(
875 xl('Default Search Code Type'),
876 'all_code_types', // data type
877 'ICD10', // default
878 xl('The default code type to search for in the Fee Sheet.')
881 'support_fee_sheet_line_item_provider' => array(
882 xl('Support provider in line item in fee sheet'),
883 'bool', // data type
884 '0', // default = false
885 xl('This Enables provider in line item in the fee sheet')
888 'default_fee_sheet_line_item_provider' => array(
889 xl('Default to a provider for line item in the fee sheet'),
890 'bool', // data type
891 '0', // default = false
892 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
895 'replicate_justification' => array(
896 xl('Automatically replicate justification codes in Fee Sheet'),
897 'bool', // data type
898 '0', // default = false
899 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
902 'display_units_in_billing' => array(
903 xl('Display the Units Column on the Billing Screen'),
904 'bool', // data type
905 '0', // default = false
906 xl('Display the Units Column on the Billing Screen')
909 'notes_to_display_in_Billing' => array(
910 xl('Which notes are to be displayed in the Billing Screen'),
911 array(
912 '0' => xl('None'),
913 '1' => xl('Encounter Billing Note'),
914 '2' => xl('Patient Billing Note'),
915 '3' => xl('All'),
917 '3',
918 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
921 'use_custom_statement' => array(
922 xl('Use Custom Statement'),
923 'bool', // data type
924 '0', // default = false
925 xl('This will use the custom Statment showing the description instead of the codes.')
928 'statement_bill_note_print' => array(
929 xl('Print Patient Billing Note'),
930 'bool', // data type
931 '0', // default = false
932 xl('This will allow printing of the Patient Billing Note on the statements.')
935 'use_dunning_message' => array(
936 xl('Use Custom Dunning Messages'),
937 'bool', // data type
938 '0', // default = false
939 xl('This will allow use of the custom Dunning Messages on the statements.')
942 'first_dun_msg_set' => array(
943 xl('Number of days before showing first account message'),
944 'num', // data type
945 '30',
946 xl('Number of days before showing first account message.')
949 'first_dun_msg_text' => array(
950 xl('First account message'),
951 'text', // data type
953 xl('Text for first account message.')
956 'second_dun_msg_set' => array(
957 xl('Number of days before showing second account message'),
958 'num', // data type
959 '60',
960 xl('Number of days before showing second account message')
963 'second_dun_msg_text' => array(
964 xl('Second account message'),
965 'text', // data type
967 xl('Text for second account message.')
970 'third_dun_msg_set' => array(
971 xl('Number of days before showing third account message'),
972 'num', // data type
973 '90',
974 xl('Number of days before showing third account message')
977 'third_dun_msg_text' => array(
978 xl('Third account message'),
979 'text', // data type
981 xl('Text for third account message.')
984 'fourth_dun_msg_set' => array(
985 xl('Number of days before showing fourth account message'),
986 'num', // data type
987 '120',
988 xl('Number of days before showing fourth account message')
991 'fourth_dun_msg_text' => array(
992 xl('Fourth account message'),
993 'text', // data type
995 xl('Text for fourth account message.')
998 'fifth_dun_msg_set' => array(
999 xl('Number of days before showing fifth account message'),
1000 'num', // data type
1001 '150',
1002 xl('Number of days before showing fifth account message')
1005 'fifth_dun_msg_text' => array(
1006 xl('Fifth account message'),
1007 'text', // data type
1009 xl('Text for fifth account message.')
1013 // E-Sign Tab
1015 'E-Sign' => array(
1017 'esign_all' => array(
1018 xl('Allows E-Sign on the entire encounter'),
1019 'bool', // data type
1020 '0', // default = false
1021 xl('This will enable signing an entire encounter, rather than individual forms')
1024 'lock_esign_all' => array(
1025 xl('Lock e-signed encounters and their forms'),
1026 'bool', // data type
1027 '0', // default = false
1028 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1031 'esign_individual' => array(
1032 xl('Allows E-Signing Individual Forms'),
1033 'bool', // data type
1034 '1', // default = false
1035 xl('This will enable signing individual forms separately')
1038 'lock_esign_individual' => array(
1039 xl('Lock an e-signed form individually'),
1040 'bool', // data type
1041 '1', // default = false
1042 xl('This will disable the Edit button on any form that is e-signed')
1045 'esign_lock_toggle' => array(
1046 xl('Enable lock toggle'),
1047 'bool', // data type
1048 '0', // default = false
1049 xl('This will give the user the option to lock (separate locking and signing)')
1052 'esign_report_hide_empty_sig' => array(
1053 xl('Hide Empty E-Sign Logs On Report'),
1054 'bool', // data type
1055 '1', // default = false
1056 xl('This will hide empty e-sign logs on the patient report')
1060 //Documents Tab
1061 'Documents' => array(
1063 'document_storage_method' => array(
1064 xl('Document Storage Method'),
1065 array(
1066 '0' => xl('Hard Disk'),
1067 '1' => xl('CouchDB')
1069 '0', // default
1070 xl('Option to save method of document storage.')
1072 'couchdb_host' => array(
1073 xl('CouchDB HostName'),
1074 'text',
1075 'localhost',
1076 xl('CouchDB host'),
1078 'couchdb_user' => array(
1079 xl('CouchDB UserName'),
1080 'text',
1082 xl('Username to connect to CouchDB'),
1084 'couchdb_pass' => array(
1085 xl('CouchDB Password'),
1086 'text',
1088 xl('Password to connect to CouchDB'),
1090 'couchdb_port' => array(
1091 xl('CouchDB Port'),
1092 'text',
1093 '5984',
1094 xl('CouchDB port'),
1096 'couchdb_dbase' => array(
1097 xl('CouchDB Database'),
1098 'text',
1100 xl('CouchDB database name'),
1102 'couchdb_log' => array(
1103 xl('CouchDB Log Enable'),
1104 'bool',
1105 '0',
1106 xl('Enable log for document uploads/downloads to CouchDB'),
1109 'expand_document_tree' => array(
1110 xl('Expand All Document Categories'),
1111 'bool', // data type
1112 '0', // default = false
1113 xl('Expand All Document Categories by Default')
1116 'patient_id_category_name' => array(
1117 xl('Patient ID Category Name'),
1118 'text', // data type
1119 'Patient ID card', // default
1120 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1123 'patient_photo_category_name' => array(
1124 xl('Patient Photo Category Name'),
1125 'text', // data type
1126 'Patient Photograph', // default
1127 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1130 'lab_results_category_name' => array(
1131 xl('Lab Results Category Name'),
1132 'text', // data type
1133 'Lab Report', // default
1134 xl('Document category name for storage of electronically received lab results.')
1137 'gbl_mdm_category_name' => array(
1138 xl('MDM Document Category Name'),
1139 'text', // data type
1140 'Lab Report', // default
1141 xl('Document category name for storage of electronically received MDM documents.')
1143 'generate_doc_thumb' => array(
1144 xl('Generate thumbnail'),
1145 'bool',
1146 '0',
1147 xl('Generate thumbnail images'),
1149 'thumb_doc_max_size' => array(
1150 xl('Thumbnail size'),
1151 'text', // data type
1152 '100', // default
1153 xl('Maximum size of thumbnail file')
1157 // Calendar Tab
1159 'Calendar' => array(
1161 'disable_calendar' => array(
1162 xl('Disable Calendar'),
1163 'bool', // data type
1164 '0', // default
1165 xl('Do not display the calendar.')
1168 'schedule_start' => array(
1169 xl('Calendar Starting Hour'),
1170 'hour',
1171 '8', // default
1172 xl('Beginning hour of day for calendar events.')
1175 'schedule_end' => array(
1176 xl('Calendar Ending Hour'),
1177 'hour',
1178 '17', // default
1179 xl('Ending hour of day for calendar events.')
1182 'calendar_interval' => array(
1183 xl('Calendar Interval'),
1184 array(
1185 '5' => '5',
1186 '10' => '10',
1187 '15' => '15',
1188 '20' => '20',
1189 '30' => '30',
1190 '60' => '60',
1192 '15', // default
1193 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1196 'calendar_view_type' => array(
1197 xl('Default Calendar View'),
1198 array(
1199 'day' => xl('Day'),
1200 'week' => xl('Week'),
1201 'month' => xl('Month'),
1203 'day', // default
1204 xl('This sets the Default Calendar View, Default is Day.')
1206 'first_day_week' => array(
1207 xl('First day in the week') ,
1208 array(
1209 '1' => xl('Monday'),
1210 '0' => xl('Sunday'),
1211 '6' => xl('Saturday')
1213 '1',
1214 xl('Your first day in the week.')
1216 'calendar_appt_style' => array(
1217 xl('Appointment Display Style'),
1218 array(
1219 '1' => 'Last name',
1220 '2' => 'Last name, first name',
1221 '3' => 'Last name, first name (title)',
1222 '4' => 'Last name, first name (title: description)',
1224 '2', // default
1225 xl('This determines how appointments display on the calendar.')
1228 'event_color' => array(
1229 xl('Appointment/Event Color'),
1230 array(
1231 '1' => 'Category Color Schema',
1232 '2' => 'Facility Color Schema',
1233 ), // data type
1234 '1', // default
1235 xl('This determines which color schema used for appointment')
1238 'number_of_appts_to_show' => array(
1239 xl('Appointments - Patient Summary - Number to Display'),
1240 'num',
1241 '10',
1242 xl('Number of Appointments to display in the Patient Summary')
1245 'patient_portal_appt_display_num' => array(
1246 xl('Appointments - Onsite Patient Portal - Number to Display'),
1247 'num',
1248 '20',
1249 xl('Number of Appointments to display in the Onsite Patient Portal')
1252 'appt_display_sets_option' => array(
1253 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1254 'bool', // data type
1255 '1', // default
1256 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1259 'appt_display_sets_color_1' => array(
1260 xl('Appointment Display Sets - Color 1'),
1261 'color_code',
1262 '#FFFFFF',
1263 xl('Color for odd sets (except when last set is odd and all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed) or not all member appointments are displayed).')
1266 'appt_display_sets_color_2' => array(
1267 xl('Appointment Display Sets - Color 2'),
1268 'color_code',
1269 '#E6E6FF',
1270 xl('Color for even sets (except when last set is even and all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed) or not all member appointments are displayed).')
1273 'appt_display_sets_color_3' => array(
1274 xl('Appointment Display Sets - Color 3'),
1275 'color_code',
1276 '#E6FFE6',
1277 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1280 'appt_display_sets_color_4' => array(
1281 xl('Appointment Display Sets - Color 4'),
1282 'color_code',
1283 '#FFE6FF',
1284 xl('Color for the last set when not all member appointments are displayed.')
1287 'num_past_appointments_to_show' => array(
1288 xl('Past Appointment Display Widget'),
1289 'num', // data type
1290 '0', // default = false
1291 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)')
1294 'docs_see_entire_calendar' => array(
1295 xl('Providers See Entire Calendar'),
1296 'bool', // data type
1297 '0', // default
1298 xl('Check this if you want providers to see all appointments by default and not just their own.')
1301 'auto_create_new_encounters' => array(
1302 xl('Auto-Create New Encounters'),
1303 'bool', // data type
1304 '1', // default
1305 xl('Automatically create a new encounter when an appointment check in status is selected.')
1308 'disable_pat_trkr' => array(
1309 xl('Disable Patient Flow Board'),
1310 'bool', // data type
1311 '0', // default
1312 xl('Do not display the patient flow board.')
1315 'ptkr_pt_list_new_window' => array(
1316 xl('Open Demographics in New Window from Patient Flow Board'),
1317 'bool', // data type
1318 '0', // default = false
1319 xl('When Checked, Demographics Will Open in New Window from Patient Flow Board.')
1322 'ptkr_visit_reason' => array(
1323 xl('Show Visit Reason in Patient Flow Board'),
1324 'bool', // data type
1325 '0', // default = false
1326 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1329 'ptkr_show_pid' => array(
1330 xl('Show Patient ID in Patient Flow Board'),
1331 'bool', // data type
1332 '1', // default = true
1333 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1336 'ptkr_show_encounter' => array(
1337 xl('Show Patient Encounter Number in Patient Flow Board'),
1338 'bool', // data type
1339 '1', // default = true
1340 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1343 'pat_trkr_timer' => array(
1344 xl('Patient Flow Board Timer Interval'),
1345 array(
1346 '0' => 'No automatic refresh',
1347 '0:10' => '10',
1348 '0:20' => '20',
1349 '0:30' => '30',
1350 '0:40' => '40',
1351 '0:50' => '50',
1352 '0:59' => '60',
1354 '0:20', // default
1355 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1358 'checkout_roll_off' => array(
1359 xl('Number of Minutes to display completed checkouts'),
1360 'num',
1361 '0', // default
1362 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1365 'drug_screen' => array(
1366 xl('Enable Random Drug Testing'),
1367 'bool', // data type
1368 '0', // default
1369 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1372 'drug_testing_percentage' => array(
1373 xl('Percentage of Patients to Drug Test'),
1374 'num',
1375 '33', // default
1376 xl('Percentage of Patients to select for Random Drug Testing.')
1379 'maximum_drug_test_yearly' => array(
1380 xl('Maximum number of times a Patient can be tested in a year'),
1381 'num',
1382 '0', // default
1383 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1388 // Security Tab
1390 'Security' => array(
1392 'timeout' => array(
1393 xl('Idle Session Timeout Seconds'),
1394 'num', // data type
1395 '7200', // default
1396 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1399 'secure_password' => array(
1400 xl('Require Strong Passwords'),
1401 'bool', // data type
1402 '0', // default
1403 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1406 'password_history' => array(
1407 xl('Require Unique Passwords'),
1408 'bool', // data type
1409 '0', // default
1410 xl('Means none of last three passwords are allowed when changing a password.')
1412 'password_compatibility' => array(
1413 xl('Permit unsalted passwords'),
1414 'bool', // data type
1415 '1', // default
1416 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')
1419 'password_expiration_days' => array(
1420 xl('Default Password Expiration Days'),
1421 'num', // data type
1422 '0', // default
1423 xl('Default password expiration period in days. 0 means this feature is disabled.')
1426 'password_grace_time' => array(
1427 xl('Password Expiration Grace Period'),
1428 'num', // data type
1429 '0', // default
1430 xl('Period in days where a user may login with an expired password.')
1433 'is_client_ssl_enabled' => array(
1434 xl('Enable Client SSL'),
1435 'bool', // data type
1436 '0', // default
1437 xl('Enable client SSL certificate authentication.')
1440 'certificate_authority_crt' => array(
1441 xl('Path to CA Certificate File'),
1442 'text', // data type
1443 '', // default
1444 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1447 'certificate_authority_key' => array(
1448 xl('Path to CA Key File'),
1449 'text', // data type
1450 '', // default
1451 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1454 'client_certificate_valid_in_days' => array(
1455 xl('Client Certificate Expiration Days'),
1456 'num', // data type
1457 '365', // default
1458 xl('Number of days that the client certificate is valid.')
1461 'Emergency_Login_email_id' => array(
1462 xl('Emergency Login Email Address'),
1463 'text', // data type
1464 '', // default
1465 xl('Email address, if any, to receive emergency login user activation messages.')
1467 'new_validate' => array(
1468 xl('New form validation'),
1469 'bool',
1470 '1',
1471 xl('New form validation')
1476 // Notifications Tab
1478 'Notifications' => array(
1480 'patient_reminder_sender_name' => array(
1481 xl('Patient Reminder Sender Name'),
1482 'text', // data type
1483 '', // default
1484 xl('Name of the sender for patient reminders.')
1487 'patient_reminder_sender_email' => array(
1488 xl('Patient Reminder Sender Email'),
1489 'text', // data type
1490 '', // default
1491 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.')
1494 'practice_return_email_path' => array(
1495 xl('Notification Email Address'),
1496 'text', // data type
1497 '', // default
1498 xl('Email address, if any, to receive administrative notifications.')
1501 'EMAIL_METHOD' => array(
1502 xl('Email Transport Method'),
1503 array(
1504 'PHPMAIL' => 'PHPMAIL',
1505 'SENDMAIL' => 'SENDMAIL',
1506 'SMTP' => 'SMTP',
1508 'SMTP', // default
1509 xl('Method for sending outgoing email.')
1512 'SMTP_HOST' => array(
1513 xl('SMTP Server Hostname'),
1514 'text', // data type
1515 'localhost', // default
1516 xl('If SMTP is used, the server`s hostname or IP address.')
1519 'SMTP_PORT' => array(
1520 xl('SMTP Server Port Number'),
1521 'num', // data type
1522 '25', // default
1523 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1526 'SMTP_USER' => array(
1527 xl('SMTP User for Authentication'),
1528 'text', // data type
1529 '', // default
1530 xl('Must be empty if SMTP authentication is not used.')
1533 'SMTP_PASS' => array(
1534 xl('SMTP Password for Authentication'),
1535 'text', // data type
1536 '', // default
1537 xl('Must be empty if SMTP authentication is not used.')
1540 'SMTP_SECURE' => array(
1541 xl('SMTP Security Protocol'),
1542 array(
1543 '' => xl('None'),
1544 'ssl' => 'SSL',
1545 'tls' => 'TLS'
1548 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1551 'EMAIL_NOTIFICATION_HOUR' => array(
1552 xl('Email Notification Hours'),
1553 'num', // data type
1554 '50', // default
1555 xl('Number of hours in advance to send email notifications.')
1558 'SMS_NOTIFICATION_HOUR' => array(
1559 xl('SMS Notification Hours'),
1560 'num', // data type
1561 '50', // default
1562 xl('Number of hours in advance to send SMS notifications.')
1565 'SMS_GATEWAY_USENAME' => array(
1566 xl('SMS Gateway Username'),
1567 'text', // data type
1568 '', // default
1569 xl('Username for SMS Gateway.')
1572 'SMS_GATEWAY_PASSWORD' => array(
1573 xl('SMS Gateway Password'),
1574 'text', // data type
1575 '', // default
1576 xl('Password for SMS Gateway.')
1579 'SMS_GATEWAY_APIKEY' => array(
1580 xl('SMS Gateway API Key'),
1581 'text', // data type
1582 '', // default
1583 xl('API key for SMS Gateway.')
1586 'phone_notification_hour' => array(
1587 xl('Phone Notification Hour'),
1588 'num', // data type
1589 '50', // default
1590 xl('Number of hours in advance to send Phone notification.')
1593 'phone_gateway_username' => array(
1594 xl('Phone Gateway Username'),
1595 'text', // data type
1596 '', // default
1597 xl('Username for Phone Gateway.')
1600 'phone_gateway_password' => array(
1601 xl('Phone Gateway Password'),
1602 'text', // data type
1603 '', // default
1604 xl('Password for Phone Gateway.')
1607 'phone_gateway_url' => array(
1608 xl('Phone Gateway URL'),
1609 'text', // data type
1610 '', // default
1611 xl('URL for Phone Gateway.')
1616 // CDR (Clinical Decision Rules)
1618 'CDR' => array(
1620 'enable_cdr' => array(
1621 xl('Enable Clinical Decisions Rules (CDR)'),
1622 'bool', // data type
1623 '1', // default
1624 xl('Enable Clinical Decisions Rules (CDR)')
1627 'enable_allergy_check' => array(
1628 xl('Enable Allergy Check'),
1629 'bool', // data type
1630 '1', // default
1631 xl('Enable Allergy Check Against Medications and Prescriptions')
1634 'enable_alert_log' => array(
1635 xl('Enable Alert Log'),
1636 'bool', // data type
1637 '1', // default
1638 xl('Enable Alert Logging')
1641 'enable_cdr_new_crp' => array(
1642 xl('Enable Clinical Passive New Reminder(s) Popup'),
1643 'bool', // data type
1644 '1', // default
1645 xl('Enable Clinical Passive New Reminder(s) Popup')
1648 'enable_cdr_crw' => array(
1649 xl('Enable Clinical Passive Reminder Widget'),
1650 'bool', // data type
1651 '1', // default
1652 xl('Enable Clinical Passive Reminder Widget')
1655 'enable_cdr_crp' => array(
1656 xl('Enable Clinical Active Reminder Popup'),
1657 'bool', // data type
1658 '1', // default
1659 xl('Enable Clinical Active Reminder Popup')
1662 'enable_cdr_prw' => array(
1663 xl('Enable Patient Reminder Widget'),
1664 'bool', // data type
1665 '1', // default
1666 xl('Enable Patient Reminder Widget')
1669 'enable_cqm' => array(
1670 xl('Enable CQM Reporting'),
1671 'bool', // data type
1672 '1', // default
1673 xl('Enable Clinical Quality Measure (CQM) Reporting')
1676 'pqri_registry_name' => array(
1677 xl('PQRI Registry Name'),
1678 'text', // data type
1679 'Model Registry', // default
1680 xl('PQRI Registry Name')
1683 'pqri_registry_id' => array(
1684 xl('PQRI Registry ID'),
1685 'text', // data type
1686 '125789123', // default
1687 xl('PQRI Registry ID')
1690 'enable_amc' => array(
1691 xl('Enable AMC Reporting'),
1692 'bool', // data type
1693 '1', // default
1694 xl('Enable Automated Measure Calculations (AMC) Reporting')
1697 'enable_amc_prompting' => array(
1698 xl('Enable AMC Prompting'),
1699 'bool', // data type
1700 '1', // default
1701 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1704 'enable_amc_tracking' => array(
1705 xl('Enable AMC Tracking'),
1706 'bool', // data type
1707 '1', // default
1708 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
1711 'cdr_report_nice' => array(
1712 xl('CDR Reports Processing Priority'),
1713 array(
1714 '' => xl('Default Priority'),
1715 '5' => xl('Moderate Priority'),
1716 '10' => xl('Moderate/Low Priority'),
1717 '15' => xl('Low Priority'),
1718 '20' => xl('Lowest Priority')
1720 '', // default
1721 xl('Set processing priority for CDR engine based reports.')
1724 'pat_rem_clin_nice' => array(
1725 xl('Patient Reminder Creation Processing Priority'),
1726 array(
1727 '' => xl('Default Priority'),
1728 '5' => xl('Moderate Priority'),
1729 '10' => xl('Moderate/Low Priority'),
1730 '15' => xl('Low Priority'),
1731 '20' => xl('Lowest Priority')
1733 '', // default
1734 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
1737 'report_itemizing_standard' => array(
1738 xl('Enable Standard Report Itemization'),
1739 'bool', // data type
1740 '1', // default
1741 xl('Enable Itemization of Standard Clinical Rules Reports')
1744 'report_itemizing_cqm' => array(
1745 xl('Enable CQM Report Itemization'),
1746 'bool', // data type
1747 '1', // default
1748 xl('Enable Itemization of CQM Reports')
1751 'report_itemizing_amc' => array(
1752 xl('Enable AMC Report Itemization'),
1753 'bool', // data type
1754 '1', // default
1755 xl('Enable Itemization of AMC Reports')
1760 // Logging
1762 'Logging' => array(
1764 'enable_auditlog' => array(
1765 xl('Enable Audit Logging'),
1766 'bool', // data type
1767 '1', // default
1768 xl('Enable Audit Logging')
1771 'audit_events_patient-record' => array(
1772 xl('Audit Logging Patient Record'),
1773 'bool', // data type
1774 '1', // default
1775 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1778 'audit_events_scheduling' => array(
1779 xl('Audit Logging Scheduling'),
1780 'bool', // data type
1781 '1', // default
1782 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1785 'audit_events_order' => array(
1786 xl('Audit Logging Order'),
1787 'bool', // data type
1788 '1', // default
1789 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1792 'audit_events_security-administration' => array(
1793 xl('Audit Logging Security Administration'),
1794 'bool', // data type
1795 '1', // default
1796 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1799 'audit_events_backup' => array(
1800 xl('Audit Logging Backups'),
1801 'bool', // data type
1802 '1', // default
1803 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1806 'audit_events_other' => array(
1807 xl('Audit Logging Miscellaneous'),
1808 'bool', // data type
1809 '1', // default
1810 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1813 'audit_events_query' => array(
1814 xl('Audit Logging SELECT Query'),
1815 'bool', // data type
1816 '0', // default
1817 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1820 'audit_events_cdr' => array(
1821 xl('Audit CDR Engine Queries'),
1822 'bool', // data type
1823 '0', // default
1824 xl('Enable logging of CDR Engine Queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1827 'enable_atna_audit' => array(
1828 xl('Enable ATNA Auditing'),
1829 'bool', // data type
1830 '0', // default
1831 xl('Enable Audit Trail and Node Authentication (ATNA).')
1834 'atna_audit_host' => array(
1835 xl('ATNA audit host'),
1836 'text', // data type
1837 '', // default
1838 xl('The hostname of the ATNA audit repository machine.')
1841 'atna_audit_port' => array(
1842 xl('ATNA audit port'),
1843 'text', // data type
1844 '6514', // default
1845 xl('Listening port of the RFC 5425 TLS syslog server.')
1848 'atna_audit_localcert' => array(
1849 xl('ATNA audit local certificate'),
1850 'text', // data type
1851 '', // default
1852 xl('Certificate to send to RFC 5425 TLS syslog server.')
1855 'atna_audit_cacert' => array(
1856 xl('ATNA audit CA certificate'),
1857 'text', // data type
1858 '', // default
1859 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
1862 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
1863 'enable_auditlog_encryption' => array(
1864 xl('Enable Audit Log Encryption'),
1865 'bool', // data type
1866 '0', // default
1867 xl('Enable Audit Log Encryption')
1870 'billing_log_option' => array(
1871 xl('Billing Log Option'),
1872 array(
1873 '1' => xl('Billing Log Append'),
1874 '2' => xl('Billing Log Overwrite')
1876 '1', // default
1877 xl('Billing log setting to append or overwrite the log file.')
1880 'gbl_print_log_option' => array(
1881 xl('Printing Log Option'),
1882 array(
1883 '0' => xl('No logging'),
1884 '1' => xl('Hide print feature'),
1885 '2' => xl('Log entire document'),
1887 '0', // default
1888 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
1893 // Miscellaneous Tab
1895 'Miscellaneous' => array(
1897 'mysql_bin_dir' => array(
1898 xl('Path to MySQL Binaries'),
1899 'text', // data type
1900 $mysql_bin_dir, // default
1901 xl('Full path to directory containing MySQL executables.')
1904 'perl_bin_dir' => array(
1905 xl('Path to Perl Binaries'),
1906 'text', // data type
1907 $perl_bin_dir, // default
1908 xl('Full path to directory containing Perl executables.')
1911 'temporary_files_dir' => array(
1912 xl('Path to Temporary Files'),
1913 'text', // data type
1914 $temporary_files_dir, // default
1915 xl('Full path to directory used for temporary files.')
1918 'backup_log_dir' => array(
1919 xl('Path for Event Log Backup'),
1920 'text', // data type
1921 $backup_log_dir, // default
1922 xl('Full path to directory for event log backup.')
1925 'state_data_type' => array(
1926 xl('State Data Type'),
1927 array(
1928 '2' => xl('Text field'),
1929 '1' => xl('Single-selection list'),
1930 '26' => xl('Single-selection list with ability to add to the list'),
1932 '26', // default
1933 xl('Field type to use for employer or subscriber state in demographics.')
1936 'state_list' => array(
1937 xl('State list'),
1938 'text', // data type
1939 'state', // default
1940 xl('List used by above State Data Type option.')
1943 'state_custom_addlist_widget' => array(
1944 xl('State List Widget Custom Fields'),
1945 'bool', // data type
1946 '1', // default
1947 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
1950 'country_data_type' => array(
1951 xl('Country Data Type'),
1952 array(
1953 '2' => xl('Text field'),
1954 '1' => xl('Single-selection list'),
1955 '26' => xl('Single-selection list with ability to add to the list'),
1957 '26', // default
1958 xl('Field type to use for employer or subscriber country in demographics.')
1961 'country_list' => array(
1962 xl('Country list'),
1963 'text', // data type
1964 'country', // default
1965 xl('List used by above Country Data Type option.')
1968 'print_command' => array(
1969 xl('Print Command'),
1970 'text', // data type
1971 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
1972 xl('Shell command for printing from the server.')
1975 'default_chief_complaint' => array(
1976 xl('Default Reason for Visit'),
1977 'text', // data type
1979 xl('You may put text here as the default complaint in the New Patient Encounter form.')
1982 'default_new_encounter_form' => array(
1983 xl('Default Encounter Form ID'),
1984 'text', // data type
1986 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
1989 'MedicareReferrerIsRenderer' => array(
1990 xl('Medicare Referrer Is Renderer'),
1991 'bool', // data type
1992 '0', // default = true
1993 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
1996 'post_to_date_benchmark' => array(
1997 xl('Financial Close Date (yyyy-mm-dd)'),
1998 'text', // data type
1999 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
2000 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2003 'enable_hylafax' => array(
2004 xl('Enable Hylafax Support'),
2005 'bool', // data type
2006 '0', // default
2007 xl('Enable Hylafax Support')
2010 'hylafax_server' => array(
2011 xl('Hylafax Server'),
2012 'text', // data type
2013 'localhost', // default
2014 xl('Hylafax server hostname.')
2017 'hylafax_basedir' => array(
2018 xl('Hylafax Directory'),
2019 'text', // data type
2020 '/var/spool/fax', // default
2021 xl('Location where Hylafax stores faxes.')
2024 'hylafax_enscript' => array(
2025 xl('Hylafax Enscript Command'),
2026 'text', // data type
2027 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2028 xl('Enscript command used by Hylafax.')
2031 'enable_scanner' => array(
2032 xl('Enable Scanner Support'),
2033 'bool', // data type
2034 '0', // default
2035 xl('Enable Scanner Support')
2038 'scanner_output_directory' => array(
2039 xl('Scanner Directory'),
2040 'text', // data type
2041 '/mnt/scan_docs', // default
2042 xl('Location where scans are stored.')
2046 // Portal Tab
2048 'Portal' => array(
2050 'portal_onsite_enable' => array(
2051 xl('Enable Onsite Patient Portal'),
2052 'bool', // data type
2053 '0',
2054 xl('Enable Onsite Patient Portal.')
2057 'portal_onsite_address' => array(
2058 xl('Onsite Patient Portal Site Address'),
2059 'text', // data type
2060 'https://your_web_site.com/openemr/patients',
2061 xl('Website link for the Onsite Patient Portal.')
2064 'portal_onsite_document_download' => array(
2065 xl('Enable Onsite Patient Portal Document Download'),
2066 'bool', // data type
2067 '1',
2068 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2071 'portal_offsite_enable' => array(
2072 xl('Enable Offsite Patient Portal'),
2073 'bool', // data type
2074 '0',
2075 xl('Enable Offsite Patient Portal.')
2078 'portal_offsite_providerid' => array(
2079 xl('Offsite Patient Portal Provider ID'),
2080 'text', // data type
2082 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2085 'portal_offsite_username' => array(
2086 xl('Offsite Patient Portal Username'),
2087 'text', // data type
2089 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2092 'portal_offsite_password' => array(
2093 xl('Offsite Patient Portal Password'),
2094 'pwd', // data type
2096 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2099 'portal_offsite_address' => array(
2100 xl('Offsite Patient Portal Site Address'),
2101 'text', // data type
2102 'https://ssh.mydocsportal.com/provider.php',
2103 xl('Offsite Https link for the Patient Portal.')
2106 'portal_offsite_address_patient_link' => array(
2107 xl('Offsite Patient Portal Site Address (Patient Link)'),
2108 'text', // data type
2109 'https://ssh.mydocsportal.com',
2110 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2113 // Currently the "CMS Portal" supports WordPress. Other Content Management
2114 // Systems may be supported in the future.
2116 'gbl_portal_cms_enable' => array(
2117 xl('Enable CMS Portal'),
2118 'bool', // data type
2119 '0',
2120 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2123 'gbl_portal_cms_address' => array(
2124 xl('CMS Portal Site Address'),
2125 'text', // data type
2126 'https://your_cms_site.com/',
2127 xl('URL for the WordPress site that supports the portal')
2130 'gbl_portal_cms_username' => array(
2131 xl('CMS Portal Username'),
2132 'text', // data type
2134 xl('Login name of WordPress user for portal access')
2137 'gbl_portal_cms_password' => array(
2138 xl('CMS Portal Password'),
2139 'text', // data type
2141 xl('Password for the above user')
2146 // Connectors Tab
2148 'Connectors' => array(
2150 'erx_enable' => array(
2151 xl('Enable NewCrop eRx Service'),
2152 'bool',
2153 '0',
2154 xl('Enable NewCrop eRx Service.') + ' ' +
2155 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.')
2158 'erx_newcrop_path' => array(
2159 xl('NewCrop eRx Site Address'),
2160 'text',
2161 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2162 xl('URL for NewCrop eRx Site Address.')
2165 'erx_newcrop_path_soap' => array(
2166 xl('NewCrop eRx Web Service Address'),
2167 'text',
2168 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2169 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2172 'erx_soap_ttl_allergies' => array(
2173 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2174 'num',
2175 '21600',
2176 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2179 'erx_soap_ttl_medications' => array(
2180 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2181 'num',
2182 '21600',
2183 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2186 'erx_account_partner_name' => array(
2187 xl('NewCrop eRx Partner Name'),
2188 'text',
2190 xl('Partner Name issued for NewCrop eRx service.')
2193 'erx_account_name' => array(
2194 xl('NewCrop eRx Name'),
2195 'text',
2197 xl('Account Name issued for NewCrop eRx service.')
2200 'erx_account_password' => array(
2201 xl('NewCrop eRx Password'),
2202 'pass',
2204 xl('Account Password issued for NewCrop eRx service.')
2207 'erx_account_id' => array(
2208 xl('NewCrop eRx Account Id'),
2209 'text',
2210 '1',
2211 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2214 'erx_upload_active' => array(
2215 xl('Only upload active prescriptions'),
2216 'bool',
2217 '0',
2218 xl('Only upload active prescriptions to NewCrop eRx.')
2221 'erx_import_status_message' => array(
2222 xl('Enable NewCrop eRx import status message'),
2223 'bool',
2224 '0',
2225 xl('Enable import status message after visiting NewCrop eRx.')
2228 'erx_medication_display' => array(
2229 xl('Do not display NewCrop eRx Medications uploaded'),
2230 'bool',
2231 '0',
2232 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2235 'erx_allergy_display' => array(
2236 xl('Do not display NewCrop eRx Allergy uploaded'),
2237 'bool',
2238 '0',
2239 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2242 'erx_default_patient_country' => array(
2243 xl('NewCrop eRx Default Patient Country'),
2244 array(
2245 '' => '',
2246 'US' => xl('USA'),
2247 'CA' => xl('Canada'),
2248 'MX' => xl('Mexico'),
2251 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2254 'erx_debug_setting' => array(
2255 xl('NewCrop eRx Debug Setting'),
2256 array(
2257 0 => xl('None'),
2258 1 => xl('Request Only'),
2259 2 => xl('Response Only'),
2260 3 => xl('Request & Response'),
2262 '0',
2263 xl('Log all NewCrop eRx Requests and / or Responses.'),
2266 'phimail_enable' => array(
2267 xl('Enable phiMail Direct Messaging Service'),
2268 'bool', // data type
2269 '0',
2270 xl('Enable phiMail Direct Messaging Service')
2273 'phimail_server_address' => array(
2274 xl('phiMail Server Address'),
2275 'text', // data type
2276 'https://phimail.example.com:32541',
2277 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2280 'phimail_username' => array(
2281 xl('phiMail Username'),
2282 'text', // data type
2284 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2287 'phimail_password' => array(
2288 xl('phiMail Password'),
2289 'pass', // data type
2291 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2294 'phimail_notify' => array(
2295 xl('phiMail notification user'),
2296 'text', // data type
2297 'admin',
2298 xl('This user will receive notification of new incoming Direct messages')
2301 'phimail_interval' => array(
2302 xl('phiMail Message Check Interval (minutes)'),
2303 'num', // data type
2304 '5',
2305 xl('Interval between message checks (set to zero for manual checks only)')
2308 'phimail_ccd_enable' => array(
2309 xl('phiMail Allow CCD Send'),
2310 'bool', // data type
2311 '0',
2312 xl('phiMail Allow CCD Send')
2315 'phimail_ccr_enable' => array(
2316 xl('phiMail Allow CCR Send'),
2317 'bool', // data type
2318 '0',
2319 xl('phiMail Allow CCR Send')
2323 'Rx' => array(
2324 'rx_enable_DEA' => array(
2325 xl('Rx Enable DEA #'),
2326 'bool', // data type
2327 '1',
2328 xl('Rx Enable DEA #')
2330 'rx_show_DEA' => array(
2331 xl('Rx Show DEA #'),
2332 'bool', // data type
2333 '0',
2334 xl('Rx Show DEA #')
2336 'rx_enable_NPI' => array(
2337 xl('Rx Enable NPI'),
2338 'bool', // data type
2339 '0',
2340 xl('Rx Enable NPI')
2342 'rx_show_NPI' => array(
2343 xl('Rx Show NPI'),
2344 'bool', // data type
2345 '0',
2346 xl('Rx Show NPI')
2348 'rx_enable_SLN' => array(
2349 xl('Rx Enable State Lic. #'),
2350 'bool', // data type
2351 '0',
2352 xl('Rx Enable State Lic. #')
2354 'rx_show_SLN' => array(
2355 xl('Rx Show State Lic. #'),
2356 'bool', // data type
2357 '0',
2358 xl('Rx Show State Lic. #')
2360 'rx_paper_size' => array(
2361 xl('Rx Paper Size'), // descriptive name
2362 array(
2363 'LETTER' => xl('Letter Paper Size'),
2364 'LEGAL' => xl('Legal Paper Size'),
2365 'FOLIO' => xl('Folio Paper Size'),
2366 'EXECUTIVE' => xl('Executive Paper Size'),
2367 '4A0' => ('4A0' . " " . xl('Paper Size')),
2368 '2A0' => ('2A0' . " " . xl('Paper Size')),
2369 'A0' => ('A0' . " " . xl('Paper Size')),
2370 'A1' => ('A1' . " " . xl('Paper Size')),
2371 'A2' => ('A2' . " " . xl('Paper Size')),
2372 'A3' => ('A3' . " " . xl('Paper Size')),
2373 'A4' => ('A4' . " " . xl('Paper Size')),
2374 'A5' => ('A5' . " " . xl('Paper Size')),
2375 'A6' => ('A6' . " " . xl('Paper Size')),
2376 'A7' => ('A7' . " " . xl('Paper Size')),
2377 'A8' => ('A8' . " " . xl('Paper Size')),
2378 'A9' => ('A9' . " " . xl('Paper Size')),
2379 'A10' => ('A10' . " " . xl('Paper Size')),
2380 'B0' => ('B0' . " " . xl('Paper Size')),
2381 'B1' => ('B1' . " " . xl('Paper Size')),
2382 'B2' => ('B2' . " " . xl('Paper Size')),
2383 'B3' => ('B3' . " " . xl('Paper Size')),
2384 'B4' => ('B4' . " " . xl('Paper Size')),
2385 'B5' => ('B5' . " " . xl('Paper Size')),
2386 'B6' => ('B6' . " " . xl('Paper Size')),
2387 'B7' => ('B7' . " " . xl('Paper Size')),
2388 'B8' => ('B8' . " " . xl('Paper Size')),
2389 'B9' => ('B9' . " " . xl('Paper Size')),
2390 'B10' => ('B10' . " " . xl('Paper Size')),
2391 'C0' => ('C0' . " " . xl('Paper Size')),
2392 'C1' => ('C1' . " " . xl('Paper Size')),
2393 'C2' => ('C2' . " " . xl('Paper Size')),
2394 'C3' => ('C3' . " " . xl('Paper Size')),
2395 'C4' => ('C4' . " " . xl('Paper Size')),
2396 'C5' => ('C5' . " " . xl('Paper Size')),
2397 'C6' => ('C6' . " " . xl('Paper Size')),
2398 'C7' => ('C7' . " " . xl('Paper Size')),
2399 'C8' => ('C8' . " " . xl('Paper Size')),
2400 'C9' => ('C9' . " " . xl('Paper Size')),
2401 'C10' => ('C10' . " " . xl('Paper Size')),
2402 'RA0' => ('RA0' . " " . xl('Paper Size')),
2403 'RA1' => ('RA1' . " " . xl('Paper Size')),
2404 'RA2' => ('RA2' . " " . xl('Paper Size')),
2405 'RA3' => ('RA3' . " " . xl('Paper Size')),
2406 'RA4' => ('RA4' . " " . xl('Paper Size')),
2407 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2408 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2409 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2410 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2411 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2413 'LETTER', // default = tree menu
2414 xl('Rx Paper Size')
2416 'rx_left_margin' => array(
2417 xl('Rx Left Margin (px)'),
2418 'num',
2419 '30',
2420 xl('Rx Left Margin (px)')
2422 'rx_right_margin' => array(
2423 xl('Rx Right Margin (px)'),
2424 'num',
2425 '30',
2426 xl('Rx Right Margin (px)')
2428 'rx_top_margin' => array(
2429 xl('Rx Top Margin (px)'),
2430 'num',
2431 '72',
2432 xl('Rx Top Margin (px)')
2434 'rx_bottom_margin' => array(
2435 xl('Rx Bottom Margin (px)'),
2436 'num',
2437 '30',
2438 xl('Rx Bottom Margin (px)')
2442 'PDF' => array (
2443 'pdf_layout' => array (
2444 xl('Layout'),
2445 array(
2446 'P' => xl('Portrait'),
2447 'L' => xl('Landscape')
2449 'P', //defaut
2450 xl("Choose Layout Direction"),
2452 'pdf_language' => array (
2453 xl('PDF Language'),
2454 array(
2455 'aa' => xl('Afar'),
2456 'af' => xl('Afrikaans'),
2457 'ak' => xl('Akan'),
2458 'sq' => xl('Albanian'),
2459 'am' => xl('Amharic'),
2460 'ar' => xl('Arabic'),
2461 'an' => xl('Aragonese'),
2462 'hy' => xl('Armenian'),
2463 'as' => xl('Assamese'),
2464 'av' => xl('Avaric'),
2465 'ae' => xl('Avestan'),
2466 'ay' => xl('Aymara'),
2467 'az' => xl('Azerbaijani'),
2468 'bm' => xl('Bambara'),
2469 'ba' => xl('Bashkir'),
2470 'eu' => xl('Basque'),
2471 'be' => xl('Belarusian'),
2472 'bn' => xl('Bengali- Bangla'),
2473 'bh' => xl('Bihari'),
2474 'bi' => xl('Bislama'),
2475 'bs' => xl('Bosnian'),
2476 'br' => xl('Breton'),
2477 'bg' => xl('Bulgarian'),
2478 'my' => xl('Burmese'),
2479 'ca' => xl('Catalan- Valencian'),
2480 'ch' => xl('Chamorro'),
2481 'ce' => xl('Chechen'),
2482 'ny' => xl('Chichewa- Chewa- Nyanja'),
2483 'zh' => xl('Chinese'),
2484 'cv' => xl('Chuvash'),
2485 'kw' => xl('Cornish'),
2486 'co' => xl('Corsican'),
2487 'cr' => xl('Cree'),
2488 'hr' => xl('Croatian'),
2489 'cs' => xl('Czech'),
2490 'da' => xl('Danish'),
2491 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2492 'nl' => xl('Dutch'),
2493 'dz' => xl('Dzongkha'),
2494 'en' => xl('English'),
2495 'eo' => xl('Esperanto'),
2496 'et' => xl('Estonian'),
2497 'ee' => xl('Ewe'),
2498 'fo' => xl('Faroese'),
2499 'fj' => xl('Fijian'),
2500 'fi' => xl('Finnish'),
2501 'fr' => xl('French'),
2502 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2503 'gl' => xl('Galician'),
2504 'ka' => xl('Georgian'),
2505 'de' => xl('German'),
2506 'el' => xl('Greek, Modern'),
2507 'gn' => xl('Guaraní'),
2508 'gu' => xl('Gujarati'),
2509 'ht' => xl('Haitian- Haitian Creole'),
2510 'ha' => xl('Hausa'),
2511 'he' => xl('Hebrew (modern)'),
2512 'hz' => xl('Herero'),
2513 'hi' => xl('Hindi'),
2514 'ho' => xl('Hiri Motu'),
2515 'hu' => xl('Hungarian'),
2516 'ia' => xl('Interlingua'),
2517 'id' => xl('Indonesian'),
2518 'ie' => xl('Interlingue'),
2519 'ga' => xl('Irish'),
2520 'ig' => xl('Igbo'),
2521 'ik' => xl('Inupiaq'),
2522 'io' => xl('Ido'),
2523 'is' => xl('Icelandic'),
2524 'it' => xl('Italian'),
2525 'iu' => xl('Inuktitut'),
2526 'ja' => xl('Japanese'),
2527 'jv' => xl('Javanese'),
2528 'kl' => xl('Kalaallisut, Greenlandic'),
2529 'kn' => xl('Kannada'),
2530 'kr' => xl('Kanuri'),
2531 'ks' => xl('Kashmiri'),
2532 'kk' => xl('Kazakh'),
2533 'km' => xl('Khmer'),
2534 'ki' => xl('Kikuyu, Gikuyu'),
2535 'rw' => xl('Kinyarwanda'),
2536 'ky' => xl('Kyrgyz'),
2537 'kv' => xl('Komi'),
2538 'kg' => xl('Kongo'),
2539 'ko' => xl('Korean'),
2540 'ku' => xl('Kurdish'),
2541 'kj' => xl('Kwanyama, Kuanyama'),
2542 'la' => xl('Latin'),
2543 'lb' => xl('Luxembourgish, Letzeburgesch'),
2544 'lg' => xl('Ganda'),
2545 'li' => xl('Limburgish, Limburgan, Limburger'),
2546 'ln' => xl('Lingala'),
2547 'lo' => xl('Lao'),
2548 'lt' => xl('Lithuanian'),
2549 'lu' => xl('Luba-Katanga'),
2550 'lv' => xl('Latvian'),
2551 'gv' => xl('Manx'),
2552 'mk' => xl('Macedonian'),
2553 'mg' => xl('Malagasy'),
2554 'ms' => xl('Malay'),
2555 'ml' => xl('Malayalam'),
2556 'mt' => xl('Maltese'),
2557 'mi' => xl('Māori'),
2558 'mr' => xl('Marathi (Marāṭhī)'),
2559 'mh' => xl('Marshallese'),
2560 'mn' => xl('Mongolian'),
2561 'na' => xl('Nauru'),
2562 'nv' => xl('Navajo, Navaho'),
2563 'nb' => xl('Norwegian Bokmål'),
2564 'nd' => xl('North Ndebele'),
2565 'ne' => xl('Nepali'),
2566 'ng' => xl('Ndonga'),
2567 'nn' => xl('Norwegian Nynorsk'),
2568 'no' => xl('Norwegian'),
2569 'ii' => xl('Nuosu'),
2570 'nr' => xl('South Ndebele'),
2571 'oc' => xl('Occitan'),
2572 'oj' => xl('Ojibwe, Ojibwa'),
2573 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2574 'om' => xl('Oromo'),
2575 'or' => xl('Oriya'),
2576 'os' => xl('Ossetian, Ossetic'),
2577 'pa' => xl('Panjabi, Punjabi'),
2578 'pi' => xl('Pāli'),
2579 'fa' => xl('Persian (Farsi)'),
2580 'pl' => xl('Polish'),
2581 'ps' => xl('Pashto, Pushto'),
2582 'pt' => xl('Portuguese'),
2583 'qu' => xl('Quechua'),
2584 'rm' => xl('Romansh'),
2585 'rn' => xl('Kirundi'),
2586 'ro' => xl('Romanian'),
2587 'ru' => xl('Russian'),
2588 'sa' => xl('Sanskrit (Saṁskṛta)'),
2589 'sc' => xl('Sardinian'),
2590 'sd' => xl('Sindhi'),
2591 'se' => xl('Northern Sami'),
2592 'sm' => xl('Samoan'),
2593 'sg' => xl('Sango'),
2594 'sr' => xl('Serbian'),
2595 'gd' => xl('Scottish Gaelic- Gaelic'),
2596 'sn' => xl('Shona'),
2597 'si' => xl('Sinhala, Sinhalese'),
2598 'sk' => xl('Slovak'),
2599 'sl' => xl('Slovene'),
2600 'so' => xl('Somali'),
2601 'st' => xl('Southern Sotho'),
2602 'es' => xl('Spanish- Castilian'),
2603 'su' => xl('Sundanese'),
2604 'sw' => xl('Swahili'),
2605 'ss' => xl('Swati'),
2606 'sv' => xl('Swedish'),
2607 'ta' => xl('Tamil'),
2608 'te' => xl('Telugu'),
2609 'tg' => xl('Tajik'),
2610 'th' => xl('Thai'),
2611 'ti' => xl('Tigrinya'),
2612 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2613 'tk' => xl('Turkmen'),
2614 'tl' => xl('Tagalog'),
2615 'tn' => xl('Tswana'),
2616 'to' => xl('Tonga (Tonga Islands)'),
2617 'tr' => xl('Turkish'),
2618 'ts' => xl('Tsonga'),
2619 'tt' => xl('Tatar'),
2620 'tw' => xl('Twi'),
2621 'ty' => xl('Tahitian'),
2622 'ug' => xl('Uyghur, Uighur'),
2623 'uk' => xl('Ukrainian'),
2624 'ur' => xl('Urdu'),
2625 'uz' => xl('Uzbek'),
2626 've' => xl('Venda'),
2627 'vi' => xl('Vietnamese'),
2628 'vo' => xl('Volapük'),
2629 'wa' => xl('Walloon'),
2630 'cy' => xl('Welsh'),
2631 'wo' => xl('Wolof'),
2632 'fy' => xl('Western Frisian'),
2633 'xh' => xl('Xhosa'),
2634 'yi' => xl('Yiddish'),
2635 'yo' => xl('Yoruba'),
2636 'za' => xl('Zhuang, Chuang'),
2637 'zu' => xl('Zulu'),
2639 'en', // default English
2640 xl('Choose PDF languange Preference'),
2642 'pdf_size' => array(
2643 xl('Paper Size'), // Descriptive Name
2644 array(
2645 'LETTER' => xl('Letter Paper Size'),
2646 'LEGAL' => xl('Legal Paper Size'),
2647 'FOLIO' => xl('Folio Paper Size'),
2648 'EXECUTIVE' => xl('Executive Paper Size'),
2649 '4A0' => ('4A0' . " " . xl('Paper Size')),
2650 '2A0' => ('2A0' . " " . xl('Paper Size')),
2651 'A0' => ('A0' . " " . xl('Paper Size')),
2652 'A1' => ('A1' . " " . xl('Paper Size')),
2653 'A2' => ('A2' . " " . xl('Paper Size')),
2654 'A3' => ('A3' . " " . xl('Paper Size')),
2655 'A4' => ('A4' . " " . xl('Paper Size')),
2656 'A5' => ('A5' . " " . xl('Paper Size')),
2657 'A6' => ('A6' . " " . xl('Paper Size')),
2658 'A7' => ('A7' . " " . xl('Paper Size')),
2659 'A8' => ('A8' . " " . xl('Paper Size')),
2660 'A9' => ('A9' . " " . xl('Paper Size')),
2661 'A10' => ('A10' . " " . xl('Paper Size')),
2662 'B0' => ('B0' . " " . xl('Paper Size')),
2663 'B1' => ('B1' . " " . xl('Paper Size')),
2664 'B2' => ('B2' . " " . xl('Paper Size')),
2665 'B3' => ('B3' . " " . xl('Paper Size')),
2666 'B4' => ('B4' . " " . xl('Paper Size')),
2667 'B5' => ('B5' . " " . xl('Paper Size')),
2668 'B6' => ('B6' . " " . xl('Paper Size')),
2669 'B7' => ('B7' . " " . xl('Paper Size')),
2670 'B8' => ('B8' . " " . xl('Paper Size')),
2671 'B9' => ('B9' . " " . xl('Paper Size')),
2672 'B10' => ('B10' . " " . xl('Paper Size')),
2673 'C0' => ('C0' . " " . xl('Paper Size')),
2674 'C1' => ('C1' . " " . xl('Paper Size')),
2675 'C2' => ('C2' . " " . xl('Paper Size')),
2676 'C3' => ('C3' . " " . xl('Paper Size')),
2677 'C4' => ('C4' . " " . xl('Paper Size')),
2678 'C5' => ('C5' . " " . xl('Paper Size')),
2679 'C6' => ('C6' . " " . xl('Paper Size')),
2680 'C7' => ('C7' . " " . xl('Paper Size')),
2681 'C8' => ('C8' . " " . xl('Paper Size')),
2682 'C9' => ('C9' . " " . xl('Paper Size')),
2683 'C10' => ('C10' . " " . xl('Paper Size')),
2684 'RA0' => ('RA0' . " " . xl('Paper Size')),
2685 'RA1' => ('RA1' . " " . xl('Paper Size')),
2686 'RA2' => ('RA2' . " " . xl('Paper Size')),
2687 'RA3' => ('RA3' . " " . xl('Paper Size')),
2688 'RA4' => ('RA4' . " " . xl('Paper Size')),
2689 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2690 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2691 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2692 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2693 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2695 'LETTER',
2696 xl('Choose Paper Size')
2698 'pdf_left_margin' => array(
2699 xl('Left Margin (mm)'),
2700 'num',
2701 '5',
2702 xl('Left Margin (mm)')
2704 'pdf_right_margin' => array(
2705 xl('Right Margin (mm)'),
2706 'num',
2707 '5',
2708 xl('Right Margin (mm)')
2710 'pdf_top_margin' => array(
2711 xl('Top Margin (mm)'),
2712 'num',
2713 '5',
2714 xl('Top Margin (mm)')
2716 'pdf_bottom_margin' => array(
2717 xl('Bottom Margin (px)'),
2718 'num',
2719 '8',
2720 xl('Bottom Margin (px)')
2722 'pdf_output' => array (
2723 xl('Output Type'),
2724 array(
2725 'D' => xl('Download'),
2726 'I' => xl('Inline')
2728 'D', //defaut
2729 xl("Choose Download or Display Inline"),
2732 'chart_label_type' => array(
2733 xl('Patient Label Type'),
2734 array(
2735 '0' => xl('None'),
2736 '1' => '5160',
2737 '2' => '5161',
2738 '3' => '5162'
2740 '1', // default
2741 xl('Avery Label type for printing patient labels from popups in left nav screen'),
2744 'barcode_label_type' => array(
2745 xl('Barcode Label Type'),
2746 array(
2747 '0' => xl('None'),
2748 '1' => 'std25',
2749 '2' => 'int25',
2750 '3' => 'ean8',
2751 '4' => 'ean13',
2752 '5' => 'upc',
2753 '6' => 'code11',
2754 '7' => 'code39',
2755 '8' => 'code93',
2756 '9' => 'code128',
2757 '10' => 'codabar',
2758 '11' => 'msi',
2759 '12' => 'datamatrix'
2761 '9', // default = None
2762 xl('Barcode type for printing barcode labels from popups in left nav screen.')
2765 'addr_label_type' => array(
2766 xl('Print Patient Address Label'),
2767 'bool', // data type
2768 '1', // default = false
2769 xl('Select to print patient address labels from popups in left nav screen.')