clean up of prior commit
[openemr.git] / library / globals.inc.php
blob76e18c3a39a32deb8b4dd11c7222757cfaca390a
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 'checkout_roll_off',
115 'ptkr_pt_list_new_window',
116 'erx_import_status_message');
118 $GLOBALS_METADATA = array(
120 // Appearance Tab
122 'Appearance' => array(
124 'default_top_pane' => array(
125 xl('Main Top Pane Screen'), // descriptive name
126 array(
127 'main_info.php' => xl('Calendar Screen'),
128 '../new/new.php' => xl('Patient Search/Add Screen'),
129 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
131 'main_info.php', // default = calendar
132 xl('Type of screen layout')
135 'concurrent_layout' => array(
136 xl('Layout Style'), // descriptive name
137 array(
138 '0' => xl('Old style layout with no left menu'),
139 '1' => xl('Navigation menu consists of pairs of radio buttons'),
140 '2' => xl('Navigation menu is a tree view'),
141 '3' => xl('Navigation uses a sliding menu'),
143 '3', // default = tree menu
144 xl('Type of screen layout')
147 'default_encounter_view' => array(
148 xl('Default Encounter View'), // descriptive name
149 array(
150 '0' => xl('Clinical View'),
151 '1' => xl('Billing View'),
153 '0', // default = tree menu
154 xl('Choose your default encounter view')
157 'css_header' => array(
158 xl('Theme'),
159 'css',
160 'style_light.css',
161 xl('Pick a CSS theme.')
164 'gbl_nav_area_width' => array(
165 xl('Navigation Area Width'),
166 'num',
167 '150',
168 xl('Width in pixels of the left navigation frame.')
171 'openemr_name' => array(
172 xl('Application Title'),
173 'text',
174 'OpenEMR',
175 xl('Application name for login page and main window title.')
178 'full_new_patient_form' => array(
179 xl('New Patient Form'),
180 array(
181 '0' => xl('Old-style static form without search or duplication check'),
182 '1' => xl('All demographics fields, with search and duplication check'),
183 '2' => xl('Mandatory or specified fields only, search and dup check'),
184 '3' => xl('Mandatory or specified fields only, dup check, no search'),
186 '1', // default
187 xl('Style of form used for adding new patients')
190 'patient_search_results_style' => array(
191 xl('Patient Search Results Style'),
192 array(
193 '0' => xl('Encounter statistics'),
194 '1' => xl('Mandatory and specified fields'),
196 '0', // default
197 xl('Type of columns displayed for patient search results')
200 'gbl_tall_nav_area' => array(
201 xl('Tall Navigation Area'),
202 'bool', // data type
203 '0', // default = false
204 xl('Navigation area uses full height of frameset')
207 'gbl_nav_visit_forms' => array(
208 xl('Navigation Area Visit Forms'),
209 'bool', // data type
210 '1', // default = true
211 xl('Navigation area includes encounter forms')
214 'simplified_demographics' => array(
215 xl('Simplified Demographics'),
216 'bool', // data type
217 '0', // default = false
218 xl('Omit insurance and some other things from the demographics form')
221 'simplified_prescriptions' => array(
222 xl('Simplified Prescriptions'),
223 'bool', // data type
224 '0', // default = false
225 xl('Omit form, route and interval which then become part of dosage')
228 'simplified_copay' => array(
229 xl('Simplified Co-Pay'),
230 'bool', // data type
231 '0', // default = false
232 xl('Omit method of payment from the co-pay panel')
235 'use_charges_panel' => array(
236 xl('Use Charges Panel'),
237 'bool', // data type
238 '0', // default = false
239 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
242 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
243 'enable_fees_in_left_menu' => array(
244 xl('Enable Fees In Left Menu'),
245 'bool', // data type
246 '1', // default = true
247 xl('Enable Fees In Left Menu')
249 // EDI history 2012-09-13
250 'enable_edihistory_in_left_menu' => array(
251 xl('Enable EDI History In Left Menu'),
252 'bool', // data type
253 '1', // default = true
254 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
257 'online_support_link' => array(
258 xl('Online Support Link'),
259 'text', // data type
260 'http://open-emr.org/',
261 xl('URL for OpenEMR support.')
264 'support_phone_number' => array(
265 xl('Support Phone Number'),
266 'text',
268 xl('Phone Number for Vendor Support that Appears on the About Page.')
271 'drop_bottom' => array(
272 xl('Remove Bottom Pane'),
273 'bool', // data type
274 '0', // default = false
275 xl('Removes the bottom pane by default on start up.')
278 'encounter_page_size' => array(
279 xl('Encounter Page Size'),
280 array(
281 '0' => xl('Show All'),
282 '5' => '5',
283 '10' => '10',
284 '15' => '15',
285 '20' => '20',
286 '25' => '25',
287 '50' => '50',
289 '20',
290 xl('Number of encounters to display per page.')
293 'gbl_pt_list_page_size' => array(
294 xl('Patient List Page Size'),
295 array(
296 '10' => '10',
297 '25' => '25',
298 '50' => '50',
299 '100' => '100',
301 '10',
302 xl('Number of patients to display per page in the patient list.')
305 'gbl_pt_list_new_window' => array(
306 xl('Patient List New Window'),
307 'bool', // data type
308 '0', // default = false
309 xl('Default state of New Window checkbox in the patient list.')
312 'gbl_vitals_options' => array(
313 xl('Vitals Form Options'),
314 array(
315 '0' => xl('Standard'),
316 '1' => xl('Omit circumferences'),
318 '0', // default
319 xl('Special treatment for the Vitals form')
322 'insurance_information' => array(
323 xl('Show Additional Insurance Information'), // descriptive name
324 array(
325 '0' => xl('None'),
326 '1' => xl('Address Only'),
327 '2' => xl('Address and Postal Code'),
328 '3' => xl('Address and State'),
329 '4' => xl('Address, State and Postal Code'),
330 '5' => xl('Postal Code and Box Number'),
332 '4', // default
333 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
339 // Locale Tab
341 'Locale' => array(
343 'language_default' => array(
344 xl('Default Language'),
345 'lang', // data type
346 'English (Standard)', // default = english
347 xl('Default language if no other is allowed or chosen.')
350 'language_menu_showall' => array(
351 xl('All Languages Allowed'),
352 'bool', // data type
353 '1', // default = true
354 xl('Allow all available languages as choices on menu at login.')
357 'language_menu_other' => array(
358 xl('Allowed Languages'),
359 'm_lang', // data type
360 '', // default = none
361 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
364 'allow_debug_language' => array(
365 xl('Allow Debugging Language'),
366 'bool', // data type
367 '1', // default = true during development and false for production releases
368 xl('This will allow selection of the debugging (\'dummy\') language.')
371 'translate_layout' => array(
372 xl('Translate Layouts'),
373 'bool', // data type
374 '1', // default = true
375 xl('Is text from form layouts to be translated?')
378 'translate_lists' => array(
379 xl('Translate Lists'),
380 'bool', // data type
381 '1', // default = true
382 xl('Is text from lists to be translated?')
385 'translate_gacl_groups' => array(
386 xl('Translate Access Control Groups'),
387 'bool', // data type
388 '1', // default = true
389 xl('Are access control group names to be translated?')
392 'translate_form_titles' => array(
393 xl('Translate Patient Note Titles'),
394 'bool', // data type
395 '1', // default = true
396 xl('Are patient note titles to be translated?')
399 'translate_document_categories' => array(
400 xl('Translate Document Categories'),
401 'bool', // data type
402 '1', // default = true
403 xl('Are document category names to be translated?')
406 'translate_appt_categories' => array(
407 xl('Translate Appointment Categories'),
408 'bool', // data type
409 '1', // default = true
410 xl('Are appointment category names to be translated?')
413 'units_of_measurement' => array(
414 xl('Units for Visit Forms'),
415 array(
416 '1' => xl('Show both US and metric (main unit is US)'),
417 '2' => xl('Show both US and metric (main unit is metric)'),
418 '3' => xl('Show US only'),
419 '4' => xl('Show metric only'),
421 '1', // default = Both/US
422 xl('Applies to the Vitals form and Growth Chart')
425 'us_weight_format' => array(
426 xl('Display Format for US Weights'),
427 array(
428 '1'=>xl('Show pounds as decimal value'),
429 '2'=>xl('Show pounds and ounces')
431 '1',
432 xl('Applies to Vitals form')
435 'disable_deprecated_metrics_form' => array(
436 xl('Disable Old Metric Vitals Form'),
437 'bool', // data type
438 '1', // default = true
439 xl('This was the older metric-only Vitals form, now deprecated.')
442 'phone_country_code' => array(
443 xl('Telephone Country Code'),
444 'num',
445 '1', // default = North America
446 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
449 'date_display_format' => array(
450 xl('Date Display Format'),
451 array(
452 '0' => xl('YYYY-MM-DD'),
453 '1' => xl('MM/DD/YYYY'),
454 '2' => xl('DD/MM/YYYY'),
456 '0',
457 xl('Format used to display most dates.')
460 'time_display_format' => array(
461 xl('Time Display Format'),
462 array(
463 '0' => xl('24 hr'),
464 '1' => xl('12 hr'),
466 '0',
467 xl('Format used to display most times.')
470 'currency_decimals' => array(
471 xl('Currency Decimal Places'),
472 array(
473 '0' => xl('0'),
474 '1' => xl('1'),
475 '2' => xl('2'),
477 '2',
478 xl('Number of digits after decimal point for currency, usually 0 or 2.')
481 'currency_dec_point' => array(
482 xl('Currency Decimal Point Symbol'),
483 array(
484 '.' => xl('Period'),
485 ',' => xl('Comma'),
487 '.',
488 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
491 'currency_thousands_sep' => array(
492 xl('Currency Thousands Separator'),
493 array(
494 ',' => xl('Comma'),
495 '.' => xl('Period'),
496 ' ' => xl('Space'),
497 '' => xl('None'),
499 ',',
500 xl('Symbol used to separate thousands for currency.')
503 'gbl_currency_symbol' => array(
504 xl('Currency Designator'),
505 'text', // data type
506 '$', // default
507 xl('Code or symbol to indicate currency')
509 'age_display_format'=>array(xl('Age Display Format'),
510 array(
511 '0'=>xl('Years or months'),
512 '1'=>xl('Years, months and days')
514 '0',
515 xl('Format for age display')
517 'age_display_limit' => array(
518 xl('Age in Years for Display Format Change'),
519 'num',
520 '3',
521 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
525 // Features Tab
527 'Features' => array(
529 'specific_application' => array(
530 xl('Specific Application'),
531 array(
532 '0' => xl('None'),
533 '2' => xl('IPPF'),
534 '3' => xl('Weight loss clinic'),
536 '0', // default
537 xl('Indicator for specialized usage')
540 'inhouse_pharmacy' => array(
541 xl('Drugs and Products'),
542 array(
543 '0' => xl('Do not inventory and sell any products'),
544 '1' => xl('Inventory and sell drugs only'),
545 '2' => xl('Inventory and sell both drugs and non-drug products'),
546 '3' => xl('Products but no prescription drugs and no templates'),
548 '0', // default
549 xl('Option to support inventory and sales of products')
552 'disable_chart_tracker' => array(
553 xl('Disable Chart Tracker'),
554 'bool', // data type
555 '0', // default = false
556 xl('Removes the Chart Tracker feature')
559 'disable_phpmyadmin_link' => array(
560 xl('Disable phpMyAdmin'),
561 'bool', // data type
562 '0', // default = false
563 xl('Removes support for phpMyAdmin')
566 'disable_immunizations' => array(
567 xl('Disable Immunizations'),
568 'bool', // data type
569 '0', // default = false
570 xl('Removes support for immunizations')
573 'disable_prescriptions' => array(
574 xl('Disable Prescriptions'),
575 'bool', // data type
576 '0', // default = false
577 xl('Removes support for prescriptions')
580 'omit_employers' => array(
581 xl('Omit Employers'),
582 'bool', // data type
583 '0', // default = false
584 xl('Omit employer information in patient demographics')
587 'select_multi_providers' => array(
588 xl('Support Multi-Provider Events'),
589 'bool', // data type
590 '0', // default = false
591 xl('Support calendar events that apply to multiple providers')
594 'disable_non_default_groups' => array(
595 xl('Disable User Groups'),
596 'bool', // data type
597 '1', // default = true
598 xl('Normally this should be checked. Not related to access control.')
601 'ignore_pnotes_authorization' => array(
602 xl('Skip Authorization of Patient Notes'),
603 'bool', // data type
604 '1', // default = true
605 xl('Do not require patient notes to be authorized')
608 'support_encounter_claims' => array(
609 xl('Allow Encounter Claims'),
610 'bool', // data type
611 '0', // default = false
612 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
615 'advance_directives_warning' => array(
616 xl('Advance Directives Warning'),
617 'bool', // data type
618 '0', // default = false
619 xl('Display advance directives in the demographics page.')
622 'configuration_import_export' => array(
623 xl('Configuration Export/Import'),
624 'bool', // data type
625 '0', // default = false
626 xl('Support export/import of configuration data via the Backup page.')
629 'restrict_user_facility' => array(
630 xl('Restrict Users to Facilities'),
631 'bool', // data type
632 '0', // default
633 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
636 'set_facility_cookie' => array(
637 xl('Remember Selected Facility'),
638 'bool', // data type
639 '0', // default
640 xl('Set a facility cookie to remember the selected facility between logins.')
643 'receipts_by_provider' => array(
644 xl('Print Receipts by Provider'),
645 'bool',
646 '0', // default
647 xl('Causes Receipts to Print Encounter/Primary Provider Info')
650 'discount_by_money' => array(
651 xl('Discounts as Monetary Amounts'),
652 'bool', // data type
653 '1', // default = true
654 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
657 'gbl_visit_referral_source' => array(
658 xl('Referral Source for Encounters'),
659 'bool', // data type
660 '0', // default = false
661 xl('A referral source may be specified for each visit.')
664 'gbl_mask_patient_id' => array(
665 xl('Mask for Patient IDs'),
666 'text', // data type
667 '', // default
668 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
671 'gbl_mask_invoice_number' => array(
672 xl('Mask for Invoice Numbers'),
673 'text', // data type
674 '', // default
675 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
678 'gbl_mask_product_id' => array(
679 xl('Mask for Product IDs'),
680 'text', // data type
681 '', // default
682 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
685 'force_billing_widget_open' => array(
686 xl('Force Billing Widget Open'),
687 'bool', // data type
688 '0', // default = false
689 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
692 'activate_ccr_ccd_report' => array(
693 xl('Activate CCR/CCD Reporting'),
694 'bool', // data type
695 '1', // default = true
696 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
699 'hide_document_encryption' => array(
700 xl('Hide Encryption/Decryption Options In Document Management'),
701 'bool', // data type
702 '1', // default = true
703 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
706 'use_custom_immun_list' => array(
707 xl('Use Custom Immunization List'),
708 'bool', // data type
709 '0', // default = true
710 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
713 'cms_1500' => array(
714 xl('CMS 1500 Paper Form Format'),
715 array(
716 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
717 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
719 '1', // default
720 xl('This specifies which revision of the form the billing module should generate')
723 'cms_1500_box_31_format' => array(
724 xl('CMS 1500: Box 31 Format'),
725 array(
726 '0' => xl('Signature on File'),
727 '1' => xl('Firstname Lastname'),
728 '2' => xl('None'),
730 '0', // default
731 xl('This specifies whether to include date in Box 31.')
734 'cms_1500_box_31_date' => array(
735 xl('CMS 1500: Date in Box 31 (Signature)'),
736 array(
737 '0' => xl('None'),
738 '1' => xl('Date of Service'),
739 '2' => xl('Today'),
741 '0', // default
742 xl('This specifies whether to include date in Box 31.')
745 'amendments' => array (
746 xl('Amendments'),
747 'bool', // data type
748 '1', // default = true
749 xl('Enable amendments feature')
752 'allow_pat_delete' => array(
753 xl('Allow Administrators to Delete Patients'),
754 'bool', // data type
755 '0', // default = false
756 xl('Allow Administrators to Delete Patients')
761 // Report Tab
763 'Report' => array(
765 'use_custom_daysheet' => array(
766 xl('Use Custom End of Day Report'),
767 array(
768 '0' => xl('None'),
769 '1' => xl('Print End of Day Report 1'),
770 '2' => xl('Print End of Day Report 2'),
771 '3' => xl('Print End of Day Report 3'),
772 ), // data type
773 '1', // default = Print End of Day Report 1
774 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
777 'daysheet_provider_totals' => array(
778 xl('End of Day by Provider or allow Totals Only'),
779 array(
780 '0' => xl('Provider'),
781 '1' => xl('Totals Only'),
783 '1', // default
784 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
787 'ledger_begin_date' => array(
788 xl('Beginning Date for Ledger Report'),
789 array(
790 'Y1' => xl('One Year Ago'),
791 'Y2' => xl('Two Years Ago'),
792 'M6' => xl('Six Months Ago'),
793 'M3' => xl('Three Months Ago'),
794 'M1' => xl('One Month Ago'),
795 'D1' => xl('One Day Ago'),
797 'Y1', // default = One Year
798 xl('This is the Beginning date for the Ledger Report.')
801 'print_next_appointment_on_ledger' => array(
802 xl('Print the Next Appointment on the Bottom of the Ledger'),
803 'bool', // data type
804 '1', // default = true
805 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
808 'sales_report_invoice' => array(
809 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
810 array(
811 '0' => xl('Invoice Number'),
812 '1' => xl('Patient Name and ID'),
813 '2' => xl('Patient Name and Invoice'),
815 '2', // default = 2
816 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
819 'cash_receipts_report_invoice' => array(
820 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
821 array(
822 '0' => xl('Invoice Number'),
823 '1' => xl('Patient Name'),
825 '0', // default = 0
826 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
831 // Billing Tab
833 'Billing' => array(
835 'default_search_code_type' => array(
836 xl('Default Search Code Type'),
837 'all_code_types', // data type
838 'ICD10', // default
839 xl('The default code type to search for in the Fee Sheet.')
842 'support_fee_sheet_line_item_provider' => array(
843 xl('Support provider in line item in fee sheet'),
844 'bool', // data type
845 '0', // default = false
846 xl('This Enables provider in line item in the fee sheet')
849 'default_fee_sheet_line_item_provider' => array(
850 xl('Default to a provider for line item in the fee sheet'),
851 'bool', // data type
852 '0', // default = false
853 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
856 'replicate_justification' => array(
857 xl('Automatically replicate justification codes in Fee Sheet'),
858 'bool', // data type
859 '0', // default = false
860 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
863 'display_units_in_billing' => array(
864 xl('Display the Units Column on the Billing Screen'),
865 'bool', // data type
866 '0', // default = false
867 xl('Display the Units Column on the Billing Screen')
870 'notes_to_display_in_Billing' => array(
871 xl('Which notes are to be displayed in the Billing Screen'),
872 array(
873 '0' => xl('None'),
874 '1' => xl('Encounter Billing Note'),
875 '2' => xl('Patient Billing Note'),
876 '3' => xl('All'),
878 '3',
879 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
882 'use_custom_statement' => array(
883 xl('Use Custom Statement'),
884 'bool', // data type
885 '0', // default = false
886 xl('This will use the custom Statment showing the description instead of the codes.')
889 'statement_bill_note_print' => array(
890 xl('Print Patient Billing Note'),
891 'bool', // data type
892 '0', // default = false
893 xl('This will allow printing of the Patient Billing Note on the statements.')
896 'use_dunning_message' => array(
897 xl('Use Custom Dunning Messages'),
898 'bool', // data type
899 '0', // default = false
900 xl('This will allow use of the custom Dunning Messages on the statements.')
903 'first_dun_msg_set' => array(
904 xl('Number of days before showing first account message'),
905 'num', // data type
906 '30',
907 xl('Number of days before showing first account message.')
910 'first_dun_msg_text' => array(
911 xl('First account message'),
912 'text', // data type
914 xl('Text for first account message.')
917 'second_dun_msg_set' => array(
918 xl('Number of days before showing second account message'),
919 'num', // data type
920 '60',
921 xl('Number of days before showing second account message')
924 'second_dun_msg_text' => array(
925 xl('Second account message'),
926 'text', // data type
928 xl('Text for second account message.')
931 'third_dun_msg_set' => array(
932 xl('Number of days before showing third account message'),
933 'num', // data type
934 '90',
935 xl('Number of days before showing third account message')
938 'third_dun_msg_text' => array(
939 xl('Third account message'),
940 'text', // data type
942 xl('Text for third account message.')
945 'fourth_dun_msg_set' => array(
946 xl('Number of days before showing fourth account message'),
947 'num', // data type
948 '120',
949 xl('Number of days before showing fourth account message')
952 'fourth_dun_msg_text' => array(
953 xl('Fourth account message'),
954 'text', // data type
956 xl('Text for fourth account message.')
959 'fifth_dun_msg_set' => array(
960 xl('Number of days before showing fifth account message'),
961 'num', // data type
962 '150',
963 xl('Number of days before showing fifth account message')
966 'fifth_dun_msg_text' => array(
967 xl('Fifth account message'),
968 'text', // data type
970 xl('Text for fifth account message.')
974 // E-Sign Tab
976 'E-Sign' => array(
978 'esign_all' => array(
979 xl('Allows E-Sign on the entire encounter'),
980 'bool', // data type
981 '0', // default = false
982 xl('This will enable signing an entire encounter, rather than individual forms')
985 'lock_esign_all' => array(
986 xl('Lock e-signed encounters and their forms'),
987 'bool', // data type
988 '0', // default = false
989 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
992 'esign_individual' => array(
993 xl('Allows E-Signing Individual Forms'),
994 'bool', // data type
995 '1', // default = false
996 xl('This will enable signing individual forms separately')
999 'lock_esign_individual' => array(
1000 xl('Lock an e-signed form individually'),
1001 'bool', // data type
1002 '1', // default = false
1003 xl('This will disable the Edit button on any form that is e-signed')
1006 'esign_lock_toggle' => array(
1007 xl('Enable lock toggle'),
1008 'bool', // data type
1009 '0', // default = false
1010 xl('This will give the user the option to lock (separate locking and signing)')
1013 'esign_report_hide_empty_sig' => array(
1014 xl('Hide Empty E-Sign Logs On Report'),
1015 'bool', // data type
1016 '1', // default = false
1017 xl('This will hide empty e-sign logs on the patient report')
1021 //Documents Tab
1022 'Documents' => array(
1024 'document_storage_method' => array(
1025 xl('Document Storage Method'),
1026 array(
1027 '0' => xl('Hard Disk'),
1028 '1' => xl('CouchDB')
1030 '0', // default
1031 xl('Option to save method of document storage.')
1033 'couchdb_host' => array(
1034 xl('CouchDB HostName'),
1035 'text',
1036 'localhost',
1037 xl('CouchDB host'),
1039 'couchdb_user' => array(
1040 xl('CouchDB UserName'),
1041 'text',
1043 xl('Username to connect to CouchDB'),
1045 'couchdb_pass' => array(
1046 xl('CouchDB Password'),
1047 'text',
1049 xl('Password to connect to CouchDB'),
1051 'couchdb_port' => array(
1052 xl('CouchDB Port'),
1053 'text',
1054 '5984',
1055 xl('CouchDB port'),
1057 'couchdb_dbase' => array(
1058 xl('CouchDB Database'),
1059 'text',
1061 xl('CouchDB database name'),
1063 'couchdb_log' => array(
1064 xl('CouchDB Log Enable'),
1065 'bool',
1066 '0',
1067 xl('Enable log for document uploads/downloads to CouchDB'),
1070 'expand_document_tree' => array(
1071 xl('Expand All Document Categories'),
1072 'bool', // data type
1073 '0', // default = false
1074 xl('Expand All Document Categories by Default')
1077 'patient_id_category_name' => array(
1078 xl('Patient ID Category Name'),
1079 'text', // data type
1080 'Patient ID card', // default
1081 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1084 'patient_photo_category_name' => array(
1085 xl('Patient Photo Category Name'),
1086 'text', // data type
1087 'Patient Photograph', // default
1088 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1091 'lab_results_category_name' => array(
1092 xl('Lab Results Category Name'),
1093 'text', // data type
1094 'Lab Report', // default
1095 xl('Document category name for storage of electronically received lab results.')
1098 'gbl_mdm_category_name' => array(
1099 xl('MDM Document Category Name'),
1100 'text', // data type
1101 'Lab Report', // default
1102 xl('Document category name for storage of electronically received MDM documents.')
1107 // Calendar Tab
1109 'Calendar' => array(
1111 'disable_calendar' => array(
1112 xl('Disable Calendar'),
1113 'bool', // data type
1114 '0', // default
1115 xl('Do not display the calendar.')
1118 'schedule_start' => array(
1119 xl('Calendar Starting Hour'),
1120 'hour',
1121 '8', // default
1122 xl('Beginning hour of day for calendar events.')
1125 'schedule_end' => array(
1126 xl('Calendar Ending Hour'),
1127 'hour',
1128 '17', // default
1129 xl('Ending hour of day for calendar events.')
1132 'calendar_interval' => array(
1133 xl('Calendar Interval'),
1134 array(
1135 '5' => '5',
1136 '10' => '10',
1137 '15' => '15',
1138 '20' => '20',
1139 '30' => '30',
1140 '60' => '60',
1142 '15', // default
1143 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1146 'calendar_view_type' => array(
1147 xl('Default Calendar View'),
1148 array(
1149 'day' => xl('Day'),
1150 'week' => xl('Week'),
1151 'month' => xl('Month'),
1153 'day', // default
1154 xl('This sets the Default Calendar View, Default is Day.')
1157 'calendar_appt_style' => array(
1158 xl('Appointment Display Style'),
1159 array(
1160 '1' => 'Last name',
1161 '2' => 'Last name, first name',
1162 '3' => 'Last name, first name (title)',
1163 '4' => 'Last name, first name (title: description)',
1165 '2', // default
1166 xl('This determines how appointments display on the calendar.')
1169 'event_color' => array(
1170 xl('Appointment/Event Color'),
1171 array(
1172 '1' => 'Category Color Schema',
1173 '2' => 'Facility Color Schema',
1174 ), // data type
1175 '1', // default
1176 xl('This determines which color schema used for appointment')
1179 'number_of_appts_to_show' => array(
1180 xl('Appointments - Patient Summary - Number to Display'),
1181 'num',
1182 '10',
1183 xl('Number of Appointments to display in the Patient Summary')
1186 'patient_portal_appt_display_num' => array(
1187 xl('Appointments - Onsite Patient Portal - Number to Display'),
1188 'num',
1189 '20',
1190 xl('Number of Appointments to display in the Onsite Patient Portal')
1193 'num_past_appointments_to_show' => array(
1194 xl('Past Appointment Display Widget'),
1195 'num', // data type
1196 '0', // default = false
1197 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)')
1200 'docs_see_entire_calendar' => array(
1201 xl('Providers See Entire Calendar'),
1202 'bool', // data type
1203 '0', // default
1204 xl('Check this if you want providers to see all appointments by default and not just their own.')
1207 'auto_create_new_encounters' => array(
1208 xl('Auto-Create New Encounters'),
1209 'bool', // data type
1210 '1', // default
1211 xl('Automatically create a new encounter when an appointment check in status is selected.')
1214 'disable_pat_trkr' => array(
1215 xl('Disable Patient Flow Board'),
1216 'bool', // data type
1217 '0', // default
1218 xl('Do not display the patient flow board.')
1221 'ptkr_pt_list_new_window' => array(
1222 xl('Open Demographics in New Window from Patient Flow Board'),
1223 'bool', // data type
1224 '0', // default = false
1225 xl('When Checked, Demographics Will Open in New Window from Patient Flow Board.')
1228 'pat_trkr_timer' => array(
1229 xl('Patient Flow Board Timer Interval'),
1230 array(
1231 '0' => 'No automatic refresh',
1232 '0:10' => '10',
1233 '0:20' => '20',
1234 '0:30' => '30',
1235 '0:40' => '40',
1236 '0:50' => '50',
1237 '0:59' => '60',
1239 '0:20', // default
1240 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1243 'checkout_roll_off' => array(
1244 xl('Number of Minutes to display completed checkouts'),
1245 'num',
1246 '0', // default
1247 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1250 'drug_screen' => array(
1251 xl('Enable Random Drug Testing'),
1252 'bool', // data type
1253 '0', // default
1254 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1257 'drug_testing_percentage' => array(
1258 xl('Percentage of Patients to Drug Test'),
1259 'num',
1260 '33', // default
1261 xl('Percentage of Patients to select for Random Drug Testing.')
1264 'maximum_drug_test_yearly' => array(
1265 xl('Maximum number of times a Patient can be tested in a year'),
1266 'num',
1267 '0', // default
1268 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1273 // Security Tab
1275 'Security' => array(
1277 'timeout' => array(
1278 xl('Idle Session Timeout Seconds'),
1279 'num', // data type
1280 '7200', // default
1281 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1284 'secure_password' => array(
1285 xl('Require Strong Passwords'),
1286 'bool', // data type
1287 '0', // default
1288 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1291 'password_history' => array(
1292 xl('Require Unique Passwords'),
1293 'bool', // data type
1294 '0', // default
1295 xl('Means none of last three passwords are allowed when changing a password.')
1297 'password_compatibility' => array(
1298 xl('Permit unsalted passwords'),
1299 'bool', // data type
1300 '1', // default
1301 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')
1304 'password_expiration_days' => array(
1305 xl('Default Password Expiration Days'),
1306 'num', // data type
1307 '0', // default
1308 xl('Default password expiration period in days. 0 means this feature is disabled.')
1311 'password_grace_time' => array(
1312 xl('Password Expiration Grace Period'),
1313 'num', // data type
1314 '0', // default
1315 xl('Period in days where a user may login with an expired password.')
1318 'is_client_ssl_enabled' => array(
1319 xl('Enable Client SSL'),
1320 'bool', // data type
1321 '0', // default
1322 xl('Enable client SSL certificate authentication.')
1325 'certificate_authority_crt' => array(
1326 xl('Path to CA Certificate File'),
1327 'text', // data type
1328 '', // default
1329 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1332 'certificate_authority_key' => array(
1333 xl('Path to CA Key File'),
1334 'text', // data type
1335 '', // default
1336 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1339 'client_certificate_valid_in_days' => array(
1340 xl('Client Certificate Expiration Days'),
1341 'num', // data type
1342 '365', // default
1343 xl('Number of days that the client certificate is valid.')
1346 'Emergency_Login_email_id' => array(
1347 xl('Emergency Login Email Address'),
1348 'text', // data type
1349 '', // default
1350 xl('Email address, if any, to receive emergency login user activation messages.')
1355 // Notifications Tab
1357 'Notifications' => array(
1359 'patient_reminder_sender_name' => array(
1360 xl('Patient Reminder Sender Name'),
1361 'text', // data type
1362 '', // default
1363 xl('Name of the sender for patient reminders.')
1366 'patient_reminder_sender_email' => array(
1367 xl('Patient Reminder Sender Email'),
1368 'text', // data type
1369 '', // default
1370 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.')
1373 'practice_return_email_path' => array(
1374 xl('Notification Email Address'),
1375 'text', // data type
1376 '', // default
1377 xl('Email address, if any, to receive administrative notifications.')
1380 'EMAIL_METHOD' => array(
1381 xl('Email Transport Method'),
1382 array(
1383 'PHPMAIL' => 'PHPMAIL',
1384 'SENDMAIL' => 'SENDMAIL',
1385 'SMTP' => 'SMTP',
1387 'SMTP', // default
1388 xl('Method for sending outgoing email.')
1391 'SMTP_HOST' => array(
1392 xl('SMTP Server Hostname'),
1393 'text', // data type
1394 'localhost', // default
1395 xl('If SMTP is used, the server`s hostname or IP address.')
1398 'SMTP_PORT' => array(
1399 xl('SMTP Server Port Number'),
1400 'num', // data type
1401 '25', // default
1402 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1405 'SMTP_USER' => array(
1406 xl('SMTP User for Authentication'),
1407 'text', // data type
1408 '', // default
1409 xl('Must be empty if SMTP authentication is not used.')
1412 'SMTP_PASS' => array(
1413 xl('SMTP Password for Authentication'),
1414 'text', // data type
1415 '', // default
1416 xl('Must be empty if SMTP authentication is not used.')
1419 'SMTP_SECURE' => array(
1420 xl('SMTP Security Protocol'),
1421 array(
1422 '' => xl('None'),
1423 'ssl' => 'SSL',
1424 'tls' => 'TLS'
1427 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1430 'EMAIL_NOTIFICATION_HOUR' => array(
1431 xl('Email Notification Hours'),
1432 'num', // data type
1433 '50', // default
1434 xl('Number of hours in advance to send email notifications.')
1437 'SMS_NOTIFICATION_HOUR' => array(
1438 xl('SMS Notification Hours'),
1439 'num', // data type
1440 '50', // default
1441 xl('Number of hours in advance to send SMS notifications.')
1444 'SMS_GATEWAY_USENAME' => array(
1445 xl('SMS Gateway Username'),
1446 'text', // data type
1447 '', // default
1448 xl('Username for SMS Gateway.')
1451 'SMS_GATEWAY_PASSWORD' => array(
1452 xl('SMS Gateway Password'),
1453 'text', // data type
1454 '', // default
1455 xl('Password for SMS Gateway.')
1458 'SMS_GATEWAY_APIKEY' => array(
1459 xl('SMS Gateway API Key'),
1460 'text', // data type
1461 '', // default
1462 xl('API key for SMS Gateway.')
1465 'phone_notification_hour' => array(
1466 xl('Phone Notification Hour'),
1467 'num', // data type
1468 '50', // default
1469 xl('Number of hours in advance to send Phone notification.')
1472 'phone_gateway_username' => array(
1473 xl('Phone Gateway Username'),
1474 'text', // data type
1475 '', // default
1476 xl('Username for Phone Gateway.')
1479 'phone_gateway_password' => array(
1480 xl('Phone Gateway Password'),
1481 'text', // data type
1482 '', // default
1483 xl('Password for Phone Gateway.')
1486 'phone_gateway_url' => array(
1487 xl('Phone Gateway URL'),
1488 'text', // data type
1489 '', // default
1490 xl('URL for Phone Gateway.')
1495 // CDR (Clinical Decision Rules)
1497 'CDR' => array(
1499 'enable_cdr' => array(
1500 xl('Enable Clinical Decisions Rules (CDR)'),
1501 'bool', // data type
1502 '1', // default
1503 xl('Enable Clinical Decisions Rules (CDR)')
1506 'enable_allergy_check' => array(
1507 xl('Enable Allergy Check'),
1508 'bool', // data type
1509 '1', // default
1510 xl('Enable Allergy Check Against Medications and Prescriptions')
1513 'enable_alert_log' => array(
1514 xl('Enable Alert Log'),
1515 'bool', // data type
1516 '1', // default
1517 xl('Enable Alert Logging')
1520 'enable_cdr_new_crp' => array(
1521 xl('Enable Clinical Passive New Reminder(s) Popup'),
1522 'bool', // data type
1523 '1', // default
1524 xl('Enable Clinical Passive New Reminder(s) Popup')
1527 'enable_cdr_crw' => array(
1528 xl('Enable Clinical Passive Reminder Widget'),
1529 'bool', // data type
1530 '1', // default
1531 xl('Enable Clinical Passive Reminder Widget')
1534 'enable_cdr_crp' => array(
1535 xl('Enable Clinical Active Reminder Popup'),
1536 'bool', // data type
1537 '1', // default
1538 xl('Enable Clinical Active Reminder Popup')
1541 'enable_cdr_prw' => array(
1542 xl('Enable Patient Reminder Widget'),
1543 'bool', // data type
1544 '1', // default
1545 xl('Enable Patient Reminder Widget')
1548 'enable_cqm' => array(
1549 xl('Enable CQM Reporting'),
1550 'bool', // data type
1551 '1', // default
1552 xl('Enable Clinical Quality Measure (CQM) Reporting')
1555 'pqri_registry_name' => array(
1556 xl('PQRI Registry Name'),
1557 'text', // data type
1558 'Model Registry', // default
1559 xl('PQRI Registry Name')
1562 'pqri_registry_id' => array(
1563 xl('PQRI Registry ID'),
1564 'text', // data type
1565 '125789123', // default
1566 xl('PQRI Registry ID')
1569 'enable_amc' => array(
1570 xl('Enable AMC Reporting'),
1571 'bool', // data type
1572 '1', // default
1573 xl('Enable Automated Measure Calculations (AMC) Reporting')
1576 'enable_amc_prompting' => array(
1577 xl('Enable AMC Prompting'),
1578 'bool', // data type
1579 '1', // default
1580 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1583 'enable_amc_tracking' => array(
1584 xl('Enable AMC Tracking'),
1585 'bool', // data type
1586 '1', // default
1587 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
1590 'cdr_report_nice' => array(
1591 xl('CDR Reports Processing Priority'),
1592 array(
1593 '' => xl('Default Priority'),
1594 '5' => xl('Moderate Priority'),
1595 '10' => xl('Moderate/Low Priority'),
1596 '15' => xl('Low Priority'),
1597 '20' => xl('Lowest Priority')
1599 '', // default
1600 xl('Set processing priority for CDR engine based reports.')
1603 'pat_rem_clin_nice' => array(
1604 xl('Patient Reminder Creation Processing Priority'),
1605 array(
1606 '' => xl('Default Priority'),
1607 '5' => xl('Moderate Priority'),
1608 '10' => xl('Moderate/Low Priority'),
1609 '15' => xl('Low Priority'),
1610 '20' => xl('Lowest Priority')
1612 '', // default
1613 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
1616 'report_itemizing_standard' => array(
1617 xl('Enable Standard Report Itemization'),
1618 'bool', // data type
1619 '1', // default
1620 xl('Enable Itemization of Standard Clinical Rules Reports')
1623 'report_itemizing_cqm' => array(
1624 xl('Enable CQM Report Itemization'),
1625 'bool', // data type
1626 '1', // default
1627 xl('Enable Itemization of CQM Reports')
1630 'report_itemizing_amc' => array(
1631 xl('Enable AMC Report Itemization'),
1632 'bool', // data type
1633 '1', // default
1634 xl('Enable Itemization of AMC Reports')
1639 // Logging
1641 'Logging' => array(
1643 'enable_auditlog' => array(
1644 xl('Enable Audit Logging'),
1645 'bool', // data type
1646 '1', // default
1647 xl('Enable Audit Logging')
1650 'audit_events_patient-record' => array(
1651 xl('Audit Logging Patient Record'),
1652 'bool', // data type
1653 '1', // default
1654 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1657 'audit_events_scheduling' => array(
1658 xl('Audit Logging Scheduling'),
1659 'bool', // data type
1660 '1', // default
1661 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1664 'audit_events_order' => array(
1665 xl('Audit Logging Order'),
1666 'bool', // data type
1667 '1', // default
1668 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1671 'audit_events_security-administration' => array(
1672 xl('Audit Logging Security Administration'),
1673 'bool', // data type
1674 '1', // default
1675 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1678 'audit_events_backup' => array(
1679 xl('Audit Logging Backups'),
1680 'bool', // data type
1681 '1', // default
1682 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1685 'audit_events_other' => array(
1686 xl('Audit Logging Miscellaneous'),
1687 'bool', // data type
1688 '1', // default
1689 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1692 'audit_events_query' => array(
1693 xl('Audit Logging SELECT Query'),
1694 'bool', // data type
1695 '0', // default
1696 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1699 'audit_events_cdr' => array(
1700 xl('Audit CDR Engine Queries'),
1701 'bool', // data type
1702 '0', // default
1703 xl('Enable logging of CDR Engine Queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1706 'enable_atna_audit' => array(
1707 xl('Enable ATNA Auditing'),
1708 'bool', // data type
1709 '0', // default
1710 xl('Enable Audit Trail and Node Authentication (ATNA).')
1713 'atna_audit_host' => array(
1714 xl('ATNA audit host'),
1715 'text', // data type
1716 '', // default
1717 xl('The hostname of the ATNA audit repository machine.')
1720 'atna_audit_port' => array(
1721 xl('ATNA audit port'),
1722 'text', // data type
1723 '6514', // default
1724 xl('Listening port of the RFC 5425 TLS syslog server.')
1727 'atna_audit_localcert' => array(
1728 xl('ATNA audit local certificate'),
1729 'text', // data type
1730 '', // default
1731 xl('Certificate to send to RFC 5425 TLS syslog server.')
1734 'atna_audit_cacert' => array(
1735 xl('ATNA audit CA certificate'),
1736 'text', // data type
1737 '', // default
1738 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
1741 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
1742 'enable_auditlog_encryption' => array(
1743 xl('Enable Audit Log Encryption'),
1744 'bool', // data type
1745 '0', // default
1746 xl('Enable Audit Log Encryption')
1749 'billing_log_option' => array(
1750 xl('Billing Log Option'),
1751 array(
1752 '1' => xl('Billing Log Append'),
1753 '2' => xl('Billing Log Overwrite')
1755 '1', // default
1756 xl('Billing log setting to append or overwrite the log file.')
1759 'gbl_print_log_option' => array(
1760 xl('Printing Log Option'),
1761 array(
1762 '0' => xl('No logging'),
1763 '1' => xl('Hide print feature'),
1764 '2' => xl('Log entire document'),
1766 '0', // default
1767 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
1772 // Miscellaneous Tab
1774 'Miscellaneous' => array(
1776 'mysql_bin_dir' => array(
1777 xl('Path to MySQL Binaries'),
1778 'text', // data type
1779 $mysql_bin_dir, // default
1780 xl('Full path to directory containing MySQL executables.')
1783 'perl_bin_dir' => array(
1784 xl('Path to Perl Binaries'),
1785 'text', // data type
1786 $perl_bin_dir, // default
1787 xl('Full path to directory containing Perl executables.')
1790 'temporary_files_dir' => array(
1791 xl('Path to Temporary Files'),
1792 'text', // data type
1793 $temporary_files_dir, // default
1794 xl('Full path to directory used for temporary files.')
1797 'backup_log_dir' => array(
1798 xl('Path for Event Log Backup'),
1799 'text', // data type
1800 $backup_log_dir, // default
1801 xl('Full path to directory for event log backup.')
1804 'state_data_type' => array(
1805 xl('State Data Type'),
1806 array(
1807 '2' => xl('Text field'),
1808 '1' => xl('Single-selection list'),
1809 '26' => xl('Single-selection list with ability to add to the list'),
1811 '26', // default
1812 xl('Field type to use for employer or subscriber state in demographics.')
1815 'state_list' => array(
1816 xl('State list'),
1817 'text', // data type
1818 'state', // default
1819 xl('List used by above State Data Type option.')
1822 'state_custom_addlist_widget' => array(
1823 xl('State List Widget Custom Fields'),
1824 'bool', // data type
1825 '1', // default
1826 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
1829 'country_data_type' => array(
1830 xl('Country Data Type'),
1831 array(
1832 '2' => xl('Text field'),
1833 '1' => xl('Single-selection list'),
1834 '26' => xl('Single-selection list with ability to add to the list'),
1836 '26', // default
1837 xl('Field type to use for employer or subscriber country in demographics.')
1840 'country_list' => array(
1841 xl('Country list'),
1842 'text', // data type
1843 'country', // default
1844 xl('List used by above Country Data Type option.')
1847 'print_command' => array(
1848 xl('Print Command'),
1849 'text', // data type
1850 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
1851 xl('Shell command for printing from the server.')
1854 'default_chief_complaint' => array(
1855 xl('Default Reason for Visit'),
1856 'text', // data type
1858 xl('You may put text here as the default complaint in the New Patient Encounter form.')
1861 'default_new_encounter_form' => array(
1862 xl('Default Encounter Form ID'),
1863 'text', // data type
1865 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
1868 'MedicareReferrerIsRenderer' => array(
1869 xl('Medicare Referrer Is Renderer'),
1870 'bool', // data type
1871 '0', // default = true
1872 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
1875 'post_to_date_benchmark' => array(
1876 xl('Financial Close Date (yyyy-mm-dd)'),
1877 'text', // data type
1878 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
1879 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
1882 'enable_hylafax' => array(
1883 xl('Enable Hylafax Support'),
1884 'bool', // data type
1885 '0', // default
1886 xl('Enable Hylafax Support')
1889 'hylafax_server' => array(
1890 xl('Hylafax Server'),
1891 'text', // data type
1892 'localhost', // default
1893 xl('Hylafax server hostname.')
1896 'hylafax_basedir' => array(
1897 xl('Hylafax Directory'),
1898 'text', // data type
1899 '/var/spool/fax', // default
1900 xl('Location where Hylafax stores faxes.')
1903 'hylafax_enscript' => array(
1904 xl('Hylafax Enscript Command'),
1905 'text', // data type
1906 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
1907 xl('Enscript command used by Hylafax.')
1910 'enable_scanner' => array(
1911 xl('Enable Scanner Support'),
1912 'bool', // data type
1913 '0', // default
1914 xl('Enable Scanner Support')
1917 'scanner_output_directory' => array(
1918 xl('Scanner Directory'),
1919 'text', // data type
1920 '/mnt/scan_docs', // default
1921 xl('Location where scans are stored.')
1925 // Portal Tab
1927 'Portal' => array(
1929 'portal_onsite_enable' => array(
1930 xl('Enable Onsite Patient Portal'),
1931 'bool', // data type
1932 '0',
1933 xl('Enable Onsite Patient Portal.')
1936 'portal_onsite_address' => array(
1937 xl('Onsite Patient Portal Site Address'),
1938 'text', // data type
1939 'https://your_web_site.com/openemr/patients',
1940 xl('Website link for the Onsite Patient Portal.')
1943 'portal_onsite_document_download' => array(
1944 xl('Enable Onsite Patient Portal Document Download'),
1945 'bool', // data type
1946 '1',
1947 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
1950 'portal_offsite_enable' => array(
1951 xl('Enable Offsite Patient Portal'),
1952 'bool', // data type
1953 '0',
1954 xl('Enable Offsite Patient Portal.')
1957 'portal_offsite_providerid' => array(
1958 xl('Offsite Patient Portal Provider ID'),
1959 'text', // data type
1961 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
1964 'portal_offsite_username' => array(
1965 xl('Offsite Patient Portal Username'),
1966 'text', // data type
1968 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
1971 'portal_offsite_password' => array(
1972 xl('Offsite Patient Portal Password'),
1973 'pwd', // data type
1975 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
1978 'portal_offsite_address' => array(
1979 xl('Offsite Patient Portal Site Address'),
1980 'text', // data type
1981 'https://ssh.mydocsportal.com/provider.php',
1982 xl('Offsite Https link for the Patient Portal.')
1985 'portal_offsite_address_patient_link' => array(
1986 xl('Offsite Patient Portal Site Address (Patient Link)'),
1987 'text', // data type
1988 'https://ssh.mydocsportal.com',
1989 xl('Offsite Https link for the Patient Portal.(Patient Link)')
1992 // Currently the "CMS Portal" supports WordPress. Other Content Management
1993 // Systems may be supported in the future.
1995 'gbl_portal_cms_enable' => array(
1996 xl('Enable CMS Portal'),
1997 'bool', // data type
1998 '0',
1999 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2002 'gbl_portal_cms_address' => array(
2003 xl('CMS Portal Site Address'),
2004 'text', // data type
2005 'https://your_cms_site.com/',
2006 xl('URL for the WordPress site that supports the portal')
2009 'gbl_portal_cms_username' => array(
2010 xl('CMS Portal Username'),
2011 'text', // data type
2013 xl('Login name of WordPress user for portal access')
2016 'gbl_portal_cms_password' => array(
2017 xl('CMS Portal Password'),
2018 'text', // data type
2020 xl('Password for the above user')
2025 // Connectors Tab
2027 'Connectors' => array(
2029 'erx_enable' => array(
2030 xl('Enable NewCrop eRx Service'),
2031 'bool',
2032 '0',
2033 xl('Enable NewCrop eRx Service.') + ' ' +
2034 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.')
2037 'erx_newcrop_path' => array(
2038 xl('NewCrop eRx Site Address'),
2039 'text',
2040 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2041 xl('URL for NewCrop eRx Site Address.')
2044 'erx_newcrop_path_soap' => array(
2045 xl('NewCrop eRx Web Service Address'),
2046 'text',
2047 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2048 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2051 'erx_soap_ttl_allergies' => array(
2052 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2053 'num',
2054 '21600',
2055 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2058 'erx_soap_ttl_medications' => array(
2059 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2060 'num',
2061 '21600',
2062 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2065 'erx_account_partner_name' => array(
2066 xl('NewCrop eRx Partner Name'),
2067 'text',
2069 xl('Partner Name issued for NewCrop eRx service.')
2072 'erx_account_name' => array(
2073 xl('NewCrop eRx Name'),
2074 'text',
2076 xl('Account Name issued for NewCrop eRx service.')
2079 'erx_account_password' => array(
2080 xl('NewCrop eRx Password'),
2081 'pass',
2083 xl('Account Password issued for NewCrop eRx service.')
2086 'erx_account_id' => array(
2087 xl('NewCrop eRx Account Id'),
2088 'text',
2089 '1',
2090 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2093 'erx_upload_active' => array(
2094 xl('Only upload active prescriptions'),
2095 'bool',
2096 '0',
2097 xl('Only upload active prescriptions to NewCrop eRx.')
2100 'erx_import_status_message' => array(
2101 xl('Enable NewCrop eRx import status message'),
2102 'bool',
2103 '0',
2104 xl('Enable import status message after visiting NewCrop eRx.')
2107 'erx_medication_display' => array(
2108 xl('Do not display NewCrop eRx Medications uploaded'),
2109 'bool',
2110 '0',
2111 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2114 'erx_allergy_display' => array(
2115 xl('Do not display NewCrop eRx Allergy uploaded'),
2116 'bool',
2117 '0',
2118 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2121 'erx_default_patient_country' => array(
2122 xl('NewCrop eRx Default Patient Country'),
2123 array(
2124 '' => '',
2125 'US' => xl('USA'),
2126 'CA' => xl('Canada'),
2127 'MX' => xl('Mexico'),
2130 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2133 'erx_debug_setting' => array(
2134 xl('NewCrop eRx Debug Setting'),
2135 array(
2136 0 => xl('None'),
2137 1 => xl('Request Only'),
2138 2 => xl('Response Only'),
2139 3 => xl('Request & Response'),
2141 '0',
2142 xl('Log all NewCrop eRx Requests and / or Responses.'),
2145 'phimail_enable' => array(
2146 xl('Enable phiMail Direct Messaging Service'),
2147 'bool', // data type
2148 '0',
2149 xl('Enable phiMail Direct Messaging Service')
2152 'phimail_server_address' => array(
2153 xl('phiMail Server Address'),
2154 'text', // data type
2155 'https://phimail.example.com:32541',
2156 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2159 'phimail_username' => array(
2160 xl('phiMail Username'),
2161 'text', // data type
2163 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2166 'phimail_password' => array(
2167 xl('phiMail Password'),
2168 'pass', // data type
2170 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2173 'phimail_notify' => array(
2174 xl('phiMail notification user'),
2175 'text', // data type
2176 'admin',
2177 xl('This user will receive notification of new incoming Direct messages')
2180 'phimail_interval' => array(
2181 xl('phiMail Message Check Interval (minutes)'),
2182 'num', // data type
2183 '5',
2184 xl('Interval between message checks (set to zero for manual checks only)')
2187 'phimail_ccd_enable' => array(
2188 xl('phiMail Allow CCD Send'),
2189 'bool', // data type
2190 '0',
2191 xl('phiMail Allow CCD Send')
2194 'phimail_ccr_enable' => array(
2195 xl('phiMail Allow CCR Send'),
2196 'bool', // data type
2197 '0',
2198 xl('phiMail Allow CCR Send')
2202 'Rx' => array(
2203 'rx_enable_DEA' => array(
2204 xl('Rx Enable DEA #'),
2205 'bool', // data type
2206 '1',
2207 xl('Rx Enable DEA #')
2209 'rx_show_DEA' => array(
2210 xl('Rx Show DEA #'),
2211 'bool', // data type
2212 '0',
2213 xl('Rx Show DEA #')
2215 'rx_enable_NPI' => array(
2216 xl('Rx Enable NPI'),
2217 'bool', // data type
2218 '0',
2219 xl('Rx Enable NPI')
2221 'rx_show_NPI' => array(
2222 xl('Rx Show NPI'),
2223 'bool', // data type
2224 '0',
2225 xl('Rx Show NPI')
2227 'rx_enable_SLN' => array(
2228 xl('Rx Enable State Lic. #'),
2229 'bool', // data type
2230 '0',
2231 xl('Rx Enable State Lic. #')
2233 'rx_show_SLN' => array(
2234 xl('Rx Show State Lic. #'),
2235 'bool', // data type
2236 '0',
2237 xl('Rx Show State Lic. #')
2239 'rx_paper_size' => array(
2240 xl('Rx Paper Size'), // descriptive name
2241 array(
2242 'LETTER' => xl('Letter Paper Size'),
2243 'LEGAL' => xl('Legal Paper Size'),
2244 'FOLIO' => xl('Folio Paper Size'),
2245 'EXECUTIVE' => xl('Executive Paper Size'),
2246 '4A0' => ('4A0' . " " . xl('Paper Size')),
2247 '2A0' => ('2A0' . " " . xl('Paper Size')),
2248 'A0' => ('A0' . " " . xl('Paper Size')),
2249 'A1' => ('A1' . " " . xl('Paper Size')),
2250 'A2' => ('A2' . " " . xl('Paper Size')),
2251 'A3' => ('A3' . " " . xl('Paper Size')),
2252 'A4' => ('A4' . " " . xl('Paper Size')),
2253 'A5' => ('A5' . " " . xl('Paper Size')),
2254 'A6' => ('A6' . " " . xl('Paper Size')),
2255 'A7' => ('A7' . " " . xl('Paper Size')),
2256 'A8' => ('A8' . " " . xl('Paper Size')),
2257 'A9' => ('A9' . " " . xl('Paper Size')),
2258 'A10' => ('A10' . " " . xl('Paper Size')),
2259 'B0' => ('B0' . " " . xl('Paper Size')),
2260 'B1' => ('B1' . " " . xl('Paper Size')),
2261 'B2' => ('B2' . " " . xl('Paper Size')),
2262 'B3' => ('B3' . " " . xl('Paper Size')),
2263 'B4' => ('B4' . " " . xl('Paper Size')),
2264 'B5' => ('B5' . " " . xl('Paper Size')),
2265 'B6' => ('B6' . " " . xl('Paper Size')),
2266 'B7' => ('B7' . " " . xl('Paper Size')),
2267 'B8' => ('B8' . " " . xl('Paper Size')),
2268 'B9' => ('B9' . " " . xl('Paper Size')),
2269 'B10' => ('B10' . " " . xl('Paper Size')),
2270 'C0' => ('C0' . " " . xl('Paper Size')),
2271 'C1' => ('C1' . " " . xl('Paper Size')),
2272 'C2' => ('C2' . " " . xl('Paper Size')),
2273 'C3' => ('C3' . " " . xl('Paper Size')),
2274 'C4' => ('C4' . " " . xl('Paper Size')),
2275 'C5' => ('C5' . " " . xl('Paper Size')),
2276 'C6' => ('C6' . " " . xl('Paper Size')),
2277 'C7' => ('C7' . " " . xl('Paper Size')),
2278 'C8' => ('C8' . " " . xl('Paper Size')),
2279 'C9' => ('C9' . " " . xl('Paper Size')),
2280 'C10' => ('C10' . " " . xl('Paper Size')),
2281 'RA0' => ('RA0' . " " . xl('Paper Size')),
2282 'RA1' => ('RA1' . " " . xl('Paper Size')),
2283 'RA2' => ('RA2' . " " . xl('Paper Size')),
2284 'RA3' => ('RA3' . " " . xl('Paper Size')),
2285 'RA4' => ('RA4' . " " . xl('Paper Size')),
2286 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2287 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2288 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2289 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2290 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2292 'LETTER', // default = tree menu
2293 xl('Rx Paper Size')
2295 'rx_left_margin' => array(
2296 xl('Rx Left Margin (px)'),
2297 'num',
2298 '30',
2299 xl('Rx Left Margin (px)')
2301 'rx_right_margin' => array(
2302 xl('Rx Right Margin (px)'),
2303 'num',
2304 '30',
2305 xl('Rx Right Margin (px)')
2307 'rx_top_margin' => array(
2308 xl('Rx Top Margin (px)'),
2309 'num',
2310 '72',
2311 xl('Rx Top Margin (px)')
2313 'rx_bottom_margin' => array(
2314 xl('Rx Bottom Margin (px)'),
2315 'num',
2316 '30',
2317 xl('Rx Bottom Margin (px)')
2321 'PDF' => array (
2322 'pdf_layout' => array (
2323 xl('Layout'),
2324 array(
2325 'P' => xl('Portrait'),
2326 'L' => xl('Landscape')
2328 'P', //defaut
2329 xl("Choose Layout Direction"),
2331 'pdf_language' => array (
2332 xl('PDF Language'),
2333 array(
2334 'aa' => xl('Afar'),
2335 'af' => xl('Afrikaans'),
2336 'ak' => xl('Akan'),
2337 'sq' => xl('Albanian'),
2338 'am' => xl('Amharic'),
2339 'ar' => xl('Arabic'),
2340 'an' => xl('Aragonese'),
2341 'hy' => xl('Armenian'),
2342 'as' => xl('Assamese'),
2343 'av' => xl('Avaric'),
2344 'ae' => xl('Avestan'),
2345 'ay' => xl('Aymara'),
2346 'az' => xl('Azerbaijani'),
2347 'bm' => xl('Bambara'),
2348 'ba' => xl('Bashkir'),
2349 'eu' => xl('Basque'),
2350 'be' => xl('Belarusian'),
2351 'bn' => xl('Bengali- Bangla'),
2352 'bh' => xl('Bihari'),
2353 'bi' => xl('Bislama'),
2354 'bs' => xl('Bosnian'),
2355 'br' => xl('Breton'),
2356 'bg' => xl('Bulgarian'),
2357 'my' => xl('Burmese'),
2358 'ca' => xl('Catalan- Valencian'),
2359 'ch' => xl('Chamorro'),
2360 'ce' => xl('Chechen'),
2361 'ny' => xl('Chichewa- Chewa- Nyanja'),
2362 'zh' => xl('Chinese'),
2363 'cv' => xl('Chuvash'),
2364 'kw' => xl('Cornish'),
2365 'co' => xl('Corsican'),
2366 'cr' => xl('Cree'),
2367 'hr' => xl('Croatian'),
2368 'cs' => xl('Czech'),
2369 'da' => xl('Danish'),
2370 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2371 'nl' => xl('Dutch'),
2372 'dz' => xl('Dzongkha'),
2373 'en' => xl('English'),
2374 'eo' => xl('Esperanto'),
2375 'et' => xl('Estonian'),
2376 'ee' => xl('Ewe'),
2377 'fo' => xl('Faroese'),
2378 'fj' => xl('Fijian'),
2379 'fi' => xl('Finnish'),
2380 'fr' => xl('French'),
2381 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2382 'gl' => xl('Galician'),
2383 'ka' => xl('Georgian'),
2384 'de' => xl('German'),
2385 'el' => xl('Greek, Modern'),
2386 'gn' => xl('Guaraní'),
2387 'gu' => xl('Gujarati'),
2388 'ht' => xl('Haitian- Haitian Creole'),
2389 'ha' => xl('Hausa'),
2390 'he' => xl('Hebrew (modern)'),
2391 'hz' => xl('Herero'),
2392 'hi' => xl('Hindi'),
2393 'ho' => xl('Hiri Motu'),
2394 'hu' => xl('Hungarian'),
2395 'ia' => xl('Interlingua'),
2396 'id' => xl('Indonesian'),
2397 'ie' => xl('Interlingue'),
2398 'ga' => xl('Irish'),
2399 'ig' => xl('Igbo'),
2400 'ik' => xl('Inupiaq'),
2401 'io' => xl('Ido'),
2402 'is' => xl('Icelandic'),
2403 'it' => xl('Italian'),
2404 'iu' => xl('Inuktitut'),
2405 'ja' => xl('Japanese'),
2406 'jv' => xl('Javanese'),
2407 'kl' => xl('Kalaallisut, Greenlandic'),
2408 'kn' => xl('Kannada'),
2409 'kr' => xl('Kanuri'),
2410 'ks' => xl('Kashmiri'),
2411 'kk' => xl('Kazakh'),
2412 'km' => xl('Khmer'),
2413 'ki' => xl('Kikuyu, Gikuyu'),
2414 'rw' => xl('Kinyarwanda'),
2415 'ky' => xl('Kyrgyz'),
2416 'kv' => xl('Komi'),
2417 'kg' => xl('Kongo'),
2418 'ko' => xl('Korean'),
2419 'ku' => xl('Kurdish'),
2420 'kj' => xl('Kwanyama, Kuanyama'),
2421 'la' => xl('Latin'),
2422 'lb' => xl('Luxembourgish, Letzeburgesch'),
2423 'lg' => xl('Ganda'),
2424 'li' => xl('Limburgish, Limburgan, Limburger'),
2425 'ln' => xl('Lingala'),
2426 'lo' => xl('Lao'),
2427 'lt' => xl('Lithuanian'),
2428 'lu' => xl('Luba-Katanga'),
2429 'lv' => xl('Latvian'),
2430 'gv' => xl('Manx'),
2431 'mk' => xl('Macedonian'),
2432 'mg' => xl('Malagasy'),
2433 'ms' => xl('Malay'),
2434 'ml' => xl('Malayalam'),
2435 'mt' => xl('Maltese'),
2436 'mi' => xl('Māori'),
2437 'mr' => xl('Marathi (Marāṭhī)'),
2438 'mh' => xl('Marshallese'),
2439 'mn' => xl('Mongolian'),
2440 'na' => xl('Nauru'),
2441 'nv' => xl('Navajo, Navaho'),
2442 'nb' => xl('Norwegian Bokmål'),
2443 'nd' => xl('North Ndebele'),
2444 'ne' => xl('Nepali'),
2445 'ng' => xl('Ndonga'),
2446 'nn' => xl('Norwegian Nynorsk'),
2447 'no' => xl('Norwegian'),
2448 'ii' => xl('Nuosu'),
2449 'nr' => xl('South Ndebele'),
2450 'oc' => xl('Occitan'),
2451 'oj' => xl('Ojibwe, Ojibwa'),
2452 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2453 'om' => xl('Oromo'),
2454 'or' => xl('Oriya'),
2455 'os' => xl('Ossetian, Ossetic'),
2456 'pa' => xl('Panjabi, Punjabi'),
2457 'pi' => xl('Pāli'),
2458 'fa' => xl('Persian (Farsi)'),
2459 'pl' => xl('Polish'),
2460 'ps' => xl('Pashto, Pushto'),
2461 'pt' => xl('Portuguese'),
2462 'qu' => xl('Quechua'),
2463 'rm' => xl('Romansh'),
2464 'rn' => xl('Kirundi'),
2465 'ro' => xl('Romanian'),
2466 'ru' => xl('Russian'),
2467 'sa' => xl('Sanskrit (Saṁskṛta)'),
2468 'sc' => xl('Sardinian'),
2469 'sd' => xl('Sindhi'),
2470 'se' => xl('Northern Sami'),
2471 'sm' => xl('Samoan'),
2472 'sg' => xl('Sango'),
2473 'sr' => xl('Serbian'),
2474 'gd' => xl('Scottish Gaelic- Gaelic'),
2475 'sn' => xl('Shona'),
2476 'si' => xl('Sinhala, Sinhalese'),
2477 'sk' => xl('Slovak'),
2478 'sl' => xl('Slovene'),
2479 'so' => xl('Somali'),
2480 'st' => xl('Southern Sotho'),
2481 'es' => xl('Spanish- Castilian'),
2482 'su' => xl('Sundanese'),
2483 'sw' => xl('Swahili'),
2484 'ss' => xl('Swati'),
2485 'sv' => xl('Swedish'),
2486 'ta' => xl('Tamil'),
2487 'te' => xl('Telugu'),
2488 'tg' => xl('Tajik'),
2489 'th' => xl('Thai'),
2490 'ti' => xl('Tigrinya'),
2491 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2492 'tk' => xl('Turkmen'),
2493 'tl' => xl('Tagalog'),
2494 'tn' => xl('Tswana'),
2495 'to' => xl('Tonga (Tonga Islands)'),
2496 'tr' => xl('Turkish'),
2497 'ts' => xl('Tsonga'),
2498 'tt' => xl('Tatar'),
2499 'tw' => xl('Twi'),
2500 'ty' => xl('Tahitian'),
2501 'ug' => xl('Uyghur, Uighur'),
2502 'uk' => xl('Ukrainian'),
2503 'ur' => xl('Urdu'),
2504 'uz' => xl('Uzbek'),
2505 've' => xl('Venda'),
2506 'vi' => xl('Vietnamese'),
2507 'vo' => xl('Volapük'),
2508 'wa' => xl('Walloon'),
2509 'cy' => xl('Welsh'),
2510 'wo' => xl('Wolof'),
2511 'fy' => xl('Western Frisian'),
2512 'xh' => xl('Xhosa'),
2513 'yi' => xl('Yiddish'),
2514 'yo' => xl('Yoruba'),
2515 'za' => xl('Zhuang, Chuang'),
2516 'zu' => xl('Zulu'),
2518 'en', // default English
2519 xl('Choose PDF languange Preference'),
2521 'pdf_size' => array(
2522 xl('Paper Size'), // Descriptive Name
2523 array(
2524 'LETTER' => xl('Letter Paper Size'),
2525 'LEGAL' => xl('Legal Paper Size'),
2526 'FOLIO' => xl('Folio Paper Size'),
2527 'EXECUTIVE' => xl('Executive Paper Size'),
2528 '4A0' => ('4A0' . " " . xl('Paper Size')),
2529 '2A0' => ('2A0' . " " . xl('Paper Size')),
2530 'A0' => ('A0' . " " . xl('Paper Size')),
2531 'A1' => ('A1' . " " . xl('Paper Size')),
2532 'A2' => ('A2' . " " . xl('Paper Size')),
2533 'A3' => ('A3' . " " . xl('Paper Size')),
2534 'A4' => ('A4' . " " . xl('Paper Size')),
2535 'A5' => ('A5' . " " . xl('Paper Size')),
2536 'A6' => ('A6' . " " . xl('Paper Size')),
2537 'A7' => ('A7' . " " . xl('Paper Size')),
2538 'A8' => ('A8' . " " . xl('Paper Size')),
2539 'A9' => ('A9' . " " . xl('Paper Size')),
2540 'A10' => ('A10' . " " . xl('Paper Size')),
2541 'B0' => ('B0' . " " . xl('Paper Size')),
2542 'B1' => ('B1' . " " . xl('Paper Size')),
2543 'B2' => ('B2' . " " . xl('Paper Size')),
2544 'B3' => ('B3' . " " . xl('Paper Size')),
2545 'B4' => ('B4' . " " . xl('Paper Size')),
2546 'B5' => ('B5' . " " . xl('Paper Size')),
2547 'B6' => ('B6' . " " . xl('Paper Size')),
2548 'B7' => ('B7' . " " . xl('Paper Size')),
2549 'B8' => ('B8' . " " . xl('Paper Size')),
2550 'B9' => ('B9' . " " . xl('Paper Size')),
2551 'B10' => ('B10' . " " . xl('Paper Size')),
2552 'C0' => ('C0' . " " . xl('Paper Size')),
2553 'C1' => ('C1' . " " . xl('Paper Size')),
2554 'C2' => ('C2' . " " . xl('Paper Size')),
2555 'C3' => ('C3' . " " . xl('Paper Size')),
2556 'C4' => ('C4' . " " . xl('Paper Size')),
2557 'C5' => ('C5' . " " . xl('Paper Size')),
2558 'C6' => ('C6' . " " . xl('Paper Size')),
2559 'C7' => ('C7' . " " . xl('Paper Size')),
2560 'C8' => ('C8' . " " . xl('Paper Size')),
2561 'C9' => ('C9' . " " . xl('Paper Size')),
2562 'C10' => ('C10' . " " . xl('Paper Size')),
2563 'RA0' => ('RA0' . " " . xl('Paper Size')),
2564 'RA1' => ('RA1' . " " . xl('Paper Size')),
2565 'RA2' => ('RA2' . " " . xl('Paper Size')),
2566 'RA3' => ('RA3' . " " . xl('Paper Size')),
2567 'RA4' => ('RA4' . " " . xl('Paper Size')),
2568 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2569 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2570 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2571 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2572 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2574 'LETTER',
2575 xl('Choose Paper Size')
2577 'pdf_left_margin' => array(
2578 xl('Left Margin (mm)'),
2579 'num',
2580 '5',
2581 xl('Left Margin (mm)')
2583 'pdf_right_margin' => array(
2584 xl('Right Margin (mm)'),
2585 'num',
2586 '5',
2587 xl('Right Margin (mm)')
2589 'pdf_top_margin' => array(
2590 xl('Top Margin (mm)'),
2591 'num',
2592 '5',
2593 xl('Top Margin (mm)')
2595 'pdf_bottom_margin' => array(
2596 xl('Bottom Margin (px)'),
2597 'num',
2598 '8',
2599 xl('Bottom Margin (px)')
2601 'pdf_output' => array (
2602 xl('Output Type'),
2603 array(
2604 'D' => xl('Download'),
2605 'I' => xl('Inline')
2607 'D', //defaut
2608 xl("Choose Download or Display Inline"),
2611 'chart_label_type' => array(
2612 xl('Patient Label Type'),
2613 array(
2614 '0' => xl('None'),
2615 '1' => '5160',
2616 '2' => '5161',
2617 '3' => '5162'
2619 '1', // default
2620 xl('Avery Label type for printing patient labels from popups in left nav screen'),
2623 'barcode_label_type' => array(
2624 xl('Barcode Label Type'),
2625 array(
2626 '0' => xl('None'),
2627 '1' => 'std25',
2628 '2' => 'int25',
2629 '3' => 'ean8',
2630 '4' => 'ean13',
2631 '5' => 'upc',
2632 '6' => 'code11',
2633 '7' => 'code39',
2634 '8' => 'code93',
2635 '9' => 'code128',
2636 '10' => 'codabar',
2637 '11' => 'msi',
2638 '12' => 'datamatrix'
2640 '9', // default = None
2641 xl('Barcode type for printing barcode labels from popups in left nav screen.')
2644 'addr_label_type' => array(
2645 xl('Print Patient Address Label'),
2646 'bool', // data type
2647 '1', // default = false
2648 xl('Select to print patient address labels from popups in left nav screen.')