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 // 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')) {
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';
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:
90 // xl('Notifications')
91 // xl('Miscellaneous')
93 // List of user specific tabs and globals
94 $USER_SPECIFIC_TABS = array('Appearance',
99 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
102 'gbl_pt_list_page_size',
103 'gbl_pt_list_new_window',
105 'units_of_measurement',
107 'date_display_format',
108 'time_display_format',
110 'print_next_appointment_on_ledger',
111 'calendar_view_type',
115 'ptkr_pt_list_new_window',
116 'erx_import_status_message');
118 $GLOBALS_METADATA = array(
122 'Appearance' => array(
124 'default_top_pane' => array(
125 xl('Main Top Pane Screen'), // descriptive name
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
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
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(
161 xl('Pick a CSS theme.')
164 'gbl_nav_area_width' => array(
165 xl('Navigation Area Width'),
168 xl('Width in pixels of the left navigation frame.')
171 'openemr_name' => array(
172 xl('Application Title'),
175 xl('Application name for login page and main window title.')
178 'full_new_patient_form' => array(
179 xl('New Patient Form'),
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'),
187 xl('Style of form used for adding new patients')
190 'patient_search_results_style' => array(
191 xl('Patient Search Results Style'),
193 '0' => xl('Encounter statistics'),
194 '1' => xl('Mandatory and specified fields'),
197 xl('Type of columns displayed for patient search results')
200 'gbl_tall_nav_area' => array(
201 xl('Tall Navigation Area'),
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'),
210 '1', // default = true
211 xl('Navigation area includes encounter forms')
214 'simplified_demographics' => array(
215 xl('Simplified Demographics'),
217 '0', // default = false
218 xl('Omit insurance and some other things from the demographics form')
221 'simplified_prescriptions' => array(
222 xl('Simplified Prescriptions'),
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'),
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'),
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'),
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'),
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'),
260 'http://open-emr.org/',
261 xl('URL for OpenEMR support.')
264 'support_phone_number' => array(
265 xl('Support Phone Number'),
268 xl('Phone Number for Vendor Support that Appears on the About Page.')
271 'drop_bottom' => array(
272 xl('Remove Bottom Pane'),
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'),
281 '0' => xl('Show All'),
290 xl('Number of encounters to display per page.')
293 'gbl_pt_list_page_size' => array(
294 xl('Patient List Page Size'),
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'),
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'),
315 '0' => xl('Standard'),
316 '1' => xl('Omit circumferences'),
319 xl('Special treatment for the Vitals form')
322 'insurance_information' => array(
323 xl('Show Additional Insurance Information'), // descriptive name
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'),
333 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
343 'language_default' => array(
344 xl('Default Language'),
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'),
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'),
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'),
374 '1', // default = true
375 xl('Is text from form layouts to be translated?')
378 'translate_lists' => array(
379 xl('Translate Lists'),
381 '1', // default = true
382 xl('Is text from lists to be translated?')
385 'translate_gacl_groups' => array(
386 xl('Translate Access Control Groups'),
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'),
395 '1', // default = true
396 xl('Are patient note titles to be translated?')
399 'translate_document_categories' => array(
400 xl('Translate Document Categories'),
402 '1', // default = true
403 xl('Are document category names to be translated?')
406 'translate_appt_categories' => array(
407 xl('Translate Appointment Categories'),
409 '1', // default = true
410 xl('Are appointment category names to be translated?')
413 'units_of_measurement' => array(
414 xl('Units for Visit Forms'),
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'),
428 '1'=>xl('Show pounds as decimal value'),
429 '2'=>xl('Show pounds and ounces')
432 xl('Applies to Vitals form')
435 'disable_deprecated_metrics_form' => array(
436 xl('Disable Old Metric Vitals Form'),
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'),
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'),
452 '0' => xl('YYYY-MM-DD'),
453 '1' => xl('MM/DD/YYYY'),
454 '2' => xl('DD/MM/YYYY'),
457 xl('Format used to display most dates.')
460 'time_display_format' => array(
461 xl('Time Display Format'),
467 xl('Format used to display most times.')
470 'currency_decimals' => array(
471 xl('Currency Decimal Places'),
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'),
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'),
500 xl('Symbol used to separate thousands for currency.')
503 'gbl_currency_symbol' => array(
504 xl('Currency Designator'),
507 xl('Code or symbol to indicate currency')
509 'age_display_format'=>array(xl('Age Display Format'),
511 '0'=>xl('Years or months'),
512 '1'=>xl('Years, months and days')
515 xl('Format for age display')
517 'age_display_limit' => array(
518 xl('Age in Years for Display Format Change'),
521 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
523 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
524 'weekend_days' => array(
525 xl('Your weekend days'),
527 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
530 '6' => xl('Saturday'),
531 '5,6' => xl('Friday') .' - ' . xl('Saturday'),
534 ,xl('which days are your weekend days?')
543 'specific_application' => array(
544 xl('Specific Application'),
548 '3' => xl('Weight loss clinic'),
551 xl('Indicator for specialized usage')
554 'inhouse_pharmacy' => array(
555 xl('Drugs and Products'),
557 '0' => xl('Do not inventory and sell any products'),
558 '1' => xl('Inventory and sell drugs only'),
559 '2' => xl('Inventory and sell both drugs and non-drug products'),
560 '3' => xl('Products but no prescription drugs and no templates'),
563 xl('Option to support inventory and sales of products')
566 'disable_chart_tracker' => array(
567 xl('Disable Chart Tracker'),
569 '0', // default = false
570 xl('Removes the Chart Tracker feature')
573 'disable_phpmyadmin_link' => array(
574 xl('Disable phpMyAdmin'),
576 '0', // default = false
577 xl('Removes support for phpMyAdmin')
580 'disable_immunizations' => array(
581 xl('Disable Immunizations'),
583 '0', // default = false
584 xl('Removes support for immunizations')
587 'disable_prescriptions' => array(
588 xl('Disable Prescriptions'),
590 '0', // default = false
591 xl('Removes support for prescriptions')
594 'omit_employers' => array(
595 xl('Omit Employers'),
597 '0', // default = false
598 xl('Omit employer information in patient demographics')
601 'select_multi_providers' => array(
602 xl('Support Multi-Provider Events'),
604 '0', // default = false
605 xl('Support calendar events that apply to multiple providers')
608 'disable_non_default_groups' => array(
609 xl('Disable User Groups'),
611 '1', // default = true
612 xl('Normally this should be checked. Not related to access control.')
615 'ignore_pnotes_authorization' => array(
616 xl('Skip Authorization of Patient Notes'),
618 '1', // default = true
619 xl('Do not require patient notes to be authorized')
622 'support_encounter_claims' => array(
623 xl('Allow Encounter Claims'),
625 '0', // default = false
626 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
629 'advance_directives_warning' => array(
630 xl('Advance Directives Warning'),
632 '0', // default = false
633 xl('Display advance directives in the demographics page.')
636 'configuration_import_export' => array(
637 xl('Configuration Export/Import'),
639 '0', // default = false
640 xl('Support export/import of configuration data via the Backup page.')
643 'restrict_user_facility' => array(
644 xl('Restrict Users to Facilities'),
647 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
650 'set_facility_cookie' => array(
651 xl('Remember Selected Facility'),
654 xl('Set a facility cookie to remember the selected facility between logins.')
657 'receipts_by_provider' => array(
658 xl('Print Receipts by Provider'),
661 xl('Causes Receipts to Print Encounter/Primary Provider Info')
664 'discount_by_money' => array(
665 xl('Discounts as Monetary Amounts'),
667 '1', // default = true
668 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
671 'gbl_visit_referral_source' => array(
672 xl('Referral Source for Encounters'),
674 '0', // default = false
675 xl('A referral source may be specified for each visit.')
678 'gbl_mask_patient_id' => array(
679 xl('Mask for Patient IDs'),
682 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
685 'gbl_mask_invoice_number' => array(
686 xl('Mask for Invoice Numbers'),
689 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
692 'gbl_mask_product_id' => array(
693 xl('Mask for Product IDs'),
696 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
699 'force_billing_widget_open' => array(
700 xl('Force Billing Widget Open'),
702 '0', // default = false
703 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
706 'activate_ccr_ccd_report' => array(
707 xl('Activate CCR/CCD Reporting'),
709 '1', // default = true
710 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
713 'hide_document_encryption' => array(
714 xl('Hide Encryption/Decryption Options In Document Management'),
716 '1', // default = true
717 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
720 'use_custom_immun_list' => array(
721 xl('Use Custom Immunization List'),
723 '0', // default = true
724 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
728 xl('CMS 1500 Paper Form Format'),
730 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
731 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
734 xl('This specifies which revision of the form the billing module should generate')
737 'cms_1500_box_31_format' => array(
738 xl('CMS 1500: Box 31 Format'),
740 '0' => xl('Signature on File'),
741 '1' => xl('Firstname Lastname'),
745 xl('This specifies whether to include date in Box 31.')
748 'cms_1500_box_31_date' => array(
749 xl('CMS 1500: Date in Box 31 (Signature)'),
752 '1' => xl('Date of Service'),
756 xl('This specifies whether to include date in Box 31.')
759 'amendments' => array (
762 '1', // default = true
763 xl('Enable amendments feature')
766 'allow_pat_delete' => array(
767 xl('Allow Administrators to Delete Patients'),
769 '0', // default = false
770 xl('Allow Administrators to Delete Patients')
779 'use_custom_daysheet' => array(
780 xl('Use Custom End of Day Report'),
783 '1' => xl('Print End of Day Report 1'),
784 '2' => xl('Print End of Day Report 2'),
785 '3' => xl('Print End of Day Report 3'),
787 '1', // default = Print End of Day Report 1
788 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
791 'daysheet_provider_totals' => array(
792 xl('End of Day by Provider or allow Totals Only'),
794 '0' => xl('Provider'),
795 '1' => xl('Totals Only'),
798 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
801 'ledger_begin_date' => array(
802 xl('Beginning Date for Ledger Report'),
804 'Y1' => xl('One Year Ago'),
805 'Y2' => xl('Two Years Ago'),
806 'M6' => xl('Six Months Ago'),
807 'M3' => xl('Three Months Ago'),
808 'M1' => xl('One Month Ago'),
809 'D1' => xl('One Day Ago'),
811 'Y1', // default = One Year
812 xl('This is the Beginning date for the Ledger Report.')
815 'print_next_appointment_on_ledger' => array(
816 xl('Print the Next Appointment on the Bottom of the Ledger'),
818 '1', // default = true
819 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
822 'sales_report_invoice' => array(
823 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
825 '0' => xl('Invoice Number'),
826 '1' => xl('Patient Name and ID'),
827 '2' => xl('Patient Name and Invoice'),
830 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
833 'cash_receipts_report_invoice' => array(
834 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
836 '0' => xl('Invoice Number'),
837 '1' => xl('Patient Name'),
840 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
849 'default_search_code_type' => array(
850 xl('Default Search Code Type'),
851 'all_code_types', // data type
853 xl('The default code type to search for in the Fee Sheet.')
856 'support_fee_sheet_line_item_provider' => array(
857 xl('Support provider in line item in fee sheet'),
859 '0', // default = false
860 xl('This Enables provider in line item in the fee sheet')
863 'default_fee_sheet_line_item_provider' => array(
864 xl('Default to a provider for line item in the fee sheet'),
866 '0', // default = false
867 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
870 'replicate_justification' => array(
871 xl('Automatically replicate justification codes in Fee Sheet'),
873 '0', // default = false
874 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
877 'display_units_in_billing' => array(
878 xl('Display the Units Column on the Billing Screen'),
880 '0', // default = false
881 xl('Display the Units Column on the Billing Screen')
884 'notes_to_display_in_Billing' => array(
885 xl('Which notes are to be displayed in the Billing Screen'),
888 '1' => xl('Encounter Billing Note'),
889 '2' => xl('Patient Billing Note'),
893 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
896 'use_custom_statement' => array(
897 xl('Use Custom Statement'),
899 '0', // default = false
900 xl('This will use the custom Statment showing the description instead of the codes.')
903 'statement_bill_note_print' => array(
904 xl('Print Patient Billing Note'),
906 '0', // default = false
907 xl('This will allow printing of the Patient Billing Note on the statements.')
910 'use_dunning_message' => array(
911 xl('Use Custom Dunning Messages'),
913 '0', // default = false
914 xl('This will allow use of the custom Dunning Messages on the statements.')
917 'first_dun_msg_set' => array(
918 xl('Number of days before showing first account message'),
921 xl('Number of days before showing first account message.')
924 'first_dun_msg_text' => array(
925 xl('First account message'),
928 xl('Text for first account message.')
931 'second_dun_msg_set' => array(
932 xl('Number of days before showing second account message'),
935 xl('Number of days before showing second account message')
938 'second_dun_msg_text' => array(
939 xl('Second account message'),
942 xl('Text for second account message.')
945 'third_dun_msg_set' => array(
946 xl('Number of days before showing third account message'),
949 xl('Number of days before showing third account message')
952 'third_dun_msg_text' => array(
953 xl('Third account message'),
956 xl('Text for third account message.')
959 'fourth_dun_msg_set' => array(
960 xl('Number of days before showing fourth account message'),
963 xl('Number of days before showing fourth account message')
966 'fourth_dun_msg_text' => array(
967 xl('Fourth account message'),
970 xl('Text for fourth account message.')
973 'fifth_dun_msg_set' => array(
974 xl('Number of days before showing fifth account message'),
977 xl('Number of days before showing fifth account message')
980 'fifth_dun_msg_text' => array(
981 xl('Fifth account message'),
984 xl('Text for fifth account message.')
992 'esign_all' => array(
993 xl('Allows E-Sign on the entire encounter'),
995 '0', // default = false
996 xl('This will enable signing an entire encounter, rather than individual forms')
999 'lock_esign_all' => array(
1000 xl('Lock e-signed encounters and their forms'),
1001 'bool', // data type
1002 '0', // default = false
1003 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1006 'esign_individual' => array(
1007 xl('Allows E-Signing Individual Forms'),
1008 'bool', // data type
1009 '1', // default = false
1010 xl('This will enable signing individual forms separately')
1013 'lock_esign_individual' => array(
1014 xl('Lock an e-signed form individually'),
1015 'bool', // data type
1016 '1', // default = false
1017 xl('This will disable the Edit button on any form that is e-signed')
1020 'esign_lock_toggle' => array(
1021 xl('Enable lock toggle'),
1022 'bool', // data type
1023 '0', // default = false
1024 xl('This will give the user the option to lock (separate locking and signing)')
1027 'esign_report_hide_empty_sig' => array(
1028 xl('Hide Empty E-Sign Logs On Report'),
1029 'bool', // data type
1030 '1', // default = false
1031 xl('This will hide empty e-sign logs on the patient report')
1036 'Documents' => array(
1038 'document_storage_method' => array(
1039 xl('Document Storage Method'),
1041 '0' => xl('Hard Disk'),
1042 '1' => xl('CouchDB')
1045 xl('Option to save method of document storage.')
1047 'couchdb_host' => array(
1048 xl('CouchDB HostName'),
1053 'couchdb_user' => array(
1054 xl('CouchDB UserName'),
1057 xl('Username to connect to CouchDB'),
1059 'couchdb_pass' => array(
1060 xl('CouchDB Password'),
1063 xl('Password to connect to CouchDB'),
1065 'couchdb_port' => array(
1071 'couchdb_dbase' => array(
1072 xl('CouchDB Database'),
1075 xl('CouchDB database name'),
1077 'couchdb_log' => array(
1078 xl('CouchDB Log Enable'),
1081 xl('Enable log for document uploads/downloads to CouchDB'),
1084 'expand_document_tree' => array(
1085 xl('Expand All Document Categories'),
1086 'bool', // data type
1087 '0', // default = false
1088 xl('Expand All Document Categories by Default')
1091 'patient_id_category_name' => array(
1092 xl('Patient ID Category Name'),
1093 'text', // data type
1094 'Patient ID card', // default
1095 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1098 'patient_photo_category_name' => array(
1099 xl('Patient Photo Category Name'),
1100 'text', // data type
1101 'Patient Photograph', // default
1102 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1105 'lab_results_category_name' => array(
1106 xl('Lab Results Category Name'),
1107 'text', // data type
1108 'Lab Report', // default
1109 xl('Document category name for storage of electronically received lab results.')
1112 'gbl_mdm_category_name' => array(
1113 xl('MDM Document Category Name'),
1114 'text', // data type
1115 'Lab Report', // default
1116 xl('Document category name for storage of electronically received MDM documents.')
1123 'Calendar' => array(
1125 'disable_calendar' => array(
1126 xl('Disable Calendar'),
1127 'bool', // data type
1129 xl('Do not display the calendar.')
1132 'schedule_start' => array(
1133 xl('Calendar Starting Hour'),
1136 xl('Beginning hour of day for calendar events.')
1139 'schedule_end' => array(
1140 xl('Calendar Ending Hour'),
1143 xl('Ending hour of day for calendar events.')
1146 'calendar_interval' => array(
1147 xl('Calendar Interval'),
1157 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1160 'calendar_view_type' => array(
1161 xl('Default Calendar View'),
1164 'week' => xl('Week'),
1165 'month' => xl('Month'),
1168 xl('This sets the Default Calendar View, Default is Day.')
1170 'first_day_week' => array(
1171 xl('First day in the week') ,
1173 '1' => xl('Monday'),
1174 '0' => xl('Sunday'),
1175 '6' => xl('Saturday')
1178 xl('Your first day in the week.')
1180 'calendar_appt_style' => array(
1181 xl('Appointment Display Style'),
1184 '2' => 'Last name, first name',
1185 '3' => 'Last name, first name (title)',
1186 '4' => 'Last name, first name (title: description)',
1189 xl('This determines how appointments display on the calendar.')
1192 'event_color' => array(
1193 xl('Appointment/Event Color'),
1195 '1' => 'Category Color Schema',
1196 '2' => 'Facility Color Schema',
1199 xl('This determines which color schema used for appointment')
1202 'number_of_appts_to_show' => array(
1203 xl('Appointments - Patient Summary - Number to Display'),
1206 xl('Number of Appointments to display in the Patient Summary')
1209 'patient_portal_appt_display_num' => array(
1210 xl('Appointments - Onsite Patient Portal - Number to Display'),
1213 xl('Number of Appointments to display in the Onsite Patient Portal')
1216 'num_past_appointments_to_show' => array(
1217 xl('Past Appointment Display Widget'),
1219 '0', // default = false
1220 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)')
1223 'docs_see_entire_calendar' => array(
1224 xl('Providers See Entire Calendar'),
1225 'bool', // data type
1227 xl('Check this if you want providers to see all appointments by default and not just their own.')
1230 'auto_create_new_encounters' => array(
1231 xl('Auto-Create New Encounters'),
1232 'bool', // data type
1234 xl('Automatically create a new encounter when an appointment check in status is selected.')
1237 'disable_pat_trkr' => array(
1238 xl('Disable Patient Flow Board'),
1239 'bool', // data type
1241 xl('Do not display the patient flow board.')
1244 'ptkr_pt_list_new_window' => array(
1245 xl('Open Demographics in New Window from Patient Flow Board'),
1246 'bool', // data type
1247 '0', // default = false
1248 xl('When Checked, Demographics Will Open in New Window from Patient Flow Board.')
1251 'pat_trkr_timer' => array(
1252 xl('Patient Flow Board Timer Interval'),
1254 '0' => 'No automatic refresh',
1263 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1266 'checkout_roll_off' => array(
1267 xl('Number of Minutes to display completed checkouts'),
1270 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1273 'drug_screen' => array(
1274 xl('Enable Random Drug Testing'),
1275 'bool', // data type
1277 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1280 'drug_testing_percentage' => array(
1281 xl('Percentage of Patients to Drug Test'),
1284 xl('Percentage of Patients to select for Random Drug Testing.')
1287 'maximum_drug_test_yearly' => array(
1288 xl('Maximum number of times a Patient can be tested in a year'),
1291 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1298 'Security' => array(
1301 xl('Idle Session Timeout Seconds'),
1304 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1307 'secure_password' => array(
1308 xl('Require Strong Passwords'),
1309 'bool', // data type
1311 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1314 'password_history' => array(
1315 xl('Require Unique Passwords'),
1316 'bool', // data type
1318 xl('Means none of last three passwords are allowed when changing a password.')
1320 'password_compatibility' => array(
1321 xl('Permit unsalted passwords'),
1322 'bool', // data type
1324 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')
1327 'password_expiration_days' => array(
1328 xl('Default Password Expiration Days'),
1331 xl('Default password expiration period in days. 0 means this feature is disabled.')
1334 'password_grace_time' => array(
1335 xl('Password Expiration Grace Period'),
1338 xl('Period in days where a user may login with an expired password.')
1341 'is_client_ssl_enabled' => array(
1342 xl('Enable Client SSL'),
1343 'bool', // data type
1345 xl('Enable client SSL certificate authentication.')
1348 'certificate_authority_crt' => array(
1349 xl('Path to CA Certificate File'),
1350 'text', // data type
1352 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1355 'certificate_authority_key' => array(
1356 xl('Path to CA Key File'),
1357 'text', // data type
1359 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1362 'client_certificate_valid_in_days' => array(
1363 xl('Client Certificate Expiration Days'),
1366 xl('Number of days that the client certificate is valid.')
1369 'Emergency_Login_email_id' => array(
1370 xl('Emergency Login Email Address'),
1371 'text', // data type
1373 xl('Email address, if any, to receive emergency login user activation messages.')
1378 // Notifications Tab
1380 'Notifications' => array(
1382 'patient_reminder_sender_name' => array(
1383 xl('Patient Reminder Sender Name'),
1384 'text', // data type
1386 xl('Name of the sender for patient reminders.')
1389 'patient_reminder_sender_email' => array(
1390 xl('Patient Reminder Sender Email'),
1391 'text', // data type
1393 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.')
1396 'practice_return_email_path' => array(
1397 xl('Notification Email Address'),
1398 'text', // data type
1400 xl('Email address, if any, to receive administrative notifications.')
1403 'EMAIL_METHOD' => array(
1404 xl('Email Transport Method'),
1406 'PHPMAIL' => 'PHPMAIL',
1407 'SENDMAIL' => 'SENDMAIL',
1411 xl('Method for sending outgoing email.')
1414 'SMTP_HOST' => array(
1415 xl('SMTP Server Hostname'),
1416 'text', // data type
1417 'localhost', // default
1418 xl('If SMTP is used, the server`s hostname or IP address.')
1421 'SMTP_PORT' => array(
1422 xl('SMTP Server Port Number'),
1425 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1428 'SMTP_USER' => array(
1429 xl('SMTP User for Authentication'),
1430 'text', // data type
1432 xl('Must be empty if SMTP authentication is not used.')
1435 'SMTP_PASS' => array(
1436 xl('SMTP Password for Authentication'),
1437 'text', // data type
1439 xl('Must be empty if SMTP authentication is not used.')
1442 'SMTP_SECURE' => array(
1443 xl('SMTP Security Protocol'),
1450 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1453 'EMAIL_NOTIFICATION_HOUR' => array(
1454 xl('Email Notification Hours'),
1457 xl('Number of hours in advance to send email notifications.')
1460 'SMS_NOTIFICATION_HOUR' => array(
1461 xl('SMS Notification Hours'),
1464 xl('Number of hours in advance to send SMS notifications.')
1467 'SMS_GATEWAY_USENAME' => array(
1468 xl('SMS Gateway Username'),
1469 'text', // data type
1471 xl('Username for SMS Gateway.')
1474 'SMS_GATEWAY_PASSWORD' => array(
1475 xl('SMS Gateway Password'),
1476 'text', // data type
1478 xl('Password for SMS Gateway.')
1481 'SMS_GATEWAY_APIKEY' => array(
1482 xl('SMS Gateway API Key'),
1483 'text', // data type
1485 xl('API key for SMS Gateway.')
1488 'phone_notification_hour' => array(
1489 xl('Phone Notification Hour'),
1492 xl('Number of hours in advance to send Phone notification.')
1495 'phone_gateway_username' => array(
1496 xl('Phone Gateway Username'),
1497 'text', // data type
1499 xl('Username for Phone Gateway.')
1502 'phone_gateway_password' => array(
1503 xl('Phone Gateway Password'),
1504 'text', // data type
1506 xl('Password for Phone Gateway.')
1509 'phone_gateway_url' => array(
1510 xl('Phone Gateway URL'),
1511 'text', // data type
1513 xl('URL for Phone Gateway.')
1518 // CDR (Clinical Decision Rules)
1522 'enable_cdr' => array(
1523 xl('Enable Clinical Decisions Rules (CDR)'),
1524 'bool', // data type
1526 xl('Enable Clinical Decisions Rules (CDR)')
1529 'enable_allergy_check' => array(
1530 xl('Enable Allergy Check'),
1531 'bool', // data type
1533 xl('Enable Allergy Check Against Medications and Prescriptions')
1536 'enable_alert_log' => array(
1537 xl('Enable Alert Log'),
1538 'bool', // data type
1540 xl('Enable Alert Logging')
1543 'enable_cdr_new_crp' => array(
1544 xl('Enable Clinical Passive New Reminder(s) Popup'),
1545 'bool', // data type
1547 xl('Enable Clinical Passive New Reminder(s) Popup')
1550 'enable_cdr_crw' => array(
1551 xl('Enable Clinical Passive Reminder Widget'),
1552 'bool', // data type
1554 xl('Enable Clinical Passive Reminder Widget')
1557 'enable_cdr_crp' => array(
1558 xl('Enable Clinical Active Reminder Popup'),
1559 'bool', // data type
1561 xl('Enable Clinical Active Reminder Popup')
1564 'enable_cdr_prw' => array(
1565 xl('Enable Patient Reminder Widget'),
1566 'bool', // data type
1568 xl('Enable Patient Reminder Widget')
1571 'enable_cqm' => array(
1572 xl('Enable CQM Reporting'),
1573 'bool', // data type
1575 xl('Enable Clinical Quality Measure (CQM) Reporting')
1578 'pqri_registry_name' => array(
1579 xl('PQRI Registry Name'),
1580 'text', // data type
1581 'Model Registry', // default
1582 xl('PQRI Registry Name')
1585 'pqri_registry_id' => array(
1586 xl('PQRI Registry ID'),
1587 'text', // data type
1588 '125789123', // default
1589 xl('PQRI Registry ID')
1592 'enable_amc' => array(
1593 xl('Enable AMC Reporting'),
1594 'bool', // data type
1596 xl('Enable Automated Measure Calculations (AMC) Reporting')
1599 'enable_amc_prompting' => array(
1600 xl('Enable AMC Prompting'),
1601 'bool', // data type
1603 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1606 'enable_amc_tracking' => array(
1607 xl('Enable AMC Tracking'),
1608 'bool', // data type
1610 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
1613 'cdr_report_nice' => array(
1614 xl('CDR Reports Processing Priority'),
1616 '' => xl('Default Priority'),
1617 '5' => xl('Moderate Priority'),
1618 '10' => xl('Moderate/Low Priority'),
1619 '15' => xl('Low Priority'),
1620 '20' => xl('Lowest Priority')
1623 xl('Set processing priority for CDR engine based reports.')
1626 'pat_rem_clin_nice' => array(
1627 xl('Patient Reminder Creation Processing Priority'),
1629 '' => xl('Default Priority'),
1630 '5' => xl('Moderate Priority'),
1631 '10' => xl('Moderate/Low Priority'),
1632 '15' => xl('Low Priority'),
1633 '20' => xl('Lowest Priority')
1636 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
1639 'report_itemizing_standard' => array(
1640 xl('Enable Standard Report Itemization'),
1641 'bool', // data type
1643 xl('Enable Itemization of Standard Clinical Rules Reports')
1646 'report_itemizing_cqm' => array(
1647 xl('Enable CQM Report Itemization'),
1648 'bool', // data type
1650 xl('Enable Itemization of CQM Reports')
1653 'report_itemizing_amc' => array(
1654 xl('Enable AMC Report Itemization'),
1655 'bool', // data type
1657 xl('Enable Itemization of AMC Reports')
1666 'enable_auditlog' => array(
1667 xl('Enable Audit Logging'),
1668 'bool', // data type
1670 xl('Enable Audit Logging')
1673 'audit_events_patient-record' => array(
1674 xl('Audit Logging Patient Record'),
1675 'bool', // data type
1677 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1680 'audit_events_scheduling' => array(
1681 xl('Audit Logging Scheduling'),
1682 'bool', // data type
1684 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1687 'audit_events_order' => array(
1688 xl('Audit Logging Order'),
1689 'bool', // data type
1691 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1694 'audit_events_security-administration' => array(
1695 xl('Audit Logging Security Administration'),
1696 'bool', // data type
1698 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1701 'audit_events_backup' => array(
1702 xl('Audit Logging Backups'),
1703 'bool', // data type
1705 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1708 'audit_events_other' => array(
1709 xl('Audit Logging Miscellaneous'),
1710 'bool', // data type
1712 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1715 'audit_events_query' => array(
1716 xl('Audit Logging SELECT Query'),
1717 'bool', // data type
1719 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1722 'audit_events_cdr' => array(
1723 xl('Audit CDR Engine Queries'),
1724 'bool', // data type
1726 xl('Enable logging of CDR Engine Queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1729 'enable_atna_audit' => array(
1730 xl('Enable ATNA Auditing'),
1731 'bool', // data type
1733 xl('Enable Audit Trail and Node Authentication (ATNA).')
1736 'atna_audit_host' => array(
1737 xl('ATNA audit host'),
1738 'text', // data type
1740 xl('The hostname of the ATNA audit repository machine.')
1743 'atna_audit_port' => array(
1744 xl('ATNA audit port'),
1745 'text', // data type
1747 xl('Listening port of the RFC 5425 TLS syslog server.')
1750 'atna_audit_localcert' => array(
1751 xl('ATNA audit local certificate'),
1752 'text', // data type
1754 xl('Certificate to send to RFC 5425 TLS syslog server.')
1757 'atna_audit_cacert' => array(
1758 xl('ATNA audit CA certificate'),
1759 'text', // data type
1761 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
1764 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
1765 'enable_auditlog_encryption' => array(
1766 xl('Enable Audit Log Encryption'),
1767 'bool', // data type
1769 xl('Enable Audit Log Encryption')
1772 'billing_log_option' => array(
1773 xl('Billing Log Option'),
1775 '1' => xl('Billing Log Append'),
1776 '2' => xl('Billing Log Overwrite')
1779 xl('Billing log setting to append or overwrite the log file.')
1782 'gbl_print_log_option' => array(
1783 xl('Printing Log Option'),
1785 '0' => xl('No logging'),
1786 '1' => xl('Hide print feature'),
1787 '2' => xl('Log entire document'),
1790 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
1795 // Miscellaneous Tab
1797 'Miscellaneous' => array(
1799 'mysql_bin_dir' => array(
1800 xl('Path to MySQL Binaries'),
1801 'text', // data type
1802 $mysql_bin_dir, // default
1803 xl('Full path to directory containing MySQL executables.')
1806 'perl_bin_dir' => array(
1807 xl('Path to Perl Binaries'),
1808 'text', // data type
1809 $perl_bin_dir, // default
1810 xl('Full path to directory containing Perl executables.')
1813 'temporary_files_dir' => array(
1814 xl('Path to Temporary Files'),
1815 'text', // data type
1816 $temporary_files_dir, // default
1817 xl('Full path to directory used for temporary files.')
1820 'backup_log_dir' => array(
1821 xl('Path for Event Log Backup'),
1822 'text', // data type
1823 $backup_log_dir, // default
1824 xl('Full path to directory for event log backup.')
1827 'state_data_type' => array(
1828 xl('State Data Type'),
1830 '2' => xl('Text field'),
1831 '1' => xl('Single-selection list'),
1832 '26' => xl('Single-selection list with ability to add to the list'),
1835 xl('Field type to use for employer or subscriber state in demographics.')
1838 'state_list' => array(
1840 'text', // data type
1842 xl('List used by above State Data Type option.')
1845 'state_custom_addlist_widget' => array(
1846 xl('State List Widget Custom Fields'),
1847 'bool', // data type
1849 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
1852 'country_data_type' => array(
1853 xl('Country Data Type'),
1855 '2' => xl('Text field'),
1856 '1' => xl('Single-selection list'),
1857 '26' => xl('Single-selection list with ability to add to the list'),
1860 xl('Field type to use for employer or subscriber country in demographics.')
1863 'country_list' => array(
1865 'text', // data type
1866 'country', // default
1867 xl('List used by above Country Data Type option.')
1870 'print_command' => array(
1871 xl('Print Command'),
1872 'text', // data type
1873 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
1874 xl('Shell command for printing from the server.')
1877 'default_chief_complaint' => array(
1878 xl('Default Reason for Visit'),
1879 'text', // data type
1881 xl('You may put text here as the default complaint in the New Patient Encounter form.')
1884 'default_new_encounter_form' => array(
1885 xl('Default Encounter Form ID'),
1886 'text', // data type
1888 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
1891 'MedicareReferrerIsRenderer' => array(
1892 xl('Medicare Referrer Is Renderer'),
1893 'bool', // data type
1894 '0', // default = true
1895 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
1898 'post_to_date_benchmark' => array(
1899 xl('Financial Close Date (yyyy-mm-dd)'),
1900 'text', // data type
1901 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
1902 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
1905 'enable_hylafax' => array(
1906 xl('Enable Hylafax Support'),
1907 'bool', // data type
1909 xl('Enable Hylafax Support')
1912 'hylafax_server' => array(
1913 xl('Hylafax Server'),
1914 'text', // data type
1915 'localhost', // default
1916 xl('Hylafax server hostname.')
1919 'hylafax_basedir' => array(
1920 xl('Hylafax Directory'),
1921 'text', // data type
1922 '/var/spool/fax', // default
1923 xl('Location where Hylafax stores faxes.')
1926 'hylafax_enscript' => array(
1927 xl('Hylafax Enscript Command'),
1928 'text', // data type
1929 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
1930 xl('Enscript command used by Hylafax.')
1933 'enable_scanner' => array(
1934 xl('Enable Scanner Support'),
1935 'bool', // data type
1937 xl('Enable Scanner Support')
1940 'scanner_output_directory' => array(
1941 xl('Scanner Directory'),
1942 'text', // data type
1943 '/mnt/scan_docs', // default
1944 xl('Location where scans are stored.')
1952 'portal_onsite_enable' => array(
1953 xl('Enable Onsite Patient Portal'),
1954 'bool', // data type
1956 xl('Enable Onsite Patient Portal.')
1959 'portal_onsite_address' => array(
1960 xl('Onsite Patient Portal Site Address'),
1961 'text', // data type
1962 'https://your_web_site.com/openemr/patients',
1963 xl('Website link for the Onsite Patient Portal.')
1966 'portal_onsite_document_download' => array(
1967 xl('Enable Onsite Patient Portal Document Download'),
1968 'bool', // data type
1970 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
1973 'portal_offsite_enable' => array(
1974 xl('Enable Offsite Patient Portal'),
1975 'bool', // data type
1977 xl('Enable Offsite Patient Portal.')
1980 'portal_offsite_providerid' => array(
1981 xl('Offsite Patient Portal Provider ID'),
1982 'text', // data type
1984 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
1987 'portal_offsite_username' => array(
1988 xl('Offsite Patient Portal Username'),
1989 'text', // data type
1991 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
1994 'portal_offsite_password' => array(
1995 xl('Offsite Patient Portal Password'),
1998 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2001 'portal_offsite_address' => array(
2002 xl('Offsite Patient Portal Site Address'),
2003 'text', // data type
2004 'https://ssh.mydocsportal.com/provider.php',
2005 xl('Offsite Https link for the Patient Portal.')
2008 'portal_offsite_address_patient_link' => array(
2009 xl('Offsite Patient Portal Site Address (Patient Link)'),
2010 'text', // data type
2011 'https://ssh.mydocsportal.com',
2012 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2015 // Currently the "CMS Portal" supports WordPress. Other Content Management
2016 // Systems may be supported in the future.
2018 'gbl_portal_cms_enable' => array(
2019 xl('Enable CMS Portal'),
2020 'bool', // data type
2022 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2025 'gbl_portal_cms_address' => array(
2026 xl('CMS Portal Site Address'),
2027 'text', // data type
2028 'https://your_cms_site.com/',
2029 xl('URL for the WordPress site that supports the portal')
2032 'gbl_portal_cms_username' => array(
2033 xl('CMS Portal Username'),
2034 'text', // data type
2036 xl('Login name of WordPress user for portal access')
2039 'gbl_portal_cms_password' => array(
2040 xl('CMS Portal Password'),
2041 'text', // data type
2043 xl('Password for the above user')
2050 'Connectors' => array(
2052 'erx_enable' => array(
2053 xl('Enable NewCrop eRx Service'),
2056 xl('Enable NewCrop eRx Service.') +
' ' +
2057 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.')
2060 'erx_newcrop_path' => array(
2061 xl('NewCrop eRx Site Address'),
2063 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2064 xl('URL for NewCrop eRx Site Address.')
2067 'erx_newcrop_path_soap' => array(
2068 xl('NewCrop eRx Web Service Address'),
2070 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2071 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2074 'erx_soap_ttl_allergies' => array(
2075 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2078 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2081 'erx_soap_ttl_medications' => array(
2082 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2085 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2088 'erx_account_partner_name' => array(
2089 xl('NewCrop eRx Partner Name'),
2092 xl('Partner Name issued for NewCrop eRx service.')
2095 'erx_account_name' => array(
2096 xl('NewCrop eRx Name'),
2099 xl('Account Name issued for NewCrop eRx service.')
2102 'erx_account_password' => array(
2103 xl('NewCrop eRx Password'),
2106 xl('Account Password issued for NewCrop eRx service.')
2109 'erx_account_id' => array(
2110 xl('NewCrop eRx Account Id'),
2113 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2116 'erx_upload_active' => array(
2117 xl('Only upload active prescriptions'),
2120 xl('Only upload active prescriptions to NewCrop eRx.')
2123 'erx_import_status_message' => array(
2124 xl('Enable NewCrop eRx import status message'),
2127 xl('Enable import status message after visiting NewCrop eRx.')
2130 'erx_medication_display' => array(
2131 xl('Do not display NewCrop eRx Medications uploaded'),
2134 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2137 'erx_allergy_display' => array(
2138 xl('Do not display NewCrop eRx Allergy uploaded'),
2141 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2144 'erx_default_patient_country' => array(
2145 xl('NewCrop eRx Default Patient Country'),
2149 'CA' => xl('Canada'),
2150 'MX' => xl('Mexico'),
2153 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2156 'erx_debug_setting' => array(
2157 xl('NewCrop eRx Debug Setting'),
2160 1 => xl('Request Only'),
2161 2 => xl('Response Only'),
2162 3 => xl('Request & Response'),
2165 xl('Log all NewCrop eRx Requests and / or Responses.'),
2168 'phimail_enable' => array(
2169 xl('Enable phiMail Direct Messaging Service'),
2170 'bool', // data type
2172 xl('Enable phiMail Direct Messaging Service')
2175 'phimail_server_address' => array(
2176 xl('phiMail Server Address'),
2177 'text', // data type
2178 'https://phimail.example.com:32541',
2179 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2182 'phimail_username' => array(
2183 xl('phiMail Username'),
2184 'text', // data type
2186 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2189 'phimail_password' => array(
2190 xl('phiMail Password'),
2191 'pass', // data type
2193 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2196 'phimail_notify' => array(
2197 xl('phiMail notification user'),
2198 'text', // data type
2200 xl('This user will receive notification of new incoming Direct messages')
2203 'phimail_interval' => array(
2204 xl('phiMail Message Check Interval (minutes)'),
2207 xl('Interval between message checks (set to zero for manual checks only)')
2210 'phimail_ccd_enable' => array(
2211 xl('phiMail Allow CCD Send'),
2212 'bool', // data type
2214 xl('phiMail Allow CCD Send')
2217 'phimail_ccr_enable' => array(
2218 xl('phiMail Allow CCR Send'),
2219 'bool', // data type
2221 xl('phiMail Allow CCR Send')
2226 'rx_enable_DEA' => array(
2227 xl('Rx Enable DEA #'),
2228 'bool', // data type
2230 xl('Rx Enable DEA #')
2232 'rx_show_DEA' => array(
2233 xl('Rx Show DEA #'),
2234 'bool', // data type
2238 'rx_enable_NPI' => array(
2239 xl('Rx Enable NPI'),
2240 'bool', // data type
2244 'rx_show_NPI' => array(
2246 'bool', // data type
2250 'rx_enable_SLN' => array(
2251 xl('Rx Enable State Lic. #'),
2252 'bool', // data type
2254 xl('Rx Enable State Lic. #')
2256 'rx_show_SLN' => array(
2257 xl('Rx Show State Lic. #'),
2258 'bool', // data type
2260 xl('Rx Show State Lic. #')
2262 'rx_paper_size' => array(
2263 xl('Rx Paper Size'), // descriptive name
2265 'LETTER' => xl('Letter Paper Size'),
2266 'LEGAL' => xl('Legal Paper Size'),
2267 'FOLIO' => xl('Folio Paper Size'),
2268 'EXECUTIVE' => xl('Executive Paper Size'),
2269 '4A0' => ('4A0' . " " . xl('Paper Size')),
2270 '2A0' => ('2A0' . " " . xl('Paper Size')),
2271 'A0' => ('A0' . " " . xl('Paper Size')),
2272 'A1' => ('A1' . " " . xl('Paper Size')),
2273 'A2' => ('A2' . " " . xl('Paper Size')),
2274 'A3' => ('A3' . " " . xl('Paper Size')),
2275 'A4' => ('A4' . " " . xl('Paper Size')),
2276 'A5' => ('A5' . " " . xl('Paper Size')),
2277 'A6' => ('A6' . " " . xl('Paper Size')),
2278 'A7' => ('A7' . " " . xl('Paper Size')),
2279 'A8' => ('A8' . " " . xl('Paper Size')),
2280 'A9' => ('A9' . " " . xl('Paper Size')),
2281 'A10' => ('A10' . " " . xl('Paper Size')),
2282 'B0' => ('B0' . " " . xl('Paper Size')),
2283 'B1' => ('B1' . " " . xl('Paper Size')),
2284 'B2' => ('B2' . " " . xl('Paper Size')),
2285 'B3' => ('B3' . " " . xl('Paper Size')),
2286 'B4' => ('B4' . " " . xl('Paper Size')),
2287 'B5' => ('B5' . " " . xl('Paper Size')),
2288 'B6' => ('B6' . " " . xl('Paper Size')),
2289 'B7' => ('B7' . " " . xl('Paper Size')),
2290 'B8' => ('B8' . " " . xl('Paper Size')),
2291 'B9' => ('B9' . " " . xl('Paper Size')),
2292 'B10' => ('B10' . " " . xl('Paper Size')),
2293 'C0' => ('C0' . " " . xl('Paper Size')),
2294 'C1' => ('C1' . " " . xl('Paper Size')),
2295 'C2' => ('C2' . " " . xl('Paper Size')),
2296 'C3' => ('C3' . " " . xl('Paper Size')),
2297 'C4' => ('C4' . " " . xl('Paper Size')),
2298 'C5' => ('C5' . " " . xl('Paper Size')),
2299 'C6' => ('C6' . " " . xl('Paper Size')),
2300 'C7' => ('C7' . " " . xl('Paper Size')),
2301 'C8' => ('C8' . " " . xl('Paper Size')),
2302 'C9' => ('C9' . " " . xl('Paper Size')),
2303 'C10' => ('C10' . " " . xl('Paper Size')),
2304 'RA0' => ('RA0' . " " . xl('Paper Size')),
2305 'RA1' => ('RA1' . " " . xl('Paper Size')),
2306 'RA2' => ('RA2' . " " . xl('Paper Size')),
2307 'RA3' => ('RA3' . " " . xl('Paper Size')),
2308 'RA4' => ('RA4' . " " . xl('Paper Size')),
2309 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2310 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2311 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2312 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2313 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2315 'LETTER', // default = tree menu
2318 'rx_left_margin' => array(
2319 xl('Rx Left Margin (px)'),
2322 xl('Rx Left Margin (px)')
2324 'rx_right_margin' => array(
2325 xl('Rx Right Margin (px)'),
2328 xl('Rx Right Margin (px)')
2330 'rx_top_margin' => array(
2331 xl('Rx Top Margin (px)'),
2334 xl('Rx Top Margin (px)')
2336 'rx_bottom_margin' => array(
2337 xl('Rx Bottom Margin (px)'),
2340 xl('Rx Bottom Margin (px)')
2345 'pdf_layout' => array (
2348 'P' => xl('Portrait'),
2349 'L' => xl('Landscape')
2352 xl("Choose Layout Direction"),
2354 'pdf_language' => array (
2358 'af' => xl('Afrikaans'),
2360 'sq' => xl('Albanian'),
2361 'am' => xl('Amharic'),
2362 'ar' => xl('Arabic'),
2363 'an' => xl('Aragonese'),
2364 'hy' => xl('Armenian'),
2365 'as' => xl('Assamese'),
2366 'av' => xl('Avaric'),
2367 'ae' => xl('Avestan'),
2368 'ay' => xl('Aymara'),
2369 'az' => xl('Azerbaijani'),
2370 'bm' => xl('Bambara'),
2371 'ba' => xl('Bashkir'),
2372 'eu' => xl('Basque'),
2373 'be' => xl('Belarusian'),
2374 'bn' => xl('Bengali- Bangla'),
2375 'bh' => xl('Bihari'),
2376 'bi' => xl('Bislama'),
2377 'bs' => xl('Bosnian'),
2378 'br' => xl('Breton'),
2379 'bg' => xl('Bulgarian'),
2380 'my' => xl('Burmese'),
2381 'ca' => xl('Catalan- Valencian'),
2382 'ch' => xl('Chamorro'),
2383 'ce' => xl('Chechen'),
2384 'ny' => xl('Chichewa- Chewa- Nyanja'),
2385 'zh' => xl('Chinese'),
2386 'cv' => xl('Chuvash'),
2387 'kw' => xl('Cornish'),
2388 'co' => xl('Corsican'),
2390 'hr' => xl('Croatian'),
2391 'cs' => xl('Czech'),
2392 'da' => xl('Danish'),
2393 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2394 'nl' => xl('Dutch'),
2395 'dz' => xl('Dzongkha'),
2396 'en' => xl('English'),
2397 'eo' => xl('Esperanto'),
2398 'et' => xl('Estonian'),
2400 'fo' => xl('Faroese'),
2401 'fj' => xl('Fijian'),
2402 'fi' => xl('Finnish'),
2403 'fr' => xl('French'),
2404 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2405 'gl' => xl('Galician'),
2406 'ka' => xl('Georgian'),
2407 'de' => xl('German'),
2408 'el' => xl('Greek, Modern'),
2409 'gn' => xl('Guaraní'),
2410 'gu' => xl('Gujarati'),
2411 'ht' => xl('Haitian- Haitian Creole'),
2412 'ha' => xl('Hausa'),
2413 'he' => xl('Hebrew (modern)'),
2414 'hz' => xl('Herero'),
2415 'hi' => xl('Hindi'),
2416 'ho' => xl('Hiri Motu'),
2417 'hu' => xl('Hungarian'),
2418 'ia' => xl('Interlingua'),
2419 'id' => xl('Indonesian'),
2420 'ie' => xl('Interlingue'),
2421 'ga' => xl('Irish'),
2423 'ik' => xl('Inupiaq'),
2425 'is' => xl('Icelandic'),
2426 'it' => xl('Italian'),
2427 'iu' => xl('Inuktitut'),
2428 'ja' => xl('Japanese'),
2429 'jv' => xl('Javanese'),
2430 'kl' => xl('Kalaallisut, Greenlandic'),
2431 'kn' => xl('Kannada'),
2432 'kr' => xl('Kanuri'),
2433 'ks' => xl('Kashmiri'),
2434 'kk' => xl('Kazakh'),
2435 'km' => xl('Khmer'),
2436 'ki' => xl('Kikuyu, Gikuyu'),
2437 'rw' => xl('Kinyarwanda'),
2438 'ky' => xl('Kyrgyz'),
2440 'kg' => xl('Kongo'),
2441 'ko' => xl('Korean'),
2442 'ku' => xl('Kurdish'),
2443 'kj' => xl('Kwanyama, Kuanyama'),
2444 'la' => xl('Latin'),
2445 'lb' => xl('Luxembourgish, Letzeburgesch'),
2446 'lg' => xl('Ganda'),
2447 'li' => xl('Limburgish, Limburgan, Limburger'),
2448 'ln' => xl('Lingala'),
2450 'lt' => xl('Lithuanian'),
2451 'lu' => xl('Luba-Katanga'),
2452 'lv' => xl('Latvian'),
2454 'mk' => xl('Macedonian'),
2455 'mg' => xl('Malagasy'),
2456 'ms' => xl('Malay'),
2457 'ml' => xl('Malayalam'),
2458 'mt' => xl('Maltese'),
2459 'mi' => xl('Māori'),
2460 'mr' => xl('Marathi (Marāṭhī)'),
2461 'mh' => xl('Marshallese'),
2462 'mn' => xl('Mongolian'),
2463 'na' => xl('Nauru'),
2464 'nv' => xl('Navajo, Navaho'),
2465 'nb' => xl('Norwegian Bokmål'),
2466 'nd' => xl('North Ndebele'),
2467 'ne' => xl('Nepali'),
2468 'ng' => xl('Ndonga'),
2469 'nn' => xl('Norwegian Nynorsk'),
2470 'no' => xl('Norwegian'),
2471 'ii' => xl('Nuosu'),
2472 'nr' => xl('South Ndebele'),
2473 'oc' => xl('Occitan'),
2474 'oj' => xl('Ojibwe, Ojibwa'),
2475 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2476 'om' => xl('Oromo'),
2477 'or' => xl('Oriya'),
2478 'os' => xl('Ossetian, Ossetic'),
2479 'pa' => xl('Panjabi, Punjabi'),
2481 'fa' => xl('Persian (Farsi)'),
2482 'pl' => xl('Polish'),
2483 'ps' => xl('Pashto, Pushto'),
2484 'pt' => xl('Portuguese'),
2485 'qu' => xl('Quechua'),
2486 'rm' => xl('Romansh'),
2487 'rn' => xl('Kirundi'),
2488 'ro' => xl('Romanian'),
2489 'ru' => xl('Russian'),
2490 'sa' => xl('Sanskrit (Saṁskṛta)'),
2491 'sc' => xl('Sardinian'),
2492 'sd' => xl('Sindhi'),
2493 'se' => xl('Northern Sami'),
2494 'sm' => xl('Samoan'),
2495 'sg' => xl('Sango'),
2496 'sr' => xl('Serbian'),
2497 'gd' => xl('Scottish Gaelic- Gaelic'),
2498 'sn' => xl('Shona'),
2499 'si' => xl('Sinhala, Sinhalese'),
2500 'sk' => xl('Slovak'),
2501 'sl' => xl('Slovene'),
2502 'so' => xl('Somali'),
2503 'st' => xl('Southern Sotho'),
2504 'es' => xl('Spanish- Castilian'),
2505 'su' => xl('Sundanese'),
2506 'sw' => xl('Swahili'),
2507 'ss' => xl('Swati'),
2508 'sv' => xl('Swedish'),
2509 'ta' => xl('Tamil'),
2510 'te' => xl('Telugu'),
2511 'tg' => xl('Tajik'),
2513 'ti' => xl('Tigrinya'),
2514 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2515 'tk' => xl('Turkmen'),
2516 'tl' => xl('Tagalog'),
2517 'tn' => xl('Tswana'),
2518 'to' => xl('Tonga (Tonga Islands)'),
2519 'tr' => xl('Turkish'),
2520 'ts' => xl('Tsonga'),
2521 'tt' => xl('Tatar'),
2523 'ty' => xl('Tahitian'),
2524 'ug' => xl('Uyghur, Uighur'),
2525 'uk' => xl('Ukrainian'),
2527 'uz' => xl('Uzbek'),
2528 've' => xl('Venda'),
2529 'vi' => xl('Vietnamese'),
2530 'vo' => xl('Volapük'),
2531 'wa' => xl('Walloon'),
2532 'cy' => xl('Welsh'),
2533 'wo' => xl('Wolof'),
2534 'fy' => xl('Western Frisian'),
2535 'xh' => xl('Xhosa'),
2536 'yi' => xl('Yiddish'),
2537 'yo' => xl('Yoruba'),
2538 'za' => xl('Zhuang, Chuang'),
2541 'en', // default English
2542 xl('Choose PDF languange Preference'),
2544 'pdf_size' => array(
2545 xl('Paper Size'), // Descriptive Name
2547 'LETTER' => xl('Letter Paper Size'),
2548 'LEGAL' => xl('Legal Paper Size'),
2549 'FOLIO' => xl('Folio Paper Size'),
2550 'EXECUTIVE' => xl('Executive Paper Size'),
2551 '4A0' => ('4A0' . " " . xl('Paper Size')),
2552 '2A0' => ('2A0' . " " . xl('Paper Size')),
2553 'A0' => ('A0' . " " . xl('Paper Size')),
2554 'A1' => ('A1' . " " . xl('Paper Size')),
2555 'A2' => ('A2' . " " . xl('Paper Size')),
2556 'A3' => ('A3' . " " . xl('Paper Size')),
2557 'A4' => ('A4' . " " . xl('Paper Size')),
2558 'A5' => ('A5' . " " . xl('Paper Size')),
2559 'A6' => ('A6' . " " . xl('Paper Size')),
2560 'A7' => ('A7' . " " . xl('Paper Size')),
2561 'A8' => ('A8' . " " . xl('Paper Size')),
2562 'A9' => ('A9' . " " . xl('Paper Size')),
2563 'A10' => ('A10' . " " . xl('Paper Size')),
2564 'B0' => ('B0' . " " . xl('Paper Size')),
2565 'B1' => ('B1' . " " . xl('Paper Size')),
2566 'B2' => ('B2' . " " . xl('Paper Size')),
2567 'B3' => ('B3' . " " . xl('Paper Size')),
2568 'B4' => ('B4' . " " . xl('Paper Size')),
2569 'B5' => ('B5' . " " . xl('Paper Size')),
2570 'B6' => ('B6' . " " . xl('Paper Size')),
2571 'B7' => ('B7' . " " . xl('Paper Size')),
2572 'B8' => ('B8' . " " . xl('Paper Size')),
2573 'B9' => ('B9' . " " . xl('Paper Size')),
2574 'B10' => ('B10' . " " . xl('Paper Size')),
2575 'C0' => ('C0' . " " . xl('Paper Size')),
2576 'C1' => ('C1' . " " . xl('Paper Size')),
2577 'C2' => ('C2' . " " . xl('Paper Size')),
2578 'C3' => ('C3' . " " . xl('Paper Size')),
2579 'C4' => ('C4' . " " . xl('Paper Size')),
2580 'C5' => ('C5' . " " . xl('Paper Size')),
2581 'C6' => ('C6' . " " . xl('Paper Size')),
2582 'C7' => ('C7' . " " . xl('Paper Size')),
2583 'C8' => ('C8' . " " . xl('Paper Size')),
2584 'C9' => ('C9' . " " . xl('Paper Size')),
2585 'C10' => ('C10' . " " . xl('Paper Size')),
2586 'RA0' => ('RA0' . " " . xl('Paper Size')),
2587 'RA1' => ('RA1' . " " . xl('Paper Size')),
2588 'RA2' => ('RA2' . " " . xl('Paper Size')),
2589 'RA3' => ('RA3' . " " . xl('Paper Size')),
2590 'RA4' => ('RA4' . " " . xl('Paper Size')),
2591 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2592 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2593 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2594 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2595 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2598 xl('Choose Paper Size')
2600 'pdf_left_margin' => array(
2601 xl('Left Margin (mm)'),
2604 xl('Left Margin (mm)')
2606 'pdf_right_margin' => array(
2607 xl('Right Margin (mm)'),
2610 xl('Right Margin (mm)')
2612 'pdf_top_margin' => array(
2613 xl('Top Margin (mm)'),
2616 xl('Top Margin (mm)')
2618 'pdf_bottom_margin' => array(
2619 xl('Bottom Margin (px)'),
2622 xl('Bottom Margin (px)')
2624 'pdf_output' => array (
2627 'D' => xl('Download'),
2631 xl("Choose Download or Display Inline"),
2634 'chart_label_type' => array(
2635 xl('Patient Label Type'),
2643 xl('Avery Label type for printing patient labels from popups in left nav screen'),
2646 'barcode_label_type' => array(
2647 xl('Barcode Label Type'),
2661 '12' => 'datamatrix'
2663 '9', // default = None
2664 xl('Barcode type for printing barcode labels from popups in left nav screen.')
2667 'addr_label_type' => array(
2668 xl('Print Patient Address Label'),
2669 'bool', // data type
2670 '1', // default = false
2671 xl('Select to print patient address labels from popups in left nav screen.')