2 // Copyright (C) 2010-2015 Rod Roark <rod@sunsetsystems.com>
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 // Norwegian // xl('Norwegian')
50 // Persian // xl('Persian')
51 // Polish // xl('Polish')
52 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
53 // Portuguese (European) // xl('Portuguese (European)')
54 // Romanian // xl('Romanian')
55 // Russian // xl('Russian')
56 // Serbian // xl('Serbian')
57 // Sinhala // xl('Sinhala')
58 // Slovak // xl('Slovak')
59 // Spanish (Latin American) // xl('Spanish (Latin American)')
60 // Spanish (Spain) // xl('Spanish (Spain)')
61 // Swedish // xl('Swedish')
62 // Turkish // xl('Turkish')
63 // Ukrainian // xl('Ukrainian')
64 // Vietnamese // xl('Vietnamese')
66 // OS-dependent stuff.
67 if (stristr(PHP_OS
, 'WIN')) {
69 $mysql_bin_dir = 'C:/xampp/mysql/bin';
70 $perl_bin_dir = 'C:/xampp/perl/bin';
71 $temporary_files_dir = 'C:/windows/temp';
72 $backup_log_dir = 'C:/windows/temp';
76 $mysql_bin_dir = '/usr/bin';
77 $perl_bin_dir = '/usr/bin';
78 $temporary_files_dir = '/tmp';
79 $backup_log_dir = '/tmp';
82 // Language constant declarations:
88 // xl('Notifications')
89 // xl('Miscellaneous')
91 // List of user specific tabs and globals
92 $USER_SPECIFIC_TABS = array('Appearance',
96 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
99 'gbl_pt_list_page_size',
100 'gbl_pt_list_new_window',
102 'units_of_measurement',
104 'date_display_format',
105 'time_display_format',
106 'calendar_view_type',
110 'ptkr_pt_list_new_window',
111 'erx_import_status_message');
113 $GLOBALS_METADATA = array(
117 'Appearance' => array(
119 'default_top_pane' => array(
120 xl('Main Top Pane Screen'), // descriptive name
122 'main_info.php' => xl('Calendar Screen'),
123 '../new/new.php' => xl('Patient Search/Add Screen'),
124 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
126 'main_info.php', // default = calendar
127 xl('Type of screen layout')
130 'concurrent_layout' => array(
131 xl('Layout Style'), // descriptive name
133 '0' => xl('Old style layout with no left menu'),
134 '1' => xl('Navigation menu consists of pairs of radio buttons'),
135 '2' => xl('Navigation menu is a tree view'),
136 '3' => xl('Navigation uses a sliding menu'),
138 '3', // default = tree menu
139 xl('Type of screen layout')
142 'default_encounter_view' => array(
143 xl('Default Encounter View'), // descriptive name
145 '0' => xl('Clinical View'),
146 '1' => xl('Billing View'),
148 '0', // default = tree menu
149 xl('Choose your default encounter view')
152 'css_header' => array(
156 xl('Pick a CSS theme.')
159 'gbl_nav_area_width' => array(
160 xl('Navigation Area Width'),
163 xl('Width in pixels of the left navigation frame.')
166 'openemr_name' => array(
167 xl('Application Title'),
170 xl('Application name for login page and main window title.')
173 'full_new_patient_form' => array(
174 xl('New Patient Form'),
176 '0' => xl('Old-style static form without search or duplication check'),
177 '1' => xl('All demographics fields, with search and duplication check'),
178 '2' => xl('Mandatory or specified fields only, search and dup check'),
179 '3' => xl('Mandatory or specified fields only, dup check, no search'),
182 xl('Style of form used for adding new patients')
185 'patient_search_results_style' => array(
186 xl('Patient Search Results Style'),
188 '0' => xl('Encounter statistics'),
189 '1' => xl('Mandatory and specified fields'),
192 xl('Type of columns displayed for patient search results')
195 'gbl_tall_nav_area' => array(
196 xl('Tall Navigation Area'),
198 '0', // default = false
199 xl('Navigation area uses full height of frameset')
202 'gbl_nav_visit_forms' => array(
203 xl('Navigation Area Visit Forms'),
205 '1', // default = true
206 xl('Navigation area includes encounter forms')
209 'simplified_demographics' => array(
210 xl('Simplified Demographics'),
212 '0', // default = false
213 xl('Omit insurance and some other things from the demographics form')
216 'simplified_prescriptions' => array(
217 xl('Simplified Prescriptions'),
219 '0', // default = false
220 xl('Omit form, route and interval which then become part of dosage')
223 'simplified_copay' => array(
224 xl('Simplified Co-Pay'),
226 '0', // default = false
227 xl('Omit method of payment from the co-pay panel')
230 'use_charges_panel' => array(
231 xl('Use Charges Panel'),
233 '0', // default = false
234 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
237 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
238 'enable_fees_in_left_menu' => array(
239 xl('Enable Fees In Left Menu'),
241 '1', // default = true
242 xl('Enable Fees In Left Menu')
244 // EDI history 2012-09-13
245 'enable_edihistory_in_left_menu' => array(
246 xl('Enable EDI History In Left Menu'),
248 '1', // default = true
249 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
252 'online_support_link' => array(
253 xl('Online Support Link'),
255 'http://open-emr.org/',
256 xl('URL for OpenEMR support.')
259 'drop_bottom' => array(
260 xl('Remove Bottom Pane'),
262 '0', // default = false
263 xl('Removes the bottom pane by default on start up.')
266 'encounter_page_size' => array(
267 xl('Encounter Page Size'),
269 '0' => xl('Show All'),
278 xl('Number of encounters to display per page.')
281 'gbl_pt_list_page_size' => array(
282 xl('Patient List Page Size'),
290 xl('Number of patients to display per page in the patient list.')
293 'gbl_pt_list_new_window' => array(
294 xl('Patient List New Window'),
296 '0', // default = false
297 xl('Default state of New Window checkbox in the patient list.')
300 'gbl_vitals_options' => array(
301 xl('Vitals Form Options'),
303 '0' => xl('Standard'),
304 '1' => xl('Omit circumferences'),
307 xl('Special treatment for the Vitals form')
316 'language_default' => array(
317 xl('Default Language'),
319 'English (Standard)', // default = english
320 xl('Default language if no other is allowed or chosen.')
323 'language_menu_showall' => array(
324 xl('All Languages Allowed'),
326 '1', // default = true
327 xl('Allow all available languages as choices on menu at login.')
330 'language_menu_other' => array(
331 xl('Allowed Languages'),
332 'm_lang', // data type
333 '', // default = none
334 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
337 'allow_debug_language' => array(
338 xl('Allow Debugging Language'),
340 '1', // default = true during development and false for production releases
341 xl('This will allow selection of the debugging (\'dummy\') language.')
344 'translate_layout' => array(
345 xl('Translate Layouts'),
347 '1', // default = true
348 xl('Is text from form layouts to be translated?')
351 'translate_lists' => array(
352 xl('Translate Lists'),
354 '1', // default = true
355 xl('Is text from lists to be translated?')
358 'translate_gacl_groups' => array(
359 xl('Translate Access Control Groups'),
361 '1', // default = true
362 xl('Are access control group names to be translated?')
365 'translate_form_titles' => array(
366 xl('Translate Patient Note Titles'),
368 '1', // default = true
369 xl('Are patient note titles to be translated?')
372 'translate_document_categories' => array(
373 xl('Translate Document Categories'),
375 '1', // default = true
376 xl('Are document category names to be translated?')
379 'translate_appt_categories' => array(
380 xl('Translate Appointment Categories'),
382 '1', // default = true
383 xl('Are appointment category names to be translated?')
386 'units_of_measurement' => array(
387 xl('Units for Visit Forms'),
389 '1' => xl('Show both US and metric (main unit is US)'),
390 '2' => xl('Show both US and metric (main unit is metric)'),
391 '3' => xl('Show US only'),
392 '4' => xl('Show metric only'),
394 '1', // default = Both/US
395 xl('Applies to the Vitals form and Growth Chart')
398 'us_weight_format' => array(
399 xl('Display Format for US Weights'),
401 '1'=>xl('Show pounds as decimal value'),
402 '2'=>xl('Show pounds and ounces')
405 xl('Applies to Vitals form')
408 'disable_deprecated_metrics_form' => array(
409 xl('Disable Old Metric Vitals Form'),
411 '1', // default = true
412 xl('This was the older metric-only Vitals form, now deprecated.')
415 'phone_country_code' => array(
416 xl('Telephone Country Code'),
418 '1', // default = North America
419 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
422 'date_display_format' => array(
423 xl('Date Display Format'),
425 '0' => xl('YYYY-MM-DD'),
426 '1' => xl('MM/DD/YYYY'),
427 '2' => xl('DD/MM/YYYY'),
430 xl('Format used to display most dates.')
433 'time_display_format' => array(
434 xl('Time Display Format'),
440 xl('Format used to display most times.')
443 'currency_decimals' => array(
444 xl('Currency Decimal Places'),
451 xl('Number of digits after decimal point for currency, usually 0 or 2.')
454 'currency_dec_point' => array(
455 xl('Currency Decimal Point Symbol'),
461 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
464 'currency_thousands_sep' => array(
465 xl('Currency Thousands Separator'),
473 xl('Symbol used to separate thousands for currency.')
476 'gbl_currency_symbol' => array(
477 xl('Currency Designator'),
480 xl('Code or symbol to indicate currency')
482 'age_display_format'=>array(xl('Age Display Format'),
484 '0'=>xl('Years or months'),
485 '1'=>xl('Years, months and days')
488 xl('Format for age display')
490 'age_display_limit' => array(
491 xl('Age in Years for Display Format Change'),
494 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
502 'specific_application' => array(
503 xl('Specific Application'),
506 '1' => xl('Athletic team'),
508 '3' => xl('Weight loss clinic'),
511 xl('Indicator for specialized usage')
514 'inhouse_pharmacy' => array(
515 xl('Drugs and Products'),
517 '0' => xl('Do not inventory and sell any products'),
518 '1' => xl('Inventory and sell drugs only'),
519 '2' => xl('Inventory and sell both drugs and non-drug products'),
520 '3' => xl('Products but no prescription drugs and no templates'),
523 xl('Option to support inventory and sales of products')
526 'disable_chart_tracker' => array(
527 xl('Disable Chart Tracker'),
529 '0', // default = false
530 xl('Removes the Chart Tracker feature')
533 'disable_phpmyadmin_link' => array(
534 xl('Disable phpMyAdmin'),
536 '0', // default = false
537 xl('Removes support for phpMyAdmin')
540 'disable_immunizations' => array(
541 xl('Disable Immunizations'),
543 '0', // default = false
544 xl('Removes support for immunizations')
547 'disable_prescriptions' => array(
548 xl('Disable Prescriptions'),
550 '0', // default = false
551 xl('Removes support for prescriptions')
554 'omit_employers' => array(
555 xl('Omit Employers'),
557 '0', // default = false
558 xl('Omit employer information in patient demographics')
561 'select_multi_providers' => array(
562 xl('Support Multi-Provider Events'),
564 '0', // default = false
565 xl('Support calendar events that apply to multiple providers')
568 'disable_non_default_groups' => array(
569 xl('Disable User Groups'),
571 '1', // default = true
572 xl('Normally this should be checked. Not related to access control.')
575 'ignore_pnotes_authorization' => array(
576 xl('Skip Authorization of Patient Notes'),
578 '1', // default = true
579 xl('Do not require patient notes to be authorized')
582 'support_encounter_claims' => array(
583 xl('Allow Encounter Claims'),
585 '0', // default = false
586 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
589 'advance_directives_warning' => array(
590 xl('Advance Directives Warning'),
592 '0', // default = false
593 xl('Display advance directives in the demographics page.')
596 'configuration_import_export' => array(
597 xl('Configuration Export/Import'),
599 '0', // default = false
600 xl('Support export/import of configuration data via the Backup page.')
603 'restrict_user_facility' => array(
604 xl('Restrict Users to Facilities'),
607 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
610 'set_facility_cookie' => array(
611 xl('Remember Selected Facility'),
614 xl('Set a facility cookie to remember the selected facility between logins.')
617 'receipts_by_provider' => array(
618 xl('Print Receipts by Provider'),
621 xl('Causes Receipts to Print Encounter/Primary Provider Info')
624 'discount_by_money' => array(
625 xl('Discounts as Monetary Amounts'),
627 '1', // default = true
628 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
631 'gbl_visit_referral_source' => array(
632 xl('Referral Source for Encounters'),
634 '0', // default = false
635 xl('A referral source may be specified for each visit.')
638 'gbl_mask_patient_id' => array(
639 xl('Mask for Patient IDs'),
642 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
645 'gbl_mask_invoice_number' => array(
646 xl('Mask for Invoice Numbers'),
649 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
652 'gbl_mask_product_id' => array(
653 xl('Mask for Product IDs'),
656 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
659 'force_billing_widget_open' => array(
660 xl('Force Billing Widget Open'),
662 '0', // default = false
663 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
666 'num_past_appointments_to_show' => array(
667 xl('Past Appointment Display Widget'),
669 '0', // default = false
670 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)')
673 'activate_ccr_ccd_report' => array(
674 xl('Activate CCR/CCD Reporting'),
676 '1', // default = true
677 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
680 'hide_document_encryption' => array(
681 xl('Hide Encryption/Decryption Options In Document Management'),
683 '1', // default = true
684 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
687 'use_custom_immun_list' => array(
688 xl('Use Custom Immunization List'),
690 '0', // default = true
691 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
695 xl('CMS 1500 Paper Form Format'),
697 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
698 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
701 xl('This specifies which revision of the form the billing module should generate')
704 'cms_1500_box_31_format' => array(
705 xl('CMS 1500: Box 31 Format'),
707 '0' => xl('Signature on File'),
708 '1' => xl('Firstname Lastname'),
712 xl('This specifies whether to include date in Box 31.')
716 'cms_1500_box_31_date' => array(
717 xl('CMS 1500: Date in Box 31 (Signature)'),
720 '1' => xl('Date of Service'),
724 xl('This specifies whether to include date in Box 31.')
727 'amendments' => array (
730 '1', // default = true
731 xl('Enable amendments feature')
734 'use_custom_daysheet' => array(
735 xl('Use Custom End of Day Report'),
738 '1' => xl('Print End of Day Report 1'),
739 '2' => xl('Print End of Day Report 2'),
740 '3' => xl('Print End of Day Report 3'),
742 '1', // default = Print End of Day Report 1
743 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
746 'daysheet_provider_totals' => array(
747 xl('End of Day by Provider or allow Totals Only'),
749 '0' => xl('Provider'),
750 '1' => xl('Totals Only'),
753 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
761 'esign_all' => array(
762 xl('Allows E-Sign on the entire encounter'),
764 '0', // default = false
765 xl('This will enable signing an entire encounter, rather than individual forms')
768 'lock_esign_all' => array(
769 xl('Lock e-signed encounters and their forms'),
771 '0', // default = false
772 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
775 'esign_individual' => array(
776 xl('Allows E-Signing Individual Forms'),
778 '1', // default = false
779 xl('This will enable signing individual forms separately')
782 'lock_esign_individual' => array(
783 xl('Lock an e-signed form individually'),
785 '1', // default = false
786 xl('This will disable the Edit button on any form that is e-signed')
789 'esign_lock_toggle' => array(
790 xl('Enable lock toggle'),
792 '0', // default = false
793 xl('This will give the user the option to lock (separate locking and signing)')
796 'esign_report_hide_empty_sig' => array(
797 xl('Hide Empty E-Sign Logs On Report'),
799 '1', // default = false
800 xl('This will hide empty e-sign logs on the patient report')
805 'Documents' => array(
806 'document_storage_method' => array(
807 xl('Document Storage Method'),
809 '0' => xl('Hard Disk'),
813 xl('Option to save method of document storage.')
815 'couchdb_host' => array(
816 xl('CouchDB HostName'),
821 'couchdb_user' => array(
822 xl('CouchDB UserName'),
825 xl('Username to connect to CouchDB'),
827 'couchdb_pass' => array(
828 xl('CouchDB Password'),
831 xl('Password to connect to CouchDB'),
833 'couchdb_port' => array(
839 'couchdb_dbase' => array(
840 xl('CouchDB Database'),
843 xl('CouchDB database name'),
845 'couchdb_log' => array(
846 xl('CouchDB Log Enable'),
849 xl('Enable log for document uploads/downloads to CouchDB'),
852 'patient_id_category_name' => array(
853 xl('Patient ID Category Name'),
855 'Patient ID card', // default
856 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
859 'patient_photo_category_name' => array(
860 xl('Patient Photo Category Name'),
862 'Patient Photograph', // default
863 xl('Optional category name for photo images that can be viewed from the patient summary page.')
866 'lab_results_category_name' => array(
867 xl('Lab Results Category Name'),
869 'Lab Report', // default
870 xl('Document category name for storage of electronically received lab results.')
873 'gbl_mdm_category_name' => array(
874 xl('MDM Document Category Name'),
876 'Lab Report', // default
877 xl('Document category name for storage of electronically received MDM documents.')
886 'disable_calendar' => array(
887 xl('Disable Calendar'),
890 xl('Do not display the calendar.')
893 'schedule_start' => array(
894 xl('Calendar Starting Hour'),
897 xl('Beginning hour of day for calendar events.')
900 'schedule_end' => array(
901 xl('Calendar Ending Hour'),
904 xl('Ending hour of day for calendar events.')
907 'calendar_interval' => array(
908 xl('Calendar Interval'),
918 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
921 'calendar_view_type' => array(
922 xl('Default Calendar View'),
925 'week' => xl('Week'),
926 'month' => xl('Month'),
929 xl('This sets the Default Calendar View, Default is Day.')
932 'calendar_appt_style' => array(
933 xl('Appointment Display Style'),
936 '2' => 'Last name, first name',
937 '3' => 'Last name, first name (title)',
938 '4' => 'Last name, first name (title: description)',
941 xl('This determines how appointments display on the calendar.')
944 'docs_see_entire_calendar' => array(
945 xl('Providers See Entire Calendar'),
948 xl('Check this if you want providers to see all appointments by default and not just their own.')
951 'auto_create_new_encounters' => array(
952 xl('Auto-Create New Encounters'),
955 xl('Automatically create a new encounter when an appointment check in status is selected.')
958 'event_color' => array(
959 xl('Appointment/Event Color'),
961 '1' => 'Category Color Schema',
962 '2' => 'Facility Color Schema',
965 xl('This determines which color schema used for appointment')
968 'disable_pat_trkr' => array(
969 xl('Disable Patient Flow Board'),
972 xl('Do not display the patient flow board.')
975 'ptkr_pt_list_new_window' => array(
976 xl('Open Demographics in New Window from Patient Flow Board'),
978 '0', // default = false
979 xl('When Checked, Demographics Will Open in New Window from Patient Flow Board.')
982 'pat_trkr_timer' => array(
983 xl('Patient Flow Board Timer Interval'),
985 '0' => 'No automatic refresh',
994 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
997 'checkout_roll_off' => array(
998 xl('Number of Minutes to display completed checkouts'),
1001 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1004 'drug_screen' => array(
1005 xl('Enable Random Drug Testing'),
1006 'bool', // data type
1008 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1011 'drug_testing_percentage' => array(
1012 xl('Percentage of Patients to Drug Test'),
1015 xl('Percentage of Patients to select for Random Drug Testing.')
1018 'maximum_drug_test_yearly' => array(
1019 xl('Maximum number of times a Patient can be tested in a year'),
1022 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1029 'Security' => array(
1032 xl('Idle Session Timeout Seconds'),
1035 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1038 'secure_password' => array(
1039 xl('Require Strong Passwords'),
1040 'bool', // data type
1042 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1045 'password_history' => array(
1046 xl('Require Unique Passwords'),
1047 'bool', // data type
1049 xl('Means none of last three passwords are allowed when changing a password.')
1051 'password_compatibility' => array(
1052 xl('Permit unsalted passwords'),
1053 'bool', // data type
1055 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')
1058 'password_expiration_days' => array(
1059 xl('Default Password Expiration Days'),
1062 xl('Default password expiration period in days. 0 means this feature is disabled.')
1065 'password_grace_time' => array(
1066 xl('Password Expiration Grace Period'),
1069 xl('Period in days where a user may login with an expired password.')
1072 'is_client_ssl_enabled' => array(
1073 xl('Enable Client SSL'),
1074 'bool', // data type
1076 xl('Enable client SSL certificate authentication.')
1079 'certificate_authority_crt' => array(
1080 xl('Path to CA Certificate File'),
1081 'text', // data type
1083 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1086 'certificate_authority_key' => array(
1087 xl('Path to CA Key File'),
1088 'text', // data type
1090 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1093 'client_certificate_valid_in_days' => array(
1094 xl('Client Certificate Expiration Days'),
1097 xl('Number of days that the client certificate is valid.')
1100 'Emergency_Login_email_id' => array(
1101 xl('Emergency Login Email Address'),
1102 'text', // data type
1104 xl('Email address, if any, to receive emergency login user activation messages.')
1109 // Notifications Tab
1111 'Notifications' => array(
1113 'patient_reminder_sender_name' => array(
1114 xl('Patient Reminder Sender Name'),
1115 'text', // data type
1117 xl('Name of the sender for patient reminders.')
1120 'patient_reminder_sender_email' => array(
1121 xl('Patient Reminder Sender Email'),
1122 'text', // data type
1124 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.')
1127 'practice_return_email_path' => array(
1128 xl('Notification Email Address'),
1129 'text', // data type
1131 xl('Email address, if any, to receive administrative notifications.')
1134 'EMAIL_METHOD' => array(
1135 xl('Email Transport Method'),
1137 'PHPMAIL' => 'PHPMAIL',
1138 'SENDMAIL' => 'SENDMAIL',
1142 xl('Method for sending outgoing email.')
1145 'SMTP_HOST' => array(
1146 xl('SMTP Server Hostname'),
1147 'text', // data type
1148 'localhost', // default
1149 xl('If SMTP is used, the server`s hostname or IP address.')
1152 'SMTP_PORT' => array(
1153 xl('SMTP Server Port Number'),
1156 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1159 'SMTP_USER' => array(
1160 xl('SMTP User for Authentication'),
1161 'text', // data type
1163 xl('Must be empty if SMTP authentication is not used.')
1166 'SMTP_PASS' => array(
1167 xl('SMTP Password for Authentication'),
1168 'text', // data type
1170 xl('Must be empty if SMTP authentication is not used.')
1173 'EMAIL_NOTIFICATION_HOUR' => array(
1174 xl('Email Notification Hours'),
1177 xl('Number of hours in advance to send email notifications.')
1180 'SMS_NOTIFICATION_HOUR' => array(
1181 xl('SMS Notification Hours'),
1184 xl('Number of hours in advance to send SMS notifications.')
1187 'SMS_GATEWAY_USENAME' => array(
1188 xl('SMS Gateway Username'),
1189 'text', // data type
1191 xl('Username for SMS Gateway.')
1194 'SMS_GATEWAY_PASSWORD' => array(
1195 xl('SMS Gateway Password'),
1196 'text', // data type
1198 xl('Password for SMS Gateway.')
1201 'SMS_GATEWAY_APIKEY' => array(
1202 xl('SMS Gateway API Key'),
1203 'text', // data type
1205 xl('API key for SMS Gateway.')
1208 'phone_notification_hour' => array(
1209 xl('Phone Notification Hour'),
1212 xl('Number of hours in advance to send Phone notification.')
1215 'phone_gateway_username' => array(
1216 xl('Phone Gateway Username'),
1217 'text', // data type
1219 xl('Username for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
1222 'phone_gateway_password' => array(
1223 xl('Phone Gateway Password'),
1224 'text', // data type
1226 xl('Password for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
1229 'phone_gateway_url' => array(
1230 xl('Phone Gateway URL'),
1231 'text', // data type
1233 xl('URL for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
1238 // CDR (Clinical Decision Rules)
1242 'enable_cdr' => array(
1243 xl('Enable Clinical Decisions Rules (CDR)'),
1244 'bool', // data type
1246 xl('Enable Clinical Decisions Rules (CDR)')
1249 'enable_cdr_crw' => array(
1250 xl('Enable Clinical Reminder Widget'),
1251 'bool', // data type
1253 xl('Enable Clinical Reminder Widget')
1256 'enable_cdr_crp' => array(
1257 xl('Enable Clinical Reminder Popup'),
1258 'bool', // data type
1260 xl('Enable Clinical Reminder Popup')
1263 'enable_cdr_prw' => array(
1264 xl('Enable Patient Reminder Widget'),
1265 'bool', // data type
1267 xl('Enable Patient Reminder Widget')
1270 'enable_cqm' => array(
1271 xl('Enable CQM Reporting'),
1272 'bool', // data type
1274 xl('Enable Clinical Quality Measure (CQM) Reporting')
1277 'pqri_registry_name' => array(
1278 xl('PQRI Registry Name'),
1279 'text', // data type
1280 'Model Registry', // default
1281 xl('PQRI Registry Name')
1284 'pqri_registry_id' => array(
1285 xl('PQRI Registry ID'),
1286 'text', // data type
1287 '125789123', // default
1288 xl('PQRI Registry ID')
1291 'enable_amc' => array(
1292 xl('Enable AMC Reporting'),
1293 'bool', // data type
1295 xl('Enable Automated Measure Calculations (AMC) Reporting')
1298 'enable_amc_prompting' => array(
1299 xl('Enable AMC Prompting'),
1300 'bool', // data type
1302 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1305 'enable_amc_tracking' => array(
1306 xl('Enable AMC Tracking'),
1307 'bool', // data type
1309 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
1312 'cdr_report_nice' => array(
1313 xl('CDR Reports Processing Priority'),
1315 '' => xl('Default Priority'),
1316 '5' => xl('Moderate Priority'),
1317 '10' => xl('Moderate/Low Priority'),
1318 '15' => xl('Low Priority'),
1319 '20' => xl('Lowest Priority')
1322 xl('Set processing priority for CDR engine based reports.')
1325 'pat_rem_clin_nice' => array(
1326 xl('Patient Reminder Creation Processing Priority'),
1328 '' => xl('Default Priority'),
1329 '5' => xl('Moderate Priority'),
1330 '10' => xl('Moderate/Low Priority'),
1331 '15' => xl('Low Priority'),
1332 '20' => xl('Lowest Priority')
1335 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
1338 'report_itemizing_standard' => array(
1339 xl('Enable Standard Report Itemization'),
1340 'bool', // data type
1342 xl('Enable Itemization of Standard Clinical Rules Reports')
1345 'report_itemizing_cqm' => array(
1346 xl('Enable CQM Report Itemization'),
1347 'bool', // data type
1349 xl('Enable Itemization of CQM Reports')
1352 'report_itemizing_amc' => array(
1353 xl('Enable AMC Report Itemization'),
1354 'bool', // data type
1356 xl('Enable Itemization of AMC Reports')
1365 'enable_auditlog' => array(
1366 xl('Enable Audit Logging'),
1367 'bool', // data type
1369 xl('Enable Audit Logging')
1372 'audit_events_patient-record' => array(
1373 xl('Audit Logging Patient Record'),
1374 'bool', // data type
1376 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1379 'audit_events_scheduling' => array(
1380 xl('Audit Logging Scheduling'),
1381 'bool', // data type
1383 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1386 'audit_events_order' => array(
1387 xl('Audit Logging Order'),
1388 'bool', // data type
1390 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1393 'audit_events_security-administration' => array(
1394 xl('Audit Logging Security Administration'),
1395 'bool', // data type
1397 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1400 'audit_events_backup' => array(
1401 xl('Audit Logging Backups'),
1402 'bool', // data type
1404 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1407 'audit_events_other' => array(
1408 xl('Audit Logging Miscellaneous'),
1409 'bool', // data type
1411 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1414 'audit_events_query' => array(
1415 xl('Audit Logging SELECT Query'),
1416 'bool', // data type
1418 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1421 'audit_events_cdr' => array(
1422 xl('Audit CDR Engine Queries'),
1423 'bool', // data type
1425 xl('Enable logging of CDR Engine Queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1428 'enable_atna_audit' => array(
1429 xl('Enable ATNA Auditing'),
1430 'bool', // data type
1432 xl('Enable Audit Trail and Node Authentication (ATNA).')
1435 'atna_audit_host' => array(
1436 xl('ATNA audit host'),
1437 'text', // data type
1439 xl('The hostname of the ATNA audit repository machine.')
1442 'atna_audit_port' => array(
1443 xl('ATNA audit port'),
1444 'text', // data type
1446 xl('Listening port of the RFC 5425 TLS syslog server.')
1449 'atna_audit_localcert' => array(
1450 xl('ATNA audit local certificate'),
1451 'text', // data type
1453 xl('Certificate to send to RFC 5425 TLS syslog server.')
1456 'atna_audit_cacert' => array(
1457 xl('ATNA audit CA certificate'),
1458 'text', // data type
1460 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
1463 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
1464 'enable_auditlog_encryption' => array(
1465 xl('Enable Audit Log Encryption'),
1466 'bool', // data type
1468 xl('Enable Audit Log Encryption')
1471 'billing_log_option' => array(
1472 xl('Billing Log Option'),
1474 '1' => xl('Billing Log Append'),
1475 '2' => xl('Billing Log Overwrite')
1478 xl('Billing log setting to append or overwrite the log file.')
1483 // Miscellaneous Tab
1485 'Miscellaneous' => array(
1487 'mysql_bin_dir' => array(
1488 xl('Path to MySQL Binaries'),
1489 'text', // data type
1490 $mysql_bin_dir, // default
1491 xl('Full path to directory containing MySQL executables.')
1494 'perl_bin_dir' => array(
1495 xl('Path to Perl Binaries'),
1496 'text', // data type
1497 $perl_bin_dir, // default
1498 xl('Full path to directory containing Perl executables.')
1501 'temporary_files_dir' => array(
1502 xl('Path to Temporary Files'),
1503 'text', // data type
1504 $temporary_files_dir, // default
1505 xl('Full path to directory used for temporary files.')
1508 'backup_log_dir' => array(
1509 xl('Path for Event Log Backup'),
1510 'text', // data type
1511 $backup_log_dir, // default
1512 xl('Full path to directory for event log backup.')
1515 'state_data_type' => array(
1516 xl('State Data Type'),
1518 '2' => xl('Text field'),
1519 '1' => xl('Single-selection list'),
1520 '26' => xl('Single-selection list with ability to add to the list'),
1523 xl('Field type to use for employer or subscriber state in demographics.')
1526 'state_list' => array(
1528 'text', // data type
1530 xl('List used by above State Data Type option.')
1533 'state_custom_addlist_widget' => array(
1534 xl('State List Widget Custom Fields'),
1535 'bool', // data type
1537 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
1540 'country_data_type' => array(
1541 xl('Country Data Type'),
1543 '2' => xl('Text field'),
1544 '1' => xl('Single-selection list'),
1545 '26' => xl('Single-selection list with ability to add to the list'),
1548 xl('Field type to use for employer or subscriber country in demographics.')
1551 'country_list' => array(
1553 'text', // data type
1554 'country', // default
1555 xl('List used by above Country Data Type option.')
1558 'print_command' => array(
1559 xl('Print Command'),
1560 'text', // data type
1561 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
1562 xl('Shell command for printing from the server.')
1565 'default_chief_complaint' => array(
1566 xl('Default Reason for Visit'),
1567 'text', // data type
1569 xl('You may put text here as the default complaint in the New Patient Encounter form.')
1572 'default_new_encounter_form' => array(
1573 xl('Default Encounter Form ID'),
1574 'text', // data type
1576 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
1579 'MedicareReferrerIsRenderer' => array(
1580 xl('Medicare Referrer Is Renderer'),
1581 'bool', // data type
1582 '0', // default = true
1583 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
1586 'post_to_date_benchmark' => array(
1587 xl('Financial Close Date (yyyy-mm-dd)'),
1588 'text', // data type
1589 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
1590 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
1593 'enable_hylafax' => array(
1594 xl('Enable Hylafax Support'),
1595 'bool', // data type
1597 xl('Enable Hylafax Support')
1600 'hylafax_server' => array(
1601 xl('Hylafax Server'),
1602 'text', // data type
1603 'localhost', // default
1604 xl('Hylafax server hostname.')
1607 'hylafax_basedir' => array(
1608 xl('Hylafax Directory'),
1609 'text', // data type
1610 '/var/spool/fax', // default
1611 xl('Location where Hylafax stores faxes.')
1614 'hylafax_enscript' => array(
1615 xl('Hylafax Enscript Command'),
1616 'text', // data type
1617 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
1618 xl('Enscript command used by Hylafax.')
1621 'enable_scanner' => array(
1622 xl('Enable Scanner Support'),
1623 'bool', // data type
1625 xl('Enable Scanner Support')
1628 'scanner_output_directory' => array(
1629 xl('Scanner Directory'),
1630 'text', // data type
1631 '/mnt/scan_docs', // default
1632 xl('Location where scans are stored.')
1641 'portal_onsite_enable' => array(
1642 xl('Enable Onsite Patient Portal'),
1643 'bool', // data type
1645 xl('Enable Onsite Patient Portal.')
1648 'portal_onsite_address' => array(
1649 xl('Onsite Patient Portal Site Address'),
1650 'text', // data type
1651 'https://your_web_site.com/openemr/patients',
1652 xl('Website link for the Onsite Patient Portal.')
1655 'portal_offsite_enable' => array(
1656 xl('Enable Offsite Patient Portal'),
1657 'bool', // data type
1659 xl('Enable Offsite Patient Portal.')
1662 'portal_offsite_providerid' => array(
1663 xl('Offsite Patient Portal Provider ID'),
1664 'text', // data type
1666 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
1669 'portal_offsite_username' => array(
1670 xl('Offsite Patient Portal Username'),
1671 'text', // data type
1673 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
1676 'portal_offsite_password' => array(
1677 xl('Offsite Patient Portal Password'),
1680 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
1683 'portal_offsite_address' => array(
1684 xl('Offsite Patient Portal Site Address'),
1685 'text', // data type
1686 'https://ssh.mydocsportal.com/provider.php',
1687 xl('Offsite Https link for the Patient Portal.')
1690 'portal_offsite_address_patient_link' => array(
1691 xl('Offsite Patient Portal Site Address (Patient Link)'),
1692 'text', // data type
1693 'https://ssh.mydocsportal.com',
1694 xl('Offsite Https link for the Patient Portal.(Patient Link)')
1697 // Currently the "CMS Portal" supports WordPress. Other Content Management
1698 // Systems may be supported in the future.
1700 'gbl_portal_cms_enable' => array(
1701 xl('Enable CMS Portal'),
1702 'bool', // data type
1704 xl('Enable support for the open source WordPress Portal by Sunset Systems')
1707 'gbl_portal_cms_address' => array(
1708 xl('CMS Portal Site Address'),
1709 'text', // data type
1710 'https://your_cms_site.com/',
1711 xl('URL for the WordPress site that supports the portal')
1714 'gbl_portal_cms_username' => array(
1715 xl('CMS Portal Username'),
1716 'text', // data type
1718 xl('Login name of WordPress user for portal access')
1721 'gbl_portal_cms_password' => array(
1722 xl('CMS Portal Password'),
1723 'text', // data type
1725 xl('Password for the above user')
1732 'Connectors' => array(
1734 'lab_exchange_enable' => array(
1735 xl('Enable Lab Exchange'),
1736 'bool', // data type
1738 xl('Enable the Medical Information Integration, LLC Lab Exchange Service.')
1741 'lab_exchange_siteid' => array(
1742 xl('Lab Exchange Site ID'),
1743 'text', // data type
1745 xl('Site ID for the Medical Information Integration, LLC Lab Exchange Service.')
1748 'lab_exchange_token' => array(
1749 xl('Lab Exchange Token ID'),
1750 'text', // data type
1752 xl('Token ID for the Medical Information Integration, LLC Lab Exchange Service.')
1755 'lab_exchange_endpoint' => array(
1756 xl('Lab Exchange Site Address'),
1757 'text', // data type
1758 'https://len.mi-squared.com:29443/len/api',
1759 xl('Contact Medical Information Integration, LLC at http://mi-squared.com for Lab Exchange Service.')
1762 'erx_enable' => array(
1763 xl('Enable NewCrop eRx Service'),
1766 xl('Enable NewCrop eRx Service.') +
' ' +
1767 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.')
1770 'erx_newcrop_path' => array(
1771 xl('NewCrop eRx Site Address'),
1773 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
1774 xl('URL for NewCrop eRx Site Address.')
1777 'erx_newcrop_path_soap' => array(
1778 xl('NewCrop eRx Web Service Address'),
1780 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
1781 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
1784 'erx_soap_ttl_allergies' => array(
1785 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
1788 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
1791 'erx_soap_ttl_medications' => array(
1792 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
1795 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
1798 'erx_account_partner_name' => array(
1799 xl('NewCrop eRx Partner Name'),
1802 xl('Partner Name issued for NewCrop eRx service.')
1805 'erx_account_name' => array(
1806 xl('NewCrop eRx Name'),
1809 xl('Account Name issued for NewCrop eRx service.')
1812 'erx_account_password' => array(
1813 xl('NewCrop eRx Password'),
1816 xl('Account Password issued for NewCrop eRx service.')
1819 'erx_account_id' => array(
1820 xl('NewCrop eRx Account Id'),
1823 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
1826 'erx_upload_active' => array(
1827 xl('Only upload active prescriptions'),
1830 xl('Only upload active prescriptions to NewCrop eRx.')
1833 'erx_import_status_message' => array(
1834 xl('Enable NewCrop eRx import status message'),
1837 xl('Enable import status message after visiting NewCrop eRx.')
1840 'erx_medication_display' => array(
1841 xl('Do not display NewCrop eRx Medications uploaded'),
1844 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
1847 'erx_allergy_display' => array(
1848 xl('Do not display NewCrop eRx Allergy uploaded'),
1851 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
1854 'erx_default_patient_country' => array(
1855 xl('NewCrop eRx Default Patient Country'),
1859 'CA' => xl('Canada'),
1860 'MX' => xl('Mexico'),
1863 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
1866 'erx_debug_setting' => array(
1867 xl('NewCrop eRx Debug Setting'),
1870 1 => xl('Request Only'),
1871 2 => xl('Response Only'),
1872 3 => xl('Request & Response'),
1875 xl('Log all NewCrop eRx Requests and / or Responses.'),
1878 'phimail_enable' => array(
1879 xl('Enable phiMail Direct Messaging Service'),
1880 'bool', // data type
1882 xl('Enable phiMail Direct Messaging Service')
1885 'phimail_server_address' => array(
1886 xl('phiMail Server Address'),
1887 'text', // data type
1888 'https://phimail.example.com:32541',
1889 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
1892 'phimail_username' => array(
1893 xl('phiMail Username'),
1894 'text', // data type
1896 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
1899 'phimail_password' => array(
1900 xl('phiMail Password'),
1901 'pass', // data type
1903 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
1906 'phimail_notify' => array(
1907 xl('phiMail notification user'),
1908 'text', // data type
1910 xl('This user will receive notification of new incoming Direct messages')
1913 'phimail_interval' => array(
1914 xl('phiMail Message Check Interval (minutes)'),
1917 xl('Interval between message checks (set to zero for manual checks only)')
1920 'phimail_ccd_enable' => array(
1921 xl('phiMail Allow CCD Send'),
1922 'bool', // data type
1924 xl('phiMail Allow CCD Send')
1927 'phimail_ccr_enable' => array(
1928 xl('phiMail Allow CCR Send'),
1929 'bool', // data type
1931 xl('phiMail Allow CCR Send')
1936 'rx_enable_DEA' => array(
1937 xl('Rx Enable DEA #'),
1938 'bool', // data type
1940 xl('Rx Enable DEA #')
1942 'rx_show_DEA' => array(
1943 xl('Rx Show DEA #'),
1944 'bool', // data type
1948 'rx_enable_NPI' => array(
1949 xl('Rx Enable NPI'),
1950 'bool', // data type
1954 'rx_show_NPI' => array(
1956 'bool', // data type
1960 'rx_enable_SLN' => array(
1961 xl('Rx Enable State Lic. #'),
1962 'bool', // data type
1964 xl('Rx Enable State Lic. #')
1966 'rx_show_SLN' => array(
1967 xl('Rx Show State Lic. #'),
1968 'bool', // data type
1970 xl('Rx Show State Lic. #')
1972 'rx_paper_size' => array(
1973 xl('Rx Paper Size'), // descriptive name
1975 'LETTER' => xl('Letter Paper Size'),
1976 'LEGAL' => xl('Legal Paper Size'),
1977 'FOLIO' => xl('Folio Paper Size'),
1978 'EXECUTIVE' => xl('Executive Paper Size'),
1979 '4A0' => ('4A0' . " " . xl('Paper Size')),
1980 '2A0' => ('2A0' . " " . xl('Paper Size')),
1981 'A0' => ('A0' . " " . xl('Paper Size')),
1982 'A1' => ('A1' . " " . xl('Paper Size')),
1983 'A2' => ('A2' . " " . xl('Paper Size')),
1984 'A3' => ('A3' . " " . xl('Paper Size')),
1985 'A4' => ('A4' . " " . xl('Paper Size')),
1986 'A5' => ('A5' . " " . xl('Paper Size')),
1987 'A6' => ('A6' . " " . xl('Paper Size')),
1988 'A7' => ('A7' . " " . xl('Paper Size')),
1989 'A8' => ('A8' . " " . xl('Paper Size')),
1990 'A9' => ('A9' . " " . xl('Paper Size')),
1991 'A10' => ('A10' . " " . xl('Paper Size')),
1992 'B0' => ('B0' . " " . xl('Paper Size')),
1993 'B1' => ('B1' . " " . xl('Paper Size')),
1994 'B2' => ('B2' . " " . xl('Paper Size')),
1995 'B3' => ('B3' . " " . xl('Paper Size')),
1996 'B4' => ('B4' . " " . xl('Paper Size')),
1997 'B5' => ('B5' . " " . xl('Paper Size')),
1998 'B6' => ('B6' . " " . xl('Paper Size')),
1999 'B7' => ('B7' . " " . xl('Paper Size')),
2000 'B8' => ('B8' . " " . xl('Paper Size')),
2001 'B9' => ('B9' . " " . xl('Paper Size')),
2002 'B10' => ('B10' . " " . xl('Paper Size')),
2003 'C0' => ('C0' . " " . xl('Paper Size')),
2004 'C1' => ('C1' . " " . xl('Paper Size')),
2005 'C2' => ('C2' . " " . xl('Paper Size')),
2006 'C3' => ('C3' . " " . xl('Paper Size')),
2007 'C4' => ('C4' . " " . xl('Paper Size')),
2008 'C5' => ('C5' . " " . xl('Paper Size')),
2009 'C6' => ('C6' . " " . xl('Paper Size')),
2010 'C7' => ('C7' . " " . xl('Paper Size')),
2011 'C8' => ('C8' . " " . xl('Paper Size')),
2012 'C9' => ('C9' . " " . xl('Paper Size')),
2013 'C10' => ('C10' . " " . xl('Paper Size')),
2014 'RA0' => ('RA0' . " " . xl('Paper Size')),
2015 'RA1' => ('RA1' . " " . xl('Paper Size')),
2016 'RA2' => ('RA2' . " " . xl('Paper Size')),
2017 'RA3' => ('RA3' . " " . xl('Paper Size')),
2018 'RA4' => ('RA4' . " " . xl('Paper Size')),
2019 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2020 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2021 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2022 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2023 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2025 'LETTER', // default = tree menu
2028 'rx_left_margin' => array(
2029 xl('Rx Left Margin (px)'),
2032 xl('Rx Left Margin (px)')
2034 'rx_right_margin' => array(
2035 xl('Rx Right Margin (px)'),
2038 xl('Rx Right Margin (px)')
2040 'rx_top_margin' => array(
2041 xl('Rx Top Margin (px)'),
2044 xl('Rx Top Margin (px)')
2046 'rx_bottom_margin' => array(
2047 xl('Rx Bottom Margin (px)'),
2050 xl('Rx Bottom Margin (px)')
2055 'pdf_layout' => array (
2058 'P' => xl('Portrait'),
2059 'L' => xl('Landscape')
2062 xl("Choose Layout Direction"),
2064 'pdf_language' => array (
2068 'af' => xl('Afrikaans'),
2070 'sq' => xl('Albanian'),
2071 'am' => xl('Amharic'),
2072 'ar' => xl('Arabic'),
2073 'an' => xl('Aragonese'),
2074 'hy' => xl('Armenian'),
2075 'as' => xl('Assamese'),
2076 'av' => xl('Avaric'),
2077 'ae' => xl('Avestan'),
2078 'ay' => xl('Aymara'),
2079 'az' => xl('Azerbaijani'),
2080 'bm' => xl('Bambara'),
2081 'ba' => xl('Bashkir'),
2082 'eu' => xl('Basque'),
2083 'be' => xl('Belarusian'),
2084 'bn' => xl('Bengali- Bangla'),
2085 'bh' => xl('Bihari'),
2086 'bi' => xl('Bislama'),
2087 'bs' => xl('Bosnian'),
2088 'br' => xl('Breton'),
2089 'bg' => xl('Bulgarian'),
2090 'my' => xl('Burmese'),
2091 'ca' => xl('Catalan- Valencian'),
2092 'ch' => xl('Chamorro'),
2093 'ce' => xl('Chechen'),
2094 'ny' => xl('Chichewa- Chewa- Nyanja'),
2095 'zh' => xl('Chinese'),
2096 'cv' => xl('Chuvash'),
2097 'kw' => xl('Cornish'),
2098 'co' => xl('Corsican'),
2100 'hr' => xl('Croatian'),
2101 'cs' => xl('Czech'),
2102 'da' => xl('Danish'),
2103 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2104 'nl' => xl('Dutch'),
2105 'dz' => xl('Dzongkha'),
2106 'en' => xl('English'),
2107 'eo' => xl('Esperanto'),
2108 'et' => xl('Estonian'),
2110 'fo' => xl('Faroese'),
2111 'fj' => xl('Fijian'),
2112 'fi' => xl('Finnish'),
2113 'fr' => xl('French'),
2114 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2115 'gl' => xl('Galician'),
2116 'ka' => xl('Georgian'),
2117 'de' => xl('German'),
2118 'el' => xl('Greek, Modern'),
2119 'gn' => xl('Guaraní'),
2120 'gu' => xl('Gujarati'),
2121 'ht' => xl('Haitian- Haitian Creole'),
2122 'ha' => xl('Hausa'),
2123 'he' => xl('Hebrew (modern)'),
2124 'hz' => xl('Herero'),
2125 'hi' => xl('Hindi'),
2126 'ho' => xl('Hiri Motu'),
2127 'hu' => xl('Hungarian'),
2128 'ia' => xl('Interlingua'),
2129 'id' => xl('Indonesian'),
2130 'ie' => xl('Interlingue'),
2131 'ga' => xl('Irish'),
2133 'ik' => xl('Inupiaq'),
2135 'is' => xl('Icelandic'),
2136 'it' => xl('Italian'),
2137 'iu' => xl('Inuktitut'),
2138 'ja' => xl('Japanese'),
2139 'jv' => xl('Javanese'),
2140 'kl' => xl('Kalaallisut, Greenlandic'),
2141 'kn' => xl('Kannada'),
2142 'kr' => xl('Kanuri'),
2143 'ks' => xl('Kashmiri'),
2144 'kk' => xl('Kazakh'),
2145 'km' => xl('Khmer'),
2146 'ki' => xl('Kikuyu, Gikuyu'),
2147 'rw' => xl('Kinyarwanda'),
2148 'ky' => xl('Kyrgyz'),
2150 'kg' => xl('Kongo'),
2151 'ko' => xl('Korean'),
2152 'ku' => xl('Kurdish'),
2153 'kj' => xl('Kwanyama, Kuanyama'),
2154 'la' => xl('Latin'),
2155 'lb' => xl('Luxembourgish, Letzeburgesch'),
2156 'lg' => xl('Ganda'),
2157 'li' => xl('Limburgish, Limburgan, Limburger'),
2158 'ln' => xl('Lingala'),
2160 'lt' => xl('Lithuanian'),
2161 'lu' => xl('Luba-Katanga'),
2162 'lv' => xl('Latvian'),
2164 'mk' => xl('Macedonian'),
2165 'mg' => xl('Malagasy'),
2166 'ms' => xl('Malay'),
2167 'ml' => xl('Malayalam'),
2168 'mt' => xl('Maltese'),
2169 'mi' => xl('Māori'),
2170 'mr' => xl('Marathi (Marāṭhī)'),
2171 'mh' => xl('Marshallese'),
2172 'mn' => xl('Mongolian'),
2173 'na' => xl('Nauru'),
2174 'nv' => xl('Navajo, Navaho'),
2175 'nb' => xl('Norwegian Bokmål'),
2176 'nd' => xl('North Ndebele'),
2177 'ne' => xl('Nepali'),
2178 'ng' => xl('Ndonga'),
2179 'nn' => xl('Norwegian Nynorsk'),
2180 'no' => xl('Norwegian'),
2181 'ii' => xl('Nuosu'),
2182 'nr' => xl('South Ndebele'),
2183 'oc' => xl('Occitan'),
2184 'oj' => xl('Ojibwe, Ojibwa'),
2185 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2186 'om' => xl('Oromo'),
2187 'or' => xl('Oriya'),
2188 'os' => xl('Ossetian, Ossetic'),
2189 'pa' => xl('Panjabi, Punjabi'),
2191 'fa' => xl('Persian (Farsi)'),
2192 'pl' => xl('Polish'),
2193 'ps' => xl('Pashto, Pushto'),
2194 'pt' => xl('Portuguese'),
2195 'qu' => xl('Quechua'),
2196 'rm' => xl('Romansh'),
2197 'rn' => xl('Kirundi'),
2198 'ro' => xl('Romanian'),
2199 'ru' => xl('Russian'),
2200 'sa' => xl('Sanskrit (Saṁskṛta)'),
2201 'sc' => xl('Sardinian'),
2202 'sd' => xl('Sindhi'),
2203 'se' => xl('Northern Sami'),
2204 'sm' => xl('Samoan'),
2205 'sg' => xl('Sango'),
2206 'sr' => xl('Serbian'),
2207 'gd' => xl('Scottish Gaelic- Gaelic'),
2208 'sn' => xl('Shona'),
2209 'si' => xl('Sinhala, Sinhalese'),
2210 'sk' => xl('Slovak'),
2211 'sl' => xl('Slovene'),
2212 'so' => xl('Somali'),
2213 'st' => xl('Southern Sotho'),
2214 'es' => xl('Spanish- Castilian'),
2215 'su' => xl('Sundanese'),
2216 'sw' => xl('Swahili'),
2217 'ss' => xl('Swati'),
2218 'sv' => xl('Swedish'),
2219 'ta' => xl('Tamil'),
2220 'te' => xl('Telugu'),
2221 'tg' => xl('Tajik'),
2223 'ti' => xl('Tigrinya'),
2224 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2225 'tk' => xl('Turkmen'),
2226 'tl' => xl('Tagalog'),
2227 'tn' => xl('Tswana'),
2228 'to' => xl('Tonga (Tonga Islands)'),
2229 'tr' => xl('Turkish'),
2230 'ts' => xl('Tsonga'),
2231 'tt' => xl('Tatar'),
2233 'ty' => xl('Tahitian'),
2234 'ug' => xl('Uyghur, Uighur'),
2235 'uk' => xl('Ukrainian'),
2237 'uz' => xl('Uzbek'),
2238 've' => xl('Venda'),
2239 'vi' => xl('Vietnamese'),
2240 'vo' => xl('Volapük'),
2241 'wa' => xl('Walloon'),
2242 'cy' => xl('Welsh'),
2243 'wo' => xl('Wolof'),
2244 'fy' => xl('Western Frisian'),
2245 'xh' => xl('Xhosa'),
2246 'yi' => xl('Yiddish'),
2247 'yo' => xl('Yoruba'),
2248 'za' => xl('Zhuang, Chuang'),
2251 'en', // default English
2252 xl('Choose PDF languange Preference'),
2254 'pdf_size' => array(
2255 xl('Paper Size'), // Descriptive Name
2257 'LETTER' => xl('Letter Paper Size'),
2258 'LEGAL' => xl('Legal Paper Size'),
2259 'FOLIO' => xl('Folio Paper Size'),
2260 'EXECUTIVE' => xl('Executive Paper Size'),
2261 '4A0' => ('4A0' . " " . xl('Paper Size')),
2262 '2A0' => ('2A0' . " " . xl('Paper Size')),
2263 'A0' => ('A0' . " " . xl('Paper Size')),
2264 'A1' => ('A1' . " " . xl('Paper Size')),
2265 'A2' => ('A2' . " " . xl('Paper Size')),
2266 'A3' => ('A3' . " " . xl('Paper Size')),
2267 'A4' => ('A4' . " " . xl('Paper Size')),
2268 'A5' => ('A5' . " " . xl('Paper Size')),
2269 'A6' => ('A6' . " " . xl('Paper Size')),
2270 'A7' => ('A7' . " " . xl('Paper Size')),
2271 'A8' => ('A8' . " " . xl('Paper Size')),
2272 'A9' => ('A9' . " " . xl('Paper Size')),
2273 'A10' => ('A10' . " " . xl('Paper Size')),
2274 'B0' => ('B0' . " " . xl('Paper Size')),
2275 'B1' => ('B1' . " " . xl('Paper Size')),
2276 'B2' => ('B2' . " " . xl('Paper Size')),
2277 'B3' => ('B3' . " " . xl('Paper Size')),
2278 'B4' => ('B4' . " " . xl('Paper Size')),
2279 'B5' => ('B5' . " " . xl('Paper Size')),
2280 'B6' => ('B6' . " " . xl('Paper Size')),
2281 'B7' => ('B7' . " " . xl('Paper Size')),
2282 'B8' => ('B8' . " " . xl('Paper Size')),
2283 'B9' => ('B9' . " " . xl('Paper Size')),
2284 'B10' => ('B10' . " " . xl('Paper Size')),
2285 'C0' => ('C0' . " " . xl('Paper Size')),
2286 'C1' => ('C1' . " " . xl('Paper Size')),
2287 'C2' => ('C2' . " " . xl('Paper Size')),
2288 'C3' => ('C3' . " " . xl('Paper Size')),
2289 'C4' => ('C4' . " " . xl('Paper Size')),
2290 'C5' => ('C5' . " " . xl('Paper Size')),
2291 'C6' => ('C6' . " " . xl('Paper Size')),
2292 'C7' => ('C7' . " " . xl('Paper Size')),
2293 'C8' => ('C8' . " " . xl('Paper Size')),
2294 'C9' => ('C9' . " " . xl('Paper Size')),
2295 'C10' => ('C10' . " " . xl('Paper Size')),
2296 'RA0' => ('RA0' . " " . xl('Paper Size')),
2297 'RA1' => ('RA1' . " " . xl('Paper Size')),
2298 'RA2' => ('RA2' . " " . xl('Paper Size')),
2299 'RA3' => ('RA3' . " " . xl('Paper Size')),
2300 'RA4' => ('RA4' . " " . xl('Paper Size')),
2301 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2302 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2303 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2304 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2305 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2308 xl('Choose Paper Size')
2310 'pdf_left_margin' => array(
2311 xl('Left Margin (mm)'),
2314 xl('Left Margin (mm)')
2316 'pdf_right_margin' => array(
2317 xl('Right Margin (mm)'),
2320 xl('Right Margin (mm)')
2322 'pdf_top_margin' => array(
2323 xl('Top Margin (mm)'),
2326 xl('Top Margin (mm)')
2328 'pdf_bottom_margin' => array(
2329 xl('Bottom Margin (px)'),
2332 xl('Bottom Margin (px)')
2334 'pdf_output' => array (
2337 'D' => xl('Download'),
2341 xl("Choose Download or Display Inline"),
2344 'chart_label_type' => array(
2345 xl('Patient Label Type'),
2353 xl('Avery Label type for printing patient labels from popups in left nav screen'),
2356 'barcode_label_type' => array(
2357 xl('Barcode Label Type'),
2371 '12' => 'datamatrix'
2373 '9', // default = None
2374 xl('Barcode type for printing barcode labels from popups in left nav screen.')
2377 'addr_label_type' => array(
2378 xl('Print Patient Address Label'),
2379 'bool', // data type
2380 '1', // default = false
2381 xl('Select to print patient address labels from popups in left nav screen.')