Changed style_tan_no_icons.css to style_tan.css
[openemr.git] / library / globals.inc.php
blob604d0295c52e386d5b3943f0f5088b96f9eb9288
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 'force_billing_widget_open' => array(
711 xl('Force Billing Widget Open'),
712 'bool', // data type
713 '0', // default = false
714 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
717 'activate_ccr_ccd_report' => array(
718 xl('Activate CCR/CCD Reporting'),
719 'bool', // data type
720 '1', // default = true
721 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
724 'hide_document_encryption' => array(
725 xl('Hide Encryption/Decryption Options In Document Management'),
726 'bool', // data type
727 '1', // default = true
728 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
731 'use_custom_immun_list' => array(
732 xl('Use Custom Immunization List'),
733 'bool', // data type
734 '0', // default = true
735 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
738 'cms_1500' => array(
739 xl('CMS 1500 Paper Form Format'),
740 array(
741 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
742 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
744 '1', // default
745 xl('This specifies which revision of the form the billing module should generate')
748 'cms_1500_box_31_format' => array(
749 xl('CMS 1500: Box 31 Format'),
750 array(
751 '0' => xl('Signature on File'),
752 '1' => xl('Firstname Lastname'),
753 '2' => xl('None'),
755 '0', // default
756 xl('This specifies whether to include date in Box 31.')
759 'cms_1500_box_31_date' => array(
760 xl('CMS 1500: Date in Box 31 (Signature)'),
761 array(
762 '0' => xl('None'),
763 '1' => xl('Date of Service'),
764 '2' => xl('Today'),
766 '0', // default
767 xl('This specifies whether to include date in Box 31.')
770 'amendments' => array (
771 xl('Amendments'),
772 'bool', // data type
773 '1', // default = true
774 xl('Enable amendments feature')
777 'allow_pat_delete' => array(
778 xl('Allow Administrators to Delete Patients'),
779 'bool', // data type
780 '0', // default = false
781 xl('Allow Administrators to Delete Patients')
785 'observation_results_immunization' => array(
786 xl('Immunization Observation Results'),
787 'bool', // data type
788 '1', // default
789 xl('Observation Results in Immunization')
793 // Report Tab
795 'Report' => array(
797 'use_custom_daysheet' => array(
798 xl('Use Custom End of Day Report'),
799 array(
800 '0' => xl('None'),
801 '1' => xl('Print End of Day Report 1'),
802 '2' => xl('Print End of Day Report 2'),
803 '3' => xl('Print End of Day Report 3'),
804 ), // data type
805 '1', // default = Print End of Day Report 1
806 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
809 'daysheet_provider_totals' => array(
810 xl('End of Day by Provider or allow Totals Only'),
811 array(
812 '0' => xl('Provider'),
813 '1' => xl('Totals Only'),
815 '1', // default
816 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
819 'ledger_begin_date' => array(
820 xl('Beginning Date for Ledger Report'),
821 array(
822 'Y1' => xl('One Year Ago'),
823 'Y2' => xl('Two Years Ago'),
824 'M6' => xl('Six Months Ago'),
825 'M3' => xl('Three Months Ago'),
826 'M1' => xl('One Month Ago'),
827 'D1' => xl('One Day Ago'),
829 'Y1', // default = One Year
830 xl('This is the Beginning date for the Ledger Report.')
833 'print_next_appointment_on_ledger' => array(
834 xl('Print the Next Appointment on the Bottom of the Ledger'),
835 'bool', // data type
836 '1', // default = true
837 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
840 'sales_report_invoice' => array(
841 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
842 array(
843 '0' => xl('Invoice Number'),
844 '1' => xl('Patient Name and ID'),
845 '2' => xl('Patient Name and Invoice'),
847 '2', // default = 2
848 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
851 'cash_receipts_report_invoice' => array(
852 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
853 array(
854 '0' => xl('Invoice Number'),
855 '1' => xl('Patient Name'),
857 '0', // default = 0
858 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
863 // Billing Tab
865 'Billing' => array(
867 'default_search_code_type' => array(
868 xl('Default Search Code Type'),
869 'all_code_types', // data type
870 'ICD10', // default
871 xl('The default code type to search for in the Fee Sheet.')
874 'support_fee_sheet_line_item_provider' => array(
875 xl('Support provider in line item in fee sheet'),
876 'bool', // data type
877 '0', // default = false
878 xl('This Enables provider in line item in the fee sheet')
881 'default_fee_sheet_line_item_provider' => array(
882 xl('Default to a provider for line item in the fee sheet'),
883 'bool', // data type
884 '0', // default = false
885 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
888 'replicate_justification' => array(
889 xl('Automatically replicate justification codes in Fee Sheet'),
890 'bool', // data type
891 '0', // default = false
892 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
895 'display_units_in_billing' => array(
896 xl('Display the Units Column on the Billing Screen'),
897 'bool', // data type
898 '0', // default = false
899 xl('Display the Units Column on the Billing Screen')
902 'notes_to_display_in_Billing' => array(
903 xl('Which notes are to be displayed in the Billing Screen'),
904 array(
905 '0' => xl('None'),
906 '1' => xl('Encounter Billing Note'),
907 '2' => xl('Patient Billing Note'),
908 '3' => xl('All'),
910 '3',
911 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
914 'use_custom_statement' => array(
915 xl('Use Custom Statement'),
916 'bool', // data type
917 '0', // default = false
918 xl('This will use the custom Statment showing the description instead of the codes.')
921 'statement_bill_note_print' => array(
922 xl('Print Patient Billing Note'),
923 'bool', // data type
924 '0', // default = false
925 xl('This will allow printing of the Patient Billing Note on the statements.')
928 'use_dunning_message' => array(
929 xl('Use Custom Dunning Messages'),
930 'bool', // data type
931 '0', // default = false
932 xl('This will allow use of the custom Dunning Messages on the statements.')
935 'first_dun_msg_set' => array(
936 xl('Number of days before showing first account message'),
937 'num', // data type
938 '30',
939 xl('Number of days before showing first account message.')
942 'first_dun_msg_text' => array(
943 xl('First account message'),
944 'text', // data type
946 xl('Text for first account message.')
949 'second_dun_msg_set' => array(
950 xl('Number of days before showing second account message'),
951 'num', // data type
952 '60',
953 xl('Number of days before showing second account message')
956 'second_dun_msg_text' => array(
957 xl('Second account message'),
958 'text', // data type
960 xl('Text for second account message.')
963 'third_dun_msg_set' => array(
964 xl('Number of days before showing third account message'),
965 'num', // data type
966 '90',
967 xl('Number of days before showing third account message')
970 'third_dun_msg_text' => array(
971 xl('Third account message'),
972 'text', // data type
974 xl('Text for third account message.')
977 'fourth_dun_msg_set' => array(
978 xl('Number of days before showing fourth account message'),
979 'num', // data type
980 '120',
981 xl('Number of days before showing fourth account message')
984 'fourth_dun_msg_text' => array(
985 xl('Fourth account message'),
986 'text', // data type
988 xl('Text for fourth account message.')
991 'fifth_dun_msg_set' => array(
992 xl('Number of days before showing fifth account message'),
993 'num', // data type
994 '150',
995 xl('Number of days before showing fifth account message')
998 'fifth_dun_msg_text' => array(
999 xl('Fifth account message'),
1000 'text', // data type
1002 xl('Text for fifth account message.')
1006 // E-Sign Tab
1008 'E-Sign' => array(
1010 'esign_all' => array(
1011 xl('Allows E-Sign on the entire encounter'),
1012 'bool', // data type
1013 '0', // default = false
1014 xl('This will enable signing an entire encounter, rather than individual forms')
1017 'lock_esign_all' => array(
1018 xl('Lock e-signed encounters and their forms'),
1019 'bool', // data type
1020 '0', // default = false
1021 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1024 'esign_individual' => array(
1025 xl('Allows E-Signing Individual Forms'),
1026 'bool', // data type
1027 '1', // default = false
1028 xl('This will enable signing individual forms separately')
1031 'lock_esign_individual' => array(
1032 xl('Lock an e-signed form individually'),
1033 'bool', // data type
1034 '1', // default = false
1035 xl('This will disable the Edit button on any form that is e-signed')
1038 'esign_lock_toggle' => array(
1039 xl('Enable lock toggle'),
1040 'bool', // data type
1041 '0', // default = false
1042 xl('This will give the user the option to lock (separate locking and signing)')
1045 'esign_report_hide_empty_sig' => array(
1046 xl('Hide Empty E-Sign Logs On Report'),
1047 'bool', // data type
1048 '1', // default = false
1049 xl('This will hide empty e-sign logs on the patient report')
1053 //Documents Tab
1054 'Documents' => array(
1056 'document_storage_method' => array(
1057 xl('Document Storage Method'),
1058 array(
1059 '0' => xl('Hard Disk'),
1060 '1' => xl('CouchDB')
1062 '0', // default
1063 xl('Option to save method of document storage.')
1065 'couchdb_host' => array(
1066 xl('CouchDB HostName'),
1067 'text',
1068 'localhost',
1069 xl('CouchDB host'),
1071 'couchdb_user' => array(
1072 xl('CouchDB UserName'),
1073 'text',
1075 xl('Username to connect to CouchDB'),
1077 'couchdb_pass' => array(
1078 xl('CouchDB Password'),
1079 'text',
1081 xl('Password to connect to CouchDB'),
1083 'couchdb_port' => array(
1084 xl('CouchDB Port'),
1085 'text',
1086 '5984',
1087 xl('CouchDB port'),
1089 'couchdb_dbase' => array(
1090 xl('CouchDB Database'),
1091 'text',
1093 xl('CouchDB database name'),
1095 'couchdb_log' => array(
1096 xl('CouchDB Log Enable'),
1097 'bool',
1098 '0',
1099 xl('Enable log for document uploads/downloads to CouchDB'),
1102 'expand_document_tree' => array(
1103 xl('Expand All Document Categories'),
1104 'bool', // data type
1105 '0', // default = false
1106 xl('Expand All Document Categories by Default')
1109 'patient_id_category_name' => array(
1110 xl('Patient ID Category Name'),
1111 'text', // data type
1112 'Patient ID card', // default
1113 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1116 'patient_photo_category_name' => array(
1117 xl('Patient Photo Category Name'),
1118 'text', // data type
1119 'Patient Photograph', // default
1120 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1123 'lab_results_category_name' => array(
1124 xl('Lab Results Category Name'),
1125 'text', // data type
1126 'Lab Report', // default
1127 xl('Document category name for storage of electronically received lab results.')
1130 'gbl_mdm_category_name' => array(
1131 xl('MDM Document Category Name'),
1132 'text', // data type
1133 'Lab Report', // default
1134 xl('Document category name for storage of electronically received MDM documents.')
1136 'generate_doc_thumb' => array(
1137 xl('Generate thumbnail'),
1138 'bool',
1139 '0',
1140 xl('Generate thumbnail images'),
1142 'thumb_doc_max_size' => array(
1143 xl('Thumbnail size'),
1144 'text', // data type
1145 '100', // default
1146 xl('Maximum size of thumbnail file')
1150 // Calendar Tab
1152 'Calendar' => array(
1154 'disable_calendar' => array(
1155 xl('Disable Calendar'),
1156 'bool', // data type
1157 '0', // default
1158 xl('Do not display the calendar.')
1161 'schedule_start' => array(
1162 xl('Calendar Starting Hour'),
1163 'hour',
1164 '8', // default
1165 xl('Beginning hour of day for calendar events.')
1168 'schedule_end' => array(
1169 xl('Calendar Ending Hour'),
1170 'hour',
1171 '17', // default
1172 xl('Ending hour of day for calendar events.')
1175 'calendar_interval' => array(
1176 xl('Calendar Interval'),
1177 array(
1178 '5' => '5',
1179 '10' => '10',
1180 '15' => '15',
1181 '20' => '20',
1182 '30' => '30',
1183 '60' => '60',
1185 '15', // default
1186 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1189 'calendar_view_type' => array(
1190 xl('Default Calendar View'),
1191 array(
1192 'day' => xl('Day'),
1193 'week' => xl('Week'),
1194 'month' => xl('Month'),
1196 'day', // default
1197 xl('This sets the Default Calendar View, Default is Day.')
1199 'first_day_week' => array(
1200 xl('First day in the week') ,
1201 array(
1202 '1' => xl('Monday'),
1203 '0' => xl('Sunday'),
1204 '6' => xl('Saturday')
1206 '1',
1207 xl('Your first day in the week.')
1209 'calendar_appt_style' => array(
1210 xl('Appointment Display Style'),
1211 array(
1212 '1' => 'Last name',
1213 '2' => 'Last name, first name',
1214 '3' => 'Last name, first name (title)',
1215 '4' => 'Last name, first name (title: description)',
1217 '2', // default
1218 xl('This determines how appointments display on the calendar.')
1221 'event_color' => array(
1222 xl('Appointment/Event Color'),
1223 array(
1224 '1' => 'Category Color Schema',
1225 '2' => 'Facility Color Schema',
1226 ), // data type
1227 '1', // default
1228 xl('This determines which color schema used for appointment')
1231 'number_of_appts_to_show' => array(
1232 xl('Appointments - Patient Summary - Number to Display'),
1233 'num',
1234 '10',
1235 xl('Number of Appointments to display in the Patient Summary')
1238 'patient_portal_appt_display_num' => array(
1239 xl('Appointments - Onsite Patient Portal - Number to Display'),
1240 'num',
1241 '20',
1242 xl('Number of Appointments to display in the Onsite Patient Portal')
1245 'appt_display_sets_option' => array(
1246 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1247 'bool', // data type
1248 '1', // default
1249 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1252 'appt_display_sets_color_1' => array(
1253 xl('Appointment Display Sets - Color 1'),
1254 'color_code',
1255 '#FFFFFF',
1256 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).')
1259 'appt_display_sets_color_2' => array(
1260 xl('Appointment Display Sets - Color 2'),
1261 'color_code',
1262 '#E6E6FF',
1263 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).')
1266 'appt_display_sets_color_3' => array(
1267 xl('Appointment Display Sets - Color 3'),
1268 'color_code',
1269 '#E6FFE6',
1270 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1273 'appt_display_sets_color_4' => array(
1274 xl('Appointment Display Sets - Color 4'),
1275 'color_code',
1276 '#FFE6FF',
1277 xl('Color for the last set when not all member appointments are displayed.')
1280 'num_past_appointments_to_show' => array(
1281 xl('Past Appointment Display Widget'),
1282 'num', // data type
1283 '0', // default = false
1284 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)')
1287 'docs_see_entire_calendar' => array(
1288 xl('Providers See Entire Calendar'),
1289 'bool', // data type
1290 '0', // default
1291 xl('Check this if you want providers to see all appointments by default and not just their own.')
1294 'auto_create_new_encounters' => array(
1295 xl('Auto-Create New Encounters'),
1296 'bool', // data type
1297 '1', // default
1298 xl('Automatically create a new encounter when an appointment check in status is selected.')
1301 'disable_pat_trkr' => array(
1302 xl('Disable Patient Flow Board'),
1303 'bool', // data type
1304 '0', // default
1305 xl('Do not display the patient flow board.')
1308 'ptkr_pt_list_new_window' => array(
1309 xl('Open Demographics in New Window from Patient Flow Board'),
1310 'bool', // data type
1311 '0', // default = false
1312 xl('When Checked, Demographics Will Open in New Window from Patient Flow Board.')
1315 'ptkr_visit_reason' => array(
1316 xl('Show Visit Reason in Patient Flow Board'),
1317 'bool', // data type
1318 '0', // default = false
1319 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1322 'ptkr_show_pid' => array(
1323 xl('Show Patient ID in Patient Flow Board'),
1324 'bool', // data type
1325 '1', // default = true
1326 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1329 'ptkr_show_encounter' => array(
1330 xl('Show Patient Encounter Number in Patient Flow Board'),
1331 'bool', // data type
1332 '1', // default = true
1333 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1336 'pat_trkr_timer' => array(
1337 xl('Patient Flow Board Timer Interval'),
1338 array(
1339 '0' => 'No automatic refresh',
1340 '0:10' => '10',
1341 '0:20' => '20',
1342 '0:30' => '30',
1343 '0:40' => '40',
1344 '0:50' => '50',
1345 '0:59' => '60',
1347 '0:20', // default
1348 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1351 'checkout_roll_off' => array(
1352 xl('Number of Minutes to display completed checkouts'),
1353 'num',
1354 '0', // default
1355 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1358 'drug_screen' => array(
1359 xl('Enable Random Drug Testing'),
1360 'bool', // data type
1361 '0', // default
1362 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1365 'drug_testing_percentage' => array(
1366 xl('Percentage of Patients to Drug Test'),
1367 'num',
1368 '33', // default
1369 xl('Percentage of Patients to select for Random Drug Testing.')
1372 'maximum_drug_test_yearly' => array(
1373 xl('Maximum number of times a Patient can be tested in a year'),
1374 'num',
1375 '0', // default
1376 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1381 // Security Tab
1383 'Security' => array(
1385 'timeout' => array(
1386 xl('Idle Session Timeout Seconds'),
1387 'num', // data type
1388 '7200', // default
1389 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1392 'secure_password' => array(
1393 xl('Require Strong Passwords'),
1394 'bool', // data type
1395 '0', // default
1396 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1399 'password_history' => array(
1400 xl('Require Unique Passwords'),
1401 'bool', // data type
1402 '0', // default
1403 xl('Means none of last three passwords are allowed when changing a password.')
1405 'password_compatibility' => array(
1406 xl('Permit unsalted passwords'),
1407 'bool', // data type
1408 '1', // default
1409 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')
1412 'password_expiration_days' => array(
1413 xl('Default Password Expiration Days'),
1414 'num', // data type
1415 '0', // default
1416 xl('Default password expiration period in days. 0 means this feature is disabled.')
1419 'password_grace_time' => array(
1420 xl('Password Expiration Grace Period'),
1421 'num', // data type
1422 '0', // default
1423 xl('Period in days where a user may login with an expired password.')
1426 'is_client_ssl_enabled' => array(
1427 xl('Enable Client SSL'),
1428 'bool', // data type
1429 '0', // default
1430 xl('Enable client SSL certificate authentication.')
1433 'certificate_authority_crt' => array(
1434 xl('Path to CA Certificate File'),
1435 'text', // data type
1436 '', // default
1437 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1440 'certificate_authority_key' => array(
1441 xl('Path to CA Key File'),
1442 'text', // data type
1443 '', // default
1444 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1447 'client_certificate_valid_in_days' => array(
1448 xl('Client Certificate Expiration Days'),
1449 'num', // data type
1450 '365', // default
1451 xl('Number of days that the client certificate is valid.')
1454 'Emergency_Login_email_id' => array(
1455 xl('Emergency Login Email Address'),
1456 'text', // data type
1457 '', // default
1458 xl('Email address, if any, to receive emergency login user activation messages.')
1460 'new_validate' => array(
1461 xl('New form validation'),
1462 'bool',
1463 '1',
1464 xl('New form validation')
1469 // Notifications Tab
1471 'Notifications' => array(
1473 'patient_reminder_sender_name' => array(
1474 xl('Patient Reminder Sender Name'),
1475 'text', // data type
1476 '', // default
1477 xl('Name of the sender for patient reminders.')
1480 'patient_reminder_sender_email' => array(
1481 xl('Patient Reminder Sender Email'),
1482 'text', // data type
1483 '', // default
1484 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.')
1487 'practice_return_email_path' => array(
1488 xl('Notification Email Address'),
1489 'text', // data type
1490 '', // default
1491 xl('Email address, if any, to receive administrative notifications.')
1494 'EMAIL_METHOD' => array(
1495 xl('Email Transport Method'),
1496 array(
1497 'PHPMAIL' => 'PHPMAIL',
1498 'SENDMAIL' => 'SENDMAIL',
1499 'SMTP' => 'SMTP',
1501 'SMTP', // default
1502 xl('Method for sending outgoing email.')
1505 'SMTP_HOST' => array(
1506 xl('SMTP Server Hostname'),
1507 'text', // data type
1508 'localhost', // default
1509 xl('If SMTP is used, the server`s hostname or IP address.')
1512 'SMTP_PORT' => array(
1513 xl('SMTP Server Port Number'),
1514 'num', // data type
1515 '25', // default
1516 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1519 'SMTP_USER' => array(
1520 xl('SMTP User for Authentication'),
1521 'text', // data type
1522 '', // default
1523 xl('Must be empty if SMTP authentication is not used.')
1526 'SMTP_PASS' => array(
1527 xl('SMTP Password for Authentication'),
1528 'text', // data type
1529 '', // default
1530 xl('Must be empty if SMTP authentication is not used.')
1533 'SMTP_SECURE' => array(
1534 xl('SMTP Security Protocol'),
1535 array(
1536 '' => xl('None'),
1537 'ssl' => 'SSL',
1538 'tls' => 'TLS'
1541 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1544 'EMAIL_NOTIFICATION_HOUR' => array(
1545 xl('Email Notification Hours'),
1546 'num', // data type
1547 '50', // default
1548 xl('Number of hours in advance to send email notifications.')
1551 'SMS_NOTIFICATION_HOUR' => array(
1552 xl('SMS Notification Hours'),
1553 'num', // data type
1554 '50', // default
1555 xl('Number of hours in advance to send SMS notifications.')
1558 'SMS_GATEWAY_USENAME' => array(
1559 xl('SMS Gateway Username'),
1560 'text', // data type
1561 '', // default
1562 xl('Username for SMS Gateway.')
1565 'SMS_GATEWAY_PASSWORD' => array(
1566 xl('SMS Gateway Password'),
1567 'text', // data type
1568 '', // default
1569 xl('Password for SMS Gateway.')
1572 'SMS_GATEWAY_APIKEY' => array(
1573 xl('SMS Gateway API Key'),
1574 'text', // data type
1575 '', // default
1576 xl('API key for SMS Gateway.')
1579 'phone_notification_hour' => array(
1580 xl('Phone Notification Hour'),
1581 'num', // data type
1582 '50', // default
1583 xl('Number of hours in advance to send Phone notification.')
1586 'phone_gateway_username' => array(
1587 xl('Phone Gateway Username'),
1588 'text', // data type
1589 '', // default
1590 xl('Username for Phone Gateway.')
1593 'phone_gateway_password' => array(
1594 xl('Phone Gateway Password'),
1595 'text', // data type
1596 '', // default
1597 xl('Password for Phone Gateway.')
1600 'phone_gateway_url' => array(
1601 xl('Phone Gateway URL'),
1602 'text', // data type
1603 '', // default
1604 xl('URL for Phone Gateway.')
1609 // CDR (Clinical Decision Rules)
1611 'CDR' => array(
1613 'enable_cdr' => array(
1614 xl('Enable Clinical Decisions Rules (CDR)'),
1615 'bool', // data type
1616 '1', // default
1617 xl('Enable Clinical Decisions Rules (CDR)')
1620 'enable_allergy_check' => array(
1621 xl('Enable Allergy Check'),
1622 'bool', // data type
1623 '1', // default
1624 xl('Enable Allergy Check Against Medications and Prescriptions')
1627 'enable_alert_log' => array(
1628 xl('Enable Alert Log'),
1629 'bool', // data type
1630 '1', // default
1631 xl('Enable Alert Logging')
1634 'enable_cdr_new_crp' => array(
1635 xl('Enable Clinical Passive New Reminder(s) Popup'),
1636 'bool', // data type
1637 '1', // default
1638 xl('Enable Clinical Passive New Reminder(s) Popup')
1641 'enable_cdr_crw' => array(
1642 xl('Enable Clinical Passive Reminder Widget'),
1643 'bool', // data type
1644 '1', // default
1645 xl('Enable Clinical Passive Reminder Widget')
1648 'enable_cdr_crp' => array(
1649 xl('Enable Clinical Active Reminder Popup'),
1650 'bool', // data type
1651 '1', // default
1652 xl('Enable Clinical Active Reminder Popup')
1655 'enable_cdr_prw' => array(
1656 xl('Enable Patient Reminder Widget'),
1657 'bool', // data type
1658 '1', // default
1659 xl('Enable Patient Reminder Widget')
1662 'enable_cqm' => array(
1663 xl('Enable CQM Reporting'),
1664 'bool', // data type
1665 '1', // default
1666 xl('Enable Clinical Quality Measure (CQM) Reporting')
1669 'pqri_registry_name' => array(
1670 xl('PQRI Registry Name'),
1671 'text', // data type
1672 'Model Registry', // default
1673 xl('PQRI Registry Name')
1676 'pqri_registry_id' => array(
1677 xl('PQRI Registry ID'),
1678 'text', // data type
1679 '125789123', // default
1680 xl('PQRI Registry ID')
1683 'enable_amc' => array(
1684 xl('Enable AMC Reporting'),
1685 'bool', // data type
1686 '1', // default
1687 xl('Enable Automated Measure Calculations (AMC) Reporting')
1690 'enable_amc_prompting' => array(
1691 xl('Enable AMC Prompting'),
1692 'bool', // data type
1693 '1', // default
1694 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1697 'enable_amc_tracking' => array(
1698 xl('Enable AMC Tracking'),
1699 'bool', // data type
1700 '1', // default
1701 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
1704 'cdr_report_nice' => array(
1705 xl('CDR Reports Processing Priority'),
1706 array(
1707 '' => xl('Default Priority'),
1708 '5' => xl('Moderate Priority'),
1709 '10' => xl('Moderate/Low Priority'),
1710 '15' => xl('Low Priority'),
1711 '20' => xl('Lowest Priority')
1713 '', // default
1714 xl('Set processing priority for CDR engine based reports.')
1717 'pat_rem_clin_nice' => array(
1718 xl('Patient Reminder Creation Processing Priority'),
1719 array(
1720 '' => xl('Default Priority'),
1721 '5' => xl('Moderate Priority'),
1722 '10' => xl('Moderate/Low Priority'),
1723 '15' => xl('Low Priority'),
1724 '20' => xl('Lowest Priority')
1726 '', // default
1727 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
1730 'report_itemizing_standard' => array(
1731 xl('Enable Standard Report Itemization'),
1732 'bool', // data type
1733 '1', // default
1734 xl('Enable Itemization of Standard Clinical Rules Reports')
1737 'report_itemizing_cqm' => array(
1738 xl('Enable CQM Report Itemization'),
1739 'bool', // data type
1740 '1', // default
1741 xl('Enable Itemization of CQM Reports')
1744 'report_itemizing_amc' => array(
1745 xl('Enable AMC Report Itemization'),
1746 'bool', // data type
1747 '1', // default
1748 xl('Enable Itemization of AMC Reports')
1753 // Logging
1755 'Logging' => array(
1757 'enable_auditlog' => array(
1758 xl('Enable Audit Logging'),
1759 'bool', // data type
1760 '1', // default
1761 xl('Enable Audit Logging')
1764 'audit_events_patient-record' => array(
1765 xl('Audit Logging Patient Record'),
1766 'bool', // data type
1767 '1', // default
1768 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1771 'audit_events_scheduling' => array(
1772 xl('Audit Logging Scheduling'),
1773 'bool', // data type
1774 '1', // default
1775 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1778 'audit_events_order' => array(
1779 xl('Audit Logging Order'),
1780 'bool', // data type
1781 '1', // default
1782 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1785 'audit_events_security-administration' => array(
1786 xl('Audit Logging Security Administration'),
1787 'bool', // data type
1788 '1', // default
1789 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1792 'audit_events_backup' => array(
1793 xl('Audit Logging Backups'),
1794 'bool', // data type
1795 '1', // default
1796 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1799 'audit_events_other' => array(
1800 xl('Audit Logging Miscellaneous'),
1801 'bool', // data type
1802 '1', // default
1803 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1806 'audit_events_query' => array(
1807 xl('Audit Logging SELECT Query'),
1808 'bool', // data type
1809 '0', // default
1810 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1813 'audit_events_cdr' => array(
1814 xl('Audit CDR Engine Queries'),
1815 'bool', // data type
1816 '0', // default
1817 xl('Enable logging of CDR Engine Queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1820 'enable_atna_audit' => array(
1821 xl('Enable ATNA Auditing'),
1822 'bool', // data type
1823 '0', // default
1824 xl('Enable Audit Trail and Node Authentication (ATNA).')
1827 'atna_audit_host' => array(
1828 xl('ATNA audit host'),
1829 'text', // data type
1830 '', // default
1831 xl('The hostname of the ATNA audit repository machine.')
1834 'atna_audit_port' => array(
1835 xl('ATNA audit port'),
1836 'text', // data type
1837 '6514', // default
1838 xl('Listening port of the RFC 5425 TLS syslog server.')
1841 'atna_audit_localcert' => array(
1842 xl('ATNA audit local certificate'),
1843 'text', // data type
1844 '', // default
1845 xl('Certificate to send to RFC 5425 TLS syslog server.')
1848 'atna_audit_cacert' => array(
1849 xl('ATNA audit CA certificate'),
1850 'text', // data type
1851 '', // default
1852 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
1855 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
1856 'enable_auditlog_encryption' => array(
1857 xl('Enable Audit Log Encryption'),
1858 'bool', // data type
1859 '0', // default
1860 xl('Enable Audit Log Encryption')
1863 'billing_log_option' => array(
1864 xl('Billing Log Option'),
1865 array(
1866 '1' => xl('Billing Log Append'),
1867 '2' => xl('Billing Log Overwrite')
1869 '1', // default
1870 xl('Billing log setting to append or overwrite the log file.')
1873 'gbl_print_log_option' => array(
1874 xl('Printing Log Option'),
1875 array(
1876 '0' => xl('No logging'),
1877 '1' => xl('Hide print feature'),
1878 '2' => xl('Log entire document'),
1880 '0', // default
1881 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
1886 // Miscellaneous Tab
1888 'Miscellaneous' => array(
1890 'mysql_bin_dir' => array(
1891 xl('Path to MySQL Binaries'),
1892 'text', // data type
1893 $mysql_bin_dir, // default
1894 xl('Full path to directory containing MySQL executables.')
1897 'perl_bin_dir' => array(
1898 xl('Path to Perl Binaries'),
1899 'text', // data type
1900 $perl_bin_dir, // default
1901 xl('Full path to directory containing Perl executables.')
1904 'temporary_files_dir' => array(
1905 xl('Path to Temporary Files'),
1906 'text', // data type
1907 $temporary_files_dir, // default
1908 xl('Full path to directory used for temporary files.')
1911 'backup_log_dir' => array(
1912 xl('Path for Event Log Backup'),
1913 'text', // data type
1914 $backup_log_dir, // default
1915 xl('Full path to directory for event log backup.')
1918 'state_data_type' => array(
1919 xl('State Data Type'),
1920 array(
1921 '2' => xl('Text field'),
1922 '1' => xl('Single-selection list'),
1923 '26' => xl('Single-selection list with ability to add to the list'),
1925 '26', // default
1926 xl('Field type to use for employer or subscriber state in demographics.')
1929 'state_list' => array(
1930 xl('State list'),
1931 'text', // data type
1932 'state', // default
1933 xl('List used by above State Data Type option.')
1936 'state_custom_addlist_widget' => array(
1937 xl('State List Widget Custom Fields'),
1938 'bool', // data type
1939 '1', // default
1940 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
1943 'country_data_type' => array(
1944 xl('Country Data Type'),
1945 array(
1946 '2' => xl('Text field'),
1947 '1' => xl('Single-selection list'),
1948 '26' => xl('Single-selection list with ability to add to the list'),
1950 '26', // default
1951 xl('Field type to use for employer or subscriber country in demographics.')
1954 'country_list' => array(
1955 xl('Country list'),
1956 'text', // data type
1957 'country', // default
1958 xl('List used by above Country Data Type option.')
1961 'print_command' => array(
1962 xl('Print Command'),
1963 'text', // data type
1964 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
1965 xl('Shell command for printing from the server.')
1968 'default_chief_complaint' => array(
1969 xl('Default Reason for Visit'),
1970 'text', // data type
1972 xl('You may put text here as the default complaint in the New Patient Encounter form.')
1975 'default_new_encounter_form' => array(
1976 xl('Default Encounter Form ID'),
1977 'text', // data type
1979 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
1982 'MedicareReferrerIsRenderer' => array(
1983 xl('Medicare Referrer Is Renderer'),
1984 'bool', // data type
1985 '0', // default = true
1986 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
1989 'post_to_date_benchmark' => array(
1990 xl('Financial Close Date (yyyy-mm-dd)'),
1991 'text', // data type
1992 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
1993 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
1996 'enable_hylafax' => array(
1997 xl('Enable Hylafax Support'),
1998 'bool', // data type
1999 '0', // default
2000 xl('Enable Hylafax Support')
2003 'hylafax_server' => array(
2004 xl('Hylafax Server'),
2005 'text', // data type
2006 'localhost', // default
2007 xl('Hylafax server hostname.')
2010 'hylafax_basedir' => array(
2011 xl('Hylafax Directory'),
2012 'text', // data type
2013 '/var/spool/fax', // default
2014 xl('Location where Hylafax stores faxes.')
2017 'hylafax_enscript' => array(
2018 xl('Hylafax Enscript Command'),
2019 'text', // data type
2020 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2021 xl('Enscript command used by Hylafax.')
2024 'enable_scanner' => array(
2025 xl('Enable Scanner Support'),
2026 'bool', // data type
2027 '0', // default
2028 xl('Enable Scanner Support')
2031 'scanner_output_directory' => array(
2032 xl('Scanner Directory'),
2033 'text', // data type
2034 '/mnt/scan_docs', // default
2035 xl('Location where scans are stored.')
2039 // Portal Tab
2041 'Portal' => array(
2043 'portal_onsite_enable' => array(
2044 xl('Enable Onsite Patient Portal'),
2045 'bool', // data type
2046 '0',
2047 xl('Enable Onsite Patient Portal.')
2050 'portal_onsite_address' => array(
2051 xl('Onsite Patient Portal Site Address'),
2052 'text', // data type
2053 'https://your_web_site.com/openemr/patients',
2054 xl('Website link for the Onsite Patient Portal.')
2057 'portal_onsite_document_download' => array(
2058 xl('Enable Onsite Patient Portal Document Download'),
2059 'bool', // data type
2060 '1',
2061 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2064 'portal_offsite_enable' => array(
2065 xl('Enable Offsite Patient Portal'),
2066 'bool', // data type
2067 '0',
2068 xl('Enable Offsite Patient Portal.')
2071 'portal_offsite_providerid' => array(
2072 xl('Offsite Patient Portal Provider ID'),
2073 'text', // data type
2075 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2078 'portal_offsite_username' => array(
2079 xl('Offsite Patient Portal Username'),
2080 'text', // data type
2082 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2085 'portal_offsite_password' => array(
2086 xl('Offsite Patient Portal Password'),
2087 'pwd', // data type
2089 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2092 'portal_offsite_address' => array(
2093 xl('Offsite Patient Portal Site Address'),
2094 'text', // data type
2095 'https://ssh.mydocsportal.com/provider.php',
2096 xl('Offsite Https link for the Patient Portal.')
2099 'portal_offsite_address_patient_link' => array(
2100 xl('Offsite Patient Portal Site Address (Patient Link)'),
2101 'text', // data type
2102 'https://ssh.mydocsportal.com',
2103 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2106 // Currently the "CMS Portal" supports WordPress. Other Content Management
2107 // Systems may be supported in the future.
2109 'gbl_portal_cms_enable' => array(
2110 xl('Enable CMS Portal'),
2111 'bool', // data type
2112 '0',
2113 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2116 'gbl_portal_cms_address' => array(
2117 xl('CMS Portal Site Address'),
2118 'text', // data type
2119 'https://your_cms_site.com/',
2120 xl('URL for the WordPress site that supports the portal')
2123 'gbl_portal_cms_username' => array(
2124 xl('CMS Portal Username'),
2125 'text', // data type
2127 xl('Login name of WordPress user for portal access')
2130 'gbl_portal_cms_password' => array(
2131 xl('CMS Portal Password'),
2132 'text', // data type
2134 xl('Password for the above user')
2139 // Connectors Tab
2141 'Connectors' => array(
2143 'erx_enable' => array(
2144 xl('Enable NewCrop eRx Service'),
2145 'bool',
2146 '0',
2147 xl('Enable NewCrop eRx Service.') + ' ' +
2148 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.')
2151 'erx_newcrop_path' => array(
2152 xl('NewCrop eRx Site Address'),
2153 'text',
2154 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2155 xl('URL for NewCrop eRx Site Address.')
2158 'erx_newcrop_path_soap' => array(
2159 xl('NewCrop eRx Web Service Address'),
2160 'text',
2161 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2162 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2165 'erx_soap_ttl_allergies' => array(
2166 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2167 'num',
2168 '21600',
2169 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2172 'erx_soap_ttl_medications' => array(
2173 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2174 'num',
2175 '21600',
2176 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2179 'erx_account_partner_name' => array(
2180 xl('NewCrop eRx Partner Name'),
2181 'text',
2183 xl('Partner Name issued for NewCrop eRx service.')
2186 'erx_account_name' => array(
2187 xl('NewCrop eRx Name'),
2188 'text',
2190 xl('Account Name issued for NewCrop eRx service.')
2193 'erx_account_password' => array(
2194 xl('NewCrop eRx Password'),
2195 'pass',
2197 xl('Account Password issued for NewCrop eRx service.')
2200 'erx_account_id' => array(
2201 xl('NewCrop eRx Account Id'),
2202 'text',
2203 '1',
2204 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2207 'erx_upload_active' => array(
2208 xl('Only upload active prescriptions'),
2209 'bool',
2210 '0',
2211 xl('Only upload active prescriptions to NewCrop eRx.')
2214 'erx_import_status_message' => array(
2215 xl('Enable NewCrop eRx import status message'),
2216 'bool',
2217 '0',
2218 xl('Enable import status message after visiting NewCrop eRx.')
2221 'erx_medication_display' => array(
2222 xl('Do not display NewCrop eRx Medications uploaded'),
2223 'bool',
2224 '0',
2225 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2228 'erx_allergy_display' => array(
2229 xl('Do not display NewCrop eRx Allergy uploaded'),
2230 'bool',
2231 '0',
2232 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2235 'erx_default_patient_country' => array(
2236 xl('NewCrop eRx Default Patient Country'),
2237 array(
2238 '' => '',
2239 'US' => xl('USA'),
2240 'CA' => xl('Canada'),
2241 'MX' => xl('Mexico'),
2244 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2247 'erx_debug_setting' => array(
2248 xl('NewCrop eRx Debug Setting'),
2249 array(
2250 0 => xl('None'),
2251 1 => xl('Request Only'),
2252 2 => xl('Response Only'),
2253 3 => xl('Request & Response'),
2255 '0',
2256 xl('Log all NewCrop eRx Requests and / or Responses.'),
2259 'phimail_enable' => array(
2260 xl('Enable phiMail Direct Messaging Service'),
2261 'bool', // data type
2262 '0',
2263 xl('Enable phiMail Direct Messaging Service')
2266 'phimail_server_address' => array(
2267 xl('phiMail Server Address'),
2268 'text', // data type
2269 'https://phimail.example.com:32541',
2270 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2273 'phimail_username' => array(
2274 xl('phiMail Username'),
2275 'text', // data type
2277 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2280 'phimail_password' => array(
2281 xl('phiMail Password'),
2282 'pass', // data type
2284 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2287 'phimail_notify' => array(
2288 xl('phiMail notification user'),
2289 'text', // data type
2290 'admin',
2291 xl('This user will receive notification of new incoming Direct messages')
2294 'phimail_interval' => array(
2295 xl('phiMail Message Check Interval (minutes)'),
2296 'num', // data type
2297 '5',
2298 xl('Interval between message checks (set to zero for manual checks only)')
2301 'phimail_ccd_enable' => array(
2302 xl('phiMail Allow CCD Send'),
2303 'bool', // data type
2304 '0',
2305 xl('phiMail Allow CCD Send')
2308 'phimail_ccr_enable' => array(
2309 xl('phiMail Allow CCR Send'),
2310 'bool', // data type
2311 '0',
2312 xl('phiMail Allow CCR Send')
2316 'Rx' => array(
2317 'rx_enable_DEA' => array(
2318 xl('Rx Enable DEA #'),
2319 'bool', // data type
2320 '1',
2321 xl('Rx Enable DEA #')
2323 'rx_show_DEA' => array(
2324 xl('Rx Show DEA #'),
2325 'bool', // data type
2326 '0',
2327 xl('Rx Show DEA #')
2329 'rx_enable_NPI' => array(
2330 xl('Rx Enable NPI'),
2331 'bool', // data type
2332 '0',
2333 xl('Rx Enable NPI')
2335 'rx_show_NPI' => array(
2336 xl('Rx Show NPI'),
2337 'bool', // data type
2338 '0',
2339 xl('Rx Show NPI')
2341 'rx_enable_SLN' => array(
2342 xl('Rx Enable State Lic. #'),
2343 'bool', // data type
2344 '0',
2345 xl('Rx Enable State Lic. #')
2347 'rx_show_SLN' => array(
2348 xl('Rx Show State Lic. #'),
2349 'bool', // data type
2350 '0',
2351 xl('Rx Show State Lic. #')
2353 'rx_paper_size' => array(
2354 xl('Rx Paper Size'), // descriptive name
2355 array(
2356 'LETTER' => xl('Letter Paper Size'),
2357 'LEGAL' => xl('Legal Paper Size'),
2358 'FOLIO' => xl('Folio Paper Size'),
2359 'EXECUTIVE' => xl('Executive Paper Size'),
2360 '4A0' => ('4A0' . " " . xl('Paper Size')),
2361 '2A0' => ('2A0' . " " . xl('Paper Size')),
2362 'A0' => ('A0' . " " . xl('Paper Size')),
2363 'A1' => ('A1' . " " . xl('Paper Size')),
2364 'A2' => ('A2' . " " . xl('Paper Size')),
2365 'A3' => ('A3' . " " . xl('Paper Size')),
2366 'A4' => ('A4' . " " . xl('Paper Size')),
2367 'A5' => ('A5' . " " . xl('Paper Size')),
2368 'A6' => ('A6' . " " . xl('Paper Size')),
2369 'A7' => ('A7' . " " . xl('Paper Size')),
2370 'A8' => ('A8' . " " . xl('Paper Size')),
2371 'A9' => ('A9' . " " . xl('Paper Size')),
2372 'A10' => ('A10' . " " . xl('Paper Size')),
2373 'B0' => ('B0' . " " . xl('Paper Size')),
2374 'B1' => ('B1' . " " . xl('Paper Size')),
2375 'B2' => ('B2' . " " . xl('Paper Size')),
2376 'B3' => ('B3' . " " . xl('Paper Size')),
2377 'B4' => ('B4' . " " . xl('Paper Size')),
2378 'B5' => ('B5' . " " . xl('Paper Size')),
2379 'B6' => ('B6' . " " . xl('Paper Size')),
2380 'B7' => ('B7' . " " . xl('Paper Size')),
2381 'B8' => ('B8' . " " . xl('Paper Size')),
2382 'B9' => ('B9' . " " . xl('Paper Size')),
2383 'B10' => ('B10' . " " . xl('Paper Size')),
2384 'C0' => ('C0' . " " . xl('Paper Size')),
2385 'C1' => ('C1' . " " . xl('Paper Size')),
2386 'C2' => ('C2' . " " . xl('Paper Size')),
2387 'C3' => ('C3' . " " . xl('Paper Size')),
2388 'C4' => ('C4' . " " . xl('Paper Size')),
2389 'C5' => ('C5' . " " . xl('Paper Size')),
2390 'C6' => ('C6' . " " . xl('Paper Size')),
2391 'C7' => ('C7' . " " . xl('Paper Size')),
2392 'C8' => ('C8' . " " . xl('Paper Size')),
2393 'C9' => ('C9' . " " . xl('Paper Size')),
2394 'C10' => ('C10' . " " . xl('Paper Size')),
2395 'RA0' => ('RA0' . " " . xl('Paper Size')),
2396 'RA1' => ('RA1' . " " . xl('Paper Size')),
2397 'RA2' => ('RA2' . " " . xl('Paper Size')),
2398 'RA3' => ('RA3' . " " . xl('Paper Size')),
2399 'RA4' => ('RA4' . " " . xl('Paper Size')),
2400 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2401 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2402 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2403 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2404 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2406 'LETTER', // default = tree menu
2407 xl('Rx Paper Size')
2409 'rx_left_margin' => array(
2410 xl('Rx Left Margin (px)'),
2411 'num',
2412 '30',
2413 xl('Rx Left Margin (px)')
2415 'rx_right_margin' => array(
2416 xl('Rx Right Margin (px)'),
2417 'num',
2418 '30',
2419 xl('Rx Right Margin (px)')
2421 'rx_top_margin' => array(
2422 xl('Rx Top Margin (px)'),
2423 'num',
2424 '72',
2425 xl('Rx Top Margin (px)')
2427 'rx_bottom_margin' => array(
2428 xl('Rx Bottom Margin (px)'),
2429 'num',
2430 '30',
2431 xl('Rx Bottom Margin (px)')
2435 'PDF' => array (
2436 'pdf_layout' => array (
2437 xl('Layout'),
2438 array(
2439 'P' => xl('Portrait'),
2440 'L' => xl('Landscape')
2442 'P', //defaut
2443 xl("Choose Layout Direction"),
2445 'pdf_language' => array (
2446 xl('PDF Language'),
2447 array(
2448 'aa' => xl('Afar'),
2449 'af' => xl('Afrikaans'),
2450 'ak' => xl('Akan'),
2451 'sq' => xl('Albanian'),
2452 'am' => xl('Amharic'),
2453 'ar' => xl('Arabic'),
2454 'an' => xl('Aragonese'),
2455 'hy' => xl('Armenian'),
2456 'as' => xl('Assamese'),
2457 'av' => xl('Avaric'),
2458 'ae' => xl('Avestan'),
2459 'ay' => xl('Aymara'),
2460 'az' => xl('Azerbaijani'),
2461 'bm' => xl('Bambara'),
2462 'ba' => xl('Bashkir'),
2463 'eu' => xl('Basque'),
2464 'be' => xl('Belarusian'),
2465 'bn' => xl('Bengali- Bangla'),
2466 'bh' => xl('Bihari'),
2467 'bi' => xl('Bislama'),
2468 'bs' => xl('Bosnian'),
2469 'br' => xl('Breton'),
2470 'bg' => xl('Bulgarian'),
2471 'my' => xl('Burmese'),
2472 'ca' => xl('Catalan- Valencian'),
2473 'ch' => xl('Chamorro'),
2474 'ce' => xl('Chechen'),
2475 'ny' => xl('Chichewa- Chewa- Nyanja'),
2476 'zh' => xl('Chinese'),
2477 'cv' => xl('Chuvash'),
2478 'kw' => xl('Cornish'),
2479 'co' => xl('Corsican'),
2480 'cr' => xl('Cree'),
2481 'hr' => xl('Croatian'),
2482 'cs' => xl('Czech'),
2483 'da' => xl('Danish'),
2484 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2485 'nl' => xl('Dutch'),
2486 'dz' => xl('Dzongkha'),
2487 'en' => xl('English'),
2488 'eo' => xl('Esperanto'),
2489 'et' => xl('Estonian'),
2490 'ee' => xl('Ewe'),
2491 'fo' => xl('Faroese'),
2492 'fj' => xl('Fijian'),
2493 'fi' => xl('Finnish'),
2494 'fr' => xl('French'),
2495 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2496 'gl' => xl('Galician'),
2497 'ka' => xl('Georgian'),
2498 'de' => xl('German'),
2499 'el' => xl('Greek, Modern'),
2500 'gn' => xl('Guaraní'),
2501 'gu' => xl('Gujarati'),
2502 'ht' => xl('Haitian- Haitian Creole'),
2503 'ha' => xl('Hausa'),
2504 'he' => xl('Hebrew (modern)'),
2505 'hz' => xl('Herero'),
2506 'hi' => xl('Hindi'),
2507 'ho' => xl('Hiri Motu'),
2508 'hu' => xl('Hungarian'),
2509 'ia' => xl('Interlingua'),
2510 'id' => xl('Indonesian'),
2511 'ie' => xl('Interlingue'),
2512 'ga' => xl('Irish'),
2513 'ig' => xl('Igbo'),
2514 'ik' => xl('Inupiaq'),
2515 'io' => xl('Ido'),
2516 'is' => xl('Icelandic'),
2517 'it' => xl('Italian'),
2518 'iu' => xl('Inuktitut'),
2519 'ja' => xl('Japanese'),
2520 'jv' => xl('Javanese'),
2521 'kl' => xl('Kalaallisut, Greenlandic'),
2522 'kn' => xl('Kannada'),
2523 'kr' => xl('Kanuri'),
2524 'ks' => xl('Kashmiri'),
2525 'kk' => xl('Kazakh'),
2526 'km' => xl('Khmer'),
2527 'ki' => xl('Kikuyu, Gikuyu'),
2528 'rw' => xl('Kinyarwanda'),
2529 'ky' => xl('Kyrgyz'),
2530 'kv' => xl('Komi'),
2531 'kg' => xl('Kongo'),
2532 'ko' => xl('Korean'),
2533 'ku' => xl('Kurdish'),
2534 'kj' => xl('Kwanyama, Kuanyama'),
2535 'la' => xl('Latin'),
2536 'lb' => xl('Luxembourgish, Letzeburgesch'),
2537 'lg' => xl('Ganda'),
2538 'li' => xl('Limburgish, Limburgan, Limburger'),
2539 'ln' => xl('Lingala'),
2540 'lo' => xl('Lao'),
2541 'lt' => xl('Lithuanian'),
2542 'lu' => xl('Luba-Katanga'),
2543 'lv' => xl('Latvian'),
2544 'gv' => xl('Manx'),
2545 'mk' => xl('Macedonian'),
2546 'mg' => xl('Malagasy'),
2547 'ms' => xl('Malay'),
2548 'ml' => xl('Malayalam'),
2549 'mt' => xl('Maltese'),
2550 'mi' => xl('Māori'),
2551 'mr' => xl('Marathi (Marāṭhī)'),
2552 'mh' => xl('Marshallese'),
2553 'mn' => xl('Mongolian'),
2554 'na' => xl('Nauru'),
2555 'nv' => xl('Navajo, Navaho'),
2556 'nb' => xl('Norwegian Bokmål'),
2557 'nd' => xl('North Ndebele'),
2558 'ne' => xl('Nepali'),
2559 'ng' => xl('Ndonga'),
2560 'nn' => xl('Norwegian Nynorsk'),
2561 'no' => xl('Norwegian'),
2562 'ii' => xl('Nuosu'),
2563 'nr' => xl('South Ndebele'),
2564 'oc' => xl('Occitan'),
2565 'oj' => xl('Ojibwe, Ojibwa'),
2566 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2567 'om' => xl('Oromo'),
2568 'or' => xl('Oriya'),
2569 'os' => xl('Ossetian, Ossetic'),
2570 'pa' => xl('Panjabi, Punjabi'),
2571 'pi' => xl('Pāli'),
2572 'fa' => xl('Persian (Farsi)'),
2573 'pl' => xl('Polish'),
2574 'ps' => xl('Pashto, Pushto'),
2575 'pt' => xl('Portuguese'),
2576 'qu' => xl('Quechua'),
2577 'rm' => xl('Romansh'),
2578 'rn' => xl('Kirundi'),
2579 'ro' => xl('Romanian'),
2580 'ru' => xl('Russian'),
2581 'sa' => xl('Sanskrit (Saṁskṛta)'),
2582 'sc' => xl('Sardinian'),
2583 'sd' => xl('Sindhi'),
2584 'se' => xl('Northern Sami'),
2585 'sm' => xl('Samoan'),
2586 'sg' => xl('Sango'),
2587 'sr' => xl('Serbian'),
2588 'gd' => xl('Scottish Gaelic- Gaelic'),
2589 'sn' => xl('Shona'),
2590 'si' => xl('Sinhala, Sinhalese'),
2591 'sk' => xl('Slovak'),
2592 'sl' => xl('Slovene'),
2593 'so' => xl('Somali'),
2594 'st' => xl('Southern Sotho'),
2595 'es' => xl('Spanish- Castilian'),
2596 'su' => xl('Sundanese'),
2597 'sw' => xl('Swahili'),
2598 'ss' => xl('Swati'),
2599 'sv' => xl('Swedish'),
2600 'ta' => xl('Tamil'),
2601 'te' => xl('Telugu'),
2602 'tg' => xl('Tajik'),
2603 'th' => xl('Thai'),
2604 'ti' => xl('Tigrinya'),
2605 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2606 'tk' => xl('Turkmen'),
2607 'tl' => xl('Tagalog'),
2608 'tn' => xl('Tswana'),
2609 'to' => xl('Tonga (Tonga Islands)'),
2610 'tr' => xl('Turkish'),
2611 'ts' => xl('Tsonga'),
2612 'tt' => xl('Tatar'),
2613 'tw' => xl('Twi'),
2614 'ty' => xl('Tahitian'),
2615 'ug' => xl('Uyghur, Uighur'),
2616 'uk' => xl('Ukrainian'),
2617 'ur' => xl('Urdu'),
2618 'uz' => xl('Uzbek'),
2619 've' => xl('Venda'),
2620 'vi' => xl('Vietnamese'),
2621 'vo' => xl('Volapük'),
2622 'wa' => xl('Walloon'),
2623 'cy' => xl('Welsh'),
2624 'wo' => xl('Wolof'),
2625 'fy' => xl('Western Frisian'),
2626 'xh' => xl('Xhosa'),
2627 'yi' => xl('Yiddish'),
2628 'yo' => xl('Yoruba'),
2629 'za' => xl('Zhuang, Chuang'),
2630 'zu' => xl('Zulu'),
2632 'en', // default English
2633 xl('Choose PDF languange Preference'),
2635 'pdf_size' => array(
2636 xl('Paper Size'), // Descriptive Name
2637 array(
2638 'LETTER' => xl('Letter Paper Size'),
2639 'LEGAL' => xl('Legal Paper Size'),
2640 'FOLIO' => xl('Folio Paper Size'),
2641 'EXECUTIVE' => xl('Executive Paper Size'),
2642 '4A0' => ('4A0' . " " . xl('Paper Size')),
2643 '2A0' => ('2A0' . " " . xl('Paper Size')),
2644 'A0' => ('A0' . " " . xl('Paper Size')),
2645 'A1' => ('A1' . " " . xl('Paper Size')),
2646 'A2' => ('A2' . " " . xl('Paper Size')),
2647 'A3' => ('A3' . " " . xl('Paper Size')),
2648 'A4' => ('A4' . " " . xl('Paper Size')),
2649 'A5' => ('A5' . " " . xl('Paper Size')),
2650 'A6' => ('A6' . " " . xl('Paper Size')),
2651 'A7' => ('A7' . " " . xl('Paper Size')),
2652 'A8' => ('A8' . " " . xl('Paper Size')),
2653 'A9' => ('A9' . " " . xl('Paper Size')),
2654 'A10' => ('A10' . " " . xl('Paper Size')),
2655 'B0' => ('B0' . " " . xl('Paper Size')),
2656 'B1' => ('B1' . " " . xl('Paper Size')),
2657 'B2' => ('B2' . " " . xl('Paper Size')),
2658 'B3' => ('B3' . " " . xl('Paper Size')),
2659 'B4' => ('B4' . " " . xl('Paper Size')),
2660 'B5' => ('B5' . " " . xl('Paper Size')),
2661 'B6' => ('B6' . " " . xl('Paper Size')),
2662 'B7' => ('B7' . " " . xl('Paper Size')),
2663 'B8' => ('B8' . " " . xl('Paper Size')),
2664 'B9' => ('B9' . " " . xl('Paper Size')),
2665 'B10' => ('B10' . " " . xl('Paper Size')),
2666 'C0' => ('C0' . " " . xl('Paper Size')),
2667 'C1' => ('C1' . " " . xl('Paper Size')),
2668 'C2' => ('C2' . " " . xl('Paper Size')),
2669 'C3' => ('C3' . " " . xl('Paper Size')),
2670 'C4' => ('C4' . " " . xl('Paper Size')),
2671 'C5' => ('C5' . " " . xl('Paper Size')),
2672 'C6' => ('C6' . " " . xl('Paper Size')),
2673 'C7' => ('C7' . " " . xl('Paper Size')),
2674 'C8' => ('C8' . " " . xl('Paper Size')),
2675 'C9' => ('C9' . " " . xl('Paper Size')),
2676 'C10' => ('C10' . " " . xl('Paper Size')),
2677 'RA0' => ('RA0' . " " . xl('Paper Size')),
2678 'RA1' => ('RA1' . " " . xl('Paper Size')),
2679 'RA2' => ('RA2' . " " . xl('Paper Size')),
2680 'RA3' => ('RA3' . " " . xl('Paper Size')),
2681 'RA4' => ('RA4' . " " . xl('Paper Size')),
2682 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2683 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2684 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2685 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2686 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2688 'LETTER',
2689 xl('Choose Paper Size')
2691 'pdf_left_margin' => array(
2692 xl('Left Margin (mm)'),
2693 'num',
2694 '5',
2695 xl('Left Margin (mm)')
2697 'pdf_right_margin' => array(
2698 xl('Right Margin (mm)'),
2699 'num',
2700 '5',
2701 xl('Right Margin (mm)')
2703 'pdf_top_margin' => array(
2704 xl('Top Margin (mm)'),
2705 'num',
2706 '5',
2707 xl('Top Margin (mm)')
2709 'pdf_bottom_margin' => array(
2710 xl('Bottom Margin (px)'),
2711 'num',
2712 '8',
2713 xl('Bottom Margin (px)')
2715 'pdf_output' => array (
2716 xl('Output Type'),
2717 array(
2718 'D' => xl('Download'),
2719 'I' => xl('Inline')
2721 'D', //defaut
2722 xl("Choose Download or Display Inline"),
2725 'chart_label_type' => array(
2726 xl('Patient Label Type'),
2727 array(
2728 '0' => xl('None'),
2729 '1' => '5160',
2730 '2' => '5161',
2731 '3' => '5162'
2733 '1', // default
2734 xl('Avery Label type for printing patient labels from popups in left nav screen'),
2737 'barcode_label_type' => array(
2738 xl('Barcode Label Type'),
2739 array(
2740 '0' => xl('None'),
2741 '1' => 'std25',
2742 '2' => 'int25',
2743 '3' => 'ean8',
2744 '4' => 'ean13',
2745 '5' => 'upc',
2746 '6' => 'code11',
2747 '7' => 'code39',
2748 '8' => 'code93',
2749 '9' => 'code128',
2750 '10' => 'codabar',
2751 '11' => 'msi',
2752 '12' => 'datamatrix'
2754 '9', // default = None
2755 xl('Barcode type for printing barcode labels from popups in left nav screen.')
2758 'addr_label_type' => array(
2759 xl('Print Patient Address Label'),
2760 'bool', // data type
2761 '1', // default = false
2762 xl('Select to print patient address labels from popups in left nav screen.')