Added to allow employer tab to go away
[openemr.git] / library / globals.inc.php
blob3829f2f20cf0887d448d37eab15728334ebb653a
1 <?php
2 // Copyright (C) 2010 Rod Roark <rod@sunsetsystems.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 // $GLOBALS['print_command'] is the
10 // Print command for spooling to printers, used by statements.inc.php
11 // This is the command to be used for printing (without the filename).
12 // The word following "-P" should be the name of your printer. This
13 // example is designed for 8.5x11-inch paper with 1-inch margins,
14 // 10 CPI, 6 LPI, 65 columns, 54 lines per page.
16 // IF lpr services are installed on Windows this setting will be similar
17 // Otherwise configure it as needed (print /d:PRN) might be an option for Windows parallel printers
19 // Current supported languages: // Allow capture of term for translation:
20 // Albanian // xl('Albanian')
21 // Amharic // xl('Amharic')
22 // Arabic // xl('Arabic')
23 // Armenian // xl('Armenian')
24 // Bahasa Indonesia // xl('Bahasa Indonesia')
25 // Bengali // xl('Bengali')
26 // Chinese (Simplified) // xl('Chinese (Simplified)')
27 // Chinese (Traditional) // xl('Chinese (Traditional)')
28 // Czech // xl('Czech')
29 // Danish // xl('Danish')
30 // Dutch // xl('Dutch')
31 // English (Indian) // xl('English (Indian)')
32 // English (Standard) // xl('English (Standard)')
33 // Estonian // xl('Estonian')
34 // Finnish // xl('Finnish')
35 // French // xl('French (Standard)')
36 // French // xl('French (Canadian)')
37 // German // xl('German')
38 // Greek // xl('Greek')
39 // Hebrew // xl('Hebrew')
40 // Hindi // xl('Hindi')
41 // Hungarian // xl('Hungarian')
42 // Italian // xl('Italian')
43 // Japanese // xl('Japanese')
44 // Korean // xl('Korean')
45 // Lithuanian // xl('Lithuanian')
46 // Norwegian // xl('Norwegian')
47 // Persian // xl('Persian')
48 // Polish // xl('Polish')
49 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
50 // Portuguese (European) // xl('Portuguese (European)')
51 // Romanian // xl('Romanian')
52 // Russian // xl('Russian')
53 // Sinhala // xl('Sinhala')
54 // Slovak // xl('Slovak')
55 // Spanish (Latin American) // xl('Spanish (Latin American)')
56 // Spanish (Spain) // xl('Spanish (Spain)')
57 // Swedish // xl('Swedish')
58 // Turkish // xl('Turkish')
59 // Ukrainian // xl('Ukrainian')
60 // Vietnamese // xl('Vietnamese')
62 // OS-dependent stuff.
63 if (stristr(PHP_OS, 'WIN')) {
64 // MS Windows
65 $mysql_bin_dir = 'C:/xampp/mysql/bin';
66 $perl_bin_dir = 'C:/xampp/perl/bin';
67 $temporary_files_dir = 'C:/windows/temp';
68 $backup_log_dir = 'C:/windows/temp';
70 else {
71 // Everything else
72 $mysql_bin_dir = '/usr/bin';
73 $perl_bin_dir = '/usr/bin';
74 $temporary_files_dir = '/tmp';
75 $backup_log_dir = '/tmp';
78 // Language constant declarations:
79 // xl('Appearance')
80 // xl('Locale')
81 // xl('Features')
82 // xl('Calendar')
83 // xl('Security')
84 // xl('Notifications')
85 // xl('Miscellaneous')
87 // List of user specific tabs and globals
88 $USER_SPECIFIC_TABS = array('Appearance',
89 'Locale',
90 'Calendar',
91 'Connectors');
92 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
93 'concurrent_layout',
94 'css_header',
95 'gbl_pt_list_page_size',
96 'gbl_pt_list_new_window',
97 'units_of_measurement',
98 'us_weight_format',
99 'date_display_format',
100 'time_display_format',
101 'event_color',
102 'erx_import_status_message');
104 $GLOBALS_METADATA = array(
106 // Appearance Tab
108 'Appearance' => array(
110 'default_top_pane' => array(
111 xl('Main Top Pane Screen'), // descriptive name
112 array(
113 'main_info.php' => xl('Calendar Screen'),
114 '../new/new.php' => xl('Patient Search/Add Screen'),
116 'main_info.php', // default = calendar
117 xl('Type of screen layout')
120 'concurrent_layout' => array(
121 xl('Layout Style'), // descriptive name
122 array(
123 '0' => xl('Old style layout with no left menu'),
124 '1' => xl('Navigation menu consists of pairs of radio buttons'),
125 '2' => xl('Navigation menu is a tree view'),
126 '3' => xl('Navigation uses a sliding menu'),
128 '3', // default = tree menu
129 xl('Type of screen layout')
132 'default_encounter_view' => array(
133 xl('Default Encounter View'), // descriptive name
134 array(
135 '0' => xl('Clinical View'),
136 '1' => xl('Billing View'),
138 '0', // default = tree menu
139 xl('Choose your default encounter view')
142 'css_header' => array(
143 xl('Theme'),
144 'css',
145 'style_oemr.css',
146 xl('Pick a CSS theme.')
149 'gbl_nav_area_width' => array(
150 xl('Navigation Area Width'),
151 'num',
152 '150',
153 xl('Width in pixels of the left navigation frame.')
156 'openemr_name' => array(
157 xl('Application Title'),
158 'text',
159 'OpenEMR',
160 xl('Application name for login page and main window title.')
163 'full_new_patient_form' => array(
164 xl('New Patient Form'),
165 array(
166 '0' => xl('Old-style static form without search or duplication check'),
167 '1' => xl('All demographics fields, with search and duplication check'),
168 '2' => xl('Mandatory or specified fields only, search and dup check'),
169 '3' => xl('Mandatory or specified fields only, dup check, no search'),
171 '1', // default
172 xl('Style of form used for adding new patients')
175 'patient_search_results_style' => array(
176 xl('Patient Search Results Style'),
177 array(
178 '0' => xl('Encounter statistics'),
179 '1' => xl('Mandatory and specified fields'),
181 '0', // default
182 xl('Type of columns displayed for patient search results')
185 'gbl_tall_nav_area' => array(
186 xl('Tall Navigation Area'),
187 'bool', // data type
188 '0', // default = false
189 xl('Navigation area uses full height of frameset')
192 'gbl_nav_visit_forms' => array(
193 xl('Navigation Area Visit Forms'),
194 'bool', // data type
195 '1', // default = true
196 xl('Navigation area includes encounter forms')
199 'simplified_demographics' => array(
200 xl('Simplified Demographics'),
201 'bool', // data type
202 '0', // default = false
203 xl('Omit insurance and some other things from the demographics form')
206 'simplified_prescriptions' => array(
207 xl('Simplified Prescriptions'),
208 'bool', // data type
209 '0', // default = false
210 xl('Omit form, route and interval which then become part of dosage')
213 'simplified_copay' => array(
214 xl('Simplified Co-Pay'),
215 'bool', // data type
216 '0', // default = false
217 xl('Omit method of payment from the co-pay panel')
220 'use_charges_panel' => array(
221 xl('Use Charges Panel'),
222 'bool', // data type
223 '0', // default = false
224 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
227 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
228 'enable_fees_in_left_menu' => array(
229 xl('Enable Fees In Left Menu'),
230 'bool', // data type
231 '1', // default = true
232 xl('Enable Fees In Left Menu')
234 // EDI history 2012-09-13
235 'enable_edihistory_in_left_menu' => array(
236 xl('Enable EDI History In Left Menu'),
237 'bool', // data type
238 '1', // default = true
239 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
242 'online_support_link' => array(
243 xl('Online Support Link'),
244 'text', // data type
245 'http://open-emr.org/',
246 xl('URL for OpenEMR support.')
249 'encounter_page_size' => array(
250 xl('Encounter Page Size'),
251 array(
252 '0' => xl('Show All'),
253 '5' => '5',
254 '10' => '10',
255 '15' => '15',
256 '20' => '20',
257 '25' => '25',
258 '50' => '50',
260 '20',
261 xl('Number of encounters to display per page.')
264 'gbl_pt_list_page_size' => array(
265 xl('Patient List Page Size'),
266 array(
267 '10' => '10',
268 '25' => '25',
269 '50' => '50',
270 '100' => '100',
272 '10',
273 xl('Number of patients to display per page in the patient list.')
276 'gbl_pt_list_new_window' => array(
277 xl('Patient List New Window'),
278 'bool', // data type
279 '0', // default = false
280 xl('Default state of New Window checkbox in the patient list.')
283 'gbl_vitals_options' => array(
284 xl('Vitals Form Options'),
285 array(
286 '0' => xl('Standard'),
287 '1' => xl('Omit circumferences'),
289 '0', // default
290 xl('Special treatment for the Vitals form')
295 // Locale Tab
297 'Locale' => array(
299 'language_default' => array(
300 xl('Default Language'),
301 'lang', // data type
302 'English (Standard)', // default = english
303 xl('Default language if no other is allowed or chosen.')
306 'language_menu_showall' => array(
307 xl('All Languages Allowed'),
308 'bool', // data type
309 '1', // default = true
310 xl('Allow all available languages as choices on menu at login.')
313 'language_menu_other' => array(
314 xl('Allowed Languages'),
315 'm_lang', // data type
316 '', // default = none
317 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
320 'allow_debug_language' => array(
321 xl('Allow Debugging Language'),
322 'bool', // data type
323 '1', // default = true during development and false for production releases
324 xl('This will allow selection of the debugging (\'dummy\') language.')
327 'translate_layout' => array(
328 xl('Translate Layouts'),
329 'bool', // data type
330 '1', // default = true
331 xl('Is text from form layouts to be translated?')
334 'translate_lists' => array(
335 xl('Translate Lists'),
336 'bool', // data type
337 '1', // default = true
338 xl('Is text from lists to be translated?')
341 'translate_gacl_groups' => array(
342 xl('Translate Access Control Groups'),
343 'bool', // data type
344 '1', // default = true
345 xl('Are access control group names to be translated?')
348 'translate_form_titles' => array(
349 xl('Translate Patient Note Titles'),
350 'bool', // data type
351 '1', // default = true
352 xl('Are patient note titles to be translated?')
355 'translate_document_categories' => array(
356 xl('Translate Document Categories'),
357 'bool', // data type
358 '1', // default = true
359 xl('Are document category names to be translated?')
362 'translate_appt_categories' => array(
363 xl('Translate Appointment Categories'),
364 'bool', // data type
365 '1', // default = true
366 xl('Are appointment category names to be translated?')
369 'units_of_measurement' => array(
370 xl('Units for Visit Forms'),
371 array(
372 '1' => xl('Show both US and metric (main unit is US)'),
373 '2' => xl('Show both US and metric (main unit is metric)'),
374 '3' => xl('Show US only'),
375 '4' => xl('Show metric only'),
377 '1', // default = Both/US
378 xl('Applies to the Vitals form and Growth Chart')
381 'us_weight_format' => array(
382 xl('Display Format for US Weights'),
383 array(
384 '1'=>xl('Show pounds as decimal value'),
385 '2'=>xl('Show pounds and ounces')
387 '1',
388 xl('Applies to Vitals form')
391 'disable_deprecated_metrics_form' => array(
392 xl('Disable Old Metric Vitals Form'),
393 'bool', // data type
394 '1', // default = true
395 xl('This was the older metric-only Vitals form, now deprecated.')
398 'phone_country_code' => array(
399 xl('Telephone Country Code'),
400 'num',
401 '1', // default = North America
402 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
405 'date_display_format' => array(
406 xl('Date Display Format'),
407 array(
408 '0' => xl('YYYY-MM-DD'),
409 '1' => xl('MM/DD/YYYY'),
410 '2' => xl('DD/MM/YYYY'),
412 '0',
413 xl('Format used to display most dates.')
416 'time_display_format' => array(
417 xl('Time Display Format'),
418 array(
419 '0' => xl('24 hr'),
420 '1' => xl('12 hr'),
422 '0',
423 xl('Format used to display most times.')
426 'currency_decimals' => array(
427 xl('Currency Decimal Places'),
428 array(
429 '0' => xl('0'),
430 '1' => xl('1'),
431 '2' => xl('2'),
433 '2',
434 xl('Number of digits after decimal point for currency, usually 0 or 2.')
437 'currency_dec_point' => array(
438 xl('Currency Decimal Point Symbol'),
439 array(
440 '.' => xl('Period'),
441 ',' => xl('Comma'),
443 '.',
444 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
447 'currency_thousands_sep' => array(
448 xl('Currency Thousands Separator'),
449 array(
450 ',' => xl('Comma'),
451 '.' => xl('Period'),
452 ' ' => xl('Space'),
453 '' => xl('None'),
455 ',',
456 xl('Symbol used to separate thousands for currency.')
459 'gbl_currency_symbol' => array(
460 xl('Currency Designator'),
461 'text', // data type
462 '$', // default
463 xl('Code or symbol to indicate currency')
465 'age_display_format'=>array(xl('Age Display Format'),
466 array(
467 '0'=>xl('Years or months'),
468 '1'=>xl('Years, months and days')
470 '0',
471 xl('Format for age display')
473 'age_display_limit' => array(
474 xl('Age in Years for Display Format Change'),
475 'num',
476 '3',
477 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
481 // Features Tab
483 'Features' => array(
485 'specific_application' => array(
486 xl('Specific Application'),
487 array(
488 '0' => xl('None'),
489 '1' => xl('Athletic team'),
490 '2' => xl('IPPF'),
491 '3' => xl('Weight loss clinic'),
493 '0', // default
494 xl('Indicator for specialized usage')
497 'inhouse_pharmacy' => array(
498 xl('Drugs and Products'),
499 array(
500 '0' => xl('Do not inventory and sell any products'),
501 '1' => xl('Inventory and sell drugs only'),
502 '2' => xl('Inventory and sell both drugs and non-drug products'),
503 '3' => xl('Products but no prescription drugs and no templates'),
505 '0', // default
506 xl('Option to support inventory and sales of products')
509 'disable_chart_tracker' => array(
510 xl('Disable Chart Tracker'),
511 'bool', // data type
512 '0', // default = false
513 xl('Removes the Chart Tracker feature')
516 'disable_phpmyadmin_link' => array(
517 xl('Disable phpMyAdmin'),
518 'bool', // data type
519 '0', // default = false
520 xl('Removes support for phpMyAdmin')
523 'disable_immunizations' => array(
524 xl('Disable Immunizations'),
525 'bool', // data type
526 '0', // default = false
527 xl('Removes support for immunizations')
530 'disable_prescriptions' => array(
531 xl('Disable Prescriptions'),
532 'bool', // data type
533 '0', // default = false
534 xl('Removes support for prescriptions')
537 'omit_employers' => array(
538 xl('Omit Employers'),
539 'bool', // data type
540 '0', // default = false
541 xl('Omit employer information in patient demographics')
544 'select_multi_providers' => array(
545 xl('Support Multi-Provider Events'),
546 'bool', // data type
547 '0', // default = false
548 xl('Support calendar events that apply to multiple providers')
551 'disable_non_default_groups' => array(
552 xl('Disable User Groups'),
553 'bool', // data type
554 '1', // default = true
555 xl('Normally this should be checked. Not related to access control.')
558 'ignore_pnotes_authorization' => array(
559 xl('Skip Authorization of Patient Notes'),
560 'bool', // data type
561 '1', // default = true
562 xl('Do not require patient notes to be authorized')
565 'support_encounter_claims' => array(
566 xl('Allow Encounter Claims'),
567 'bool', // data type
568 '0', // default = false
569 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
572 'advance_directives_warning' => array(
573 xl('Advance Directives Warning'),
574 'bool', // data type
575 '0', // default = false
576 xl('Display advance directives in the demographics page.')
579 'configuration_import_export' => array(
580 xl('Configuration Export/Import'),
581 'bool', // data type
582 '0', // default = false
583 xl('Support export/import of configuration data via the Backup page.')
586 'restrict_user_facility' => array(
587 xl('Restrict Users to Facilities'),
588 'bool', // data type
589 '0', // default
590 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
593 'set_facility_cookie' => array(
594 xl('Remember Selected Facility'),
595 'bool', // data type
596 '0', // default
597 xl('Set a facility cookie to remember the selected facility between logins.')
600 'receipts_by_provider' => array(
601 xl('Print Receipts by Provider'),
602 'bool',
603 '0', // default
604 xl('Causes Receipts to Print Encounter/Primary Provider Info')
607 'discount_by_money' => array(
608 xl('Discounts as Monetary Amounts'),
609 'bool', // data type
610 '1', // default = true
611 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
614 'gbl_visit_referral_source' => array(
615 xl('Referral Source for Encounters'),
616 'bool', // data type
617 '0', // default = false
618 xl('A referral source may be specified for each visit.')
621 'gbl_mask_patient_id' => array(
622 xl('Mask for Patient IDs'),
623 'text', // data type
624 '', // default
625 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
628 'gbl_mask_invoice_number' => array(
629 xl('Mask for Invoice Numbers'),
630 'text', // data type
631 '', // default
632 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
635 'gbl_mask_product_id' => array(
636 xl('Mask for Product IDs'),
637 'text', // data type
638 '', // default
639 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
642 'force_billing_widget_open' => array(
643 xl('Force Billing Widget Open'),
644 'bool', // data type
645 '0', // default = false
646 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
649 'num_past_appointments_to_show' => array(
650 xl('Past Appointment Display Widget'),
651 'num', // data type
652 '0', // default = false
653 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)')
656 'activate_ccr_ccd_report' => array(
657 xl('Activate CCR/CCD Reporting'),
658 'bool', // data type
659 '1', // default = true
660 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
663 'hide_document_encryption' => array(
664 xl('Hide Encryption/Decryption Options In Document Management'),
665 'bool', // data type
666 '1', // default = true
667 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
670 'use_custom_immun_list' => array(
671 xl('Use Custom Immunization List'),
672 'bool', // data type
673 '0', // default = true
674 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
677 'cms_1500' => array(
678 xl('CMS 1500 Paper Form Format'),
679 array(
680 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
681 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
683 '0', // default
684 xl('This specifies which revision of the form the billing module should generate')
687 'cms_1500_box_31_format' => array(
688 xl('CMS 1500: Box 31 Format'),
689 array(
690 '0' => xl('Signature on File'),
691 '1' => xl('Firstname Lastname'),
692 '2' => xl('None'),
694 '0', // default
695 xl('This specifies whether to include date in Box 31.')
699 'cms_1500_box_31_date' => array(
700 xl('CMS 1500: Date in Box 31 (Signature)'),
701 array(
702 '0' => xl('None'),
703 '1' => xl('Date of Service'),
704 '2' => xl('Today'),
706 '0', // default
707 xl('This specifies whether to include date in Box 31.')
710 'amendments' => array (
711 xl('Amendments'),
712 'bool', // data type
713 '1', // default = true
714 xl('Enable amendments feature')
717 'use_custom_daysheet' => array(
718 xl('Use Custom End of Day Report'),
719 array(
720 '0' => xl('None'),
721 '1' => xl('Print End of Day Report 1'),
722 '2' => xl('Print End of Day Report 2'),
723 '3' => xl('Print End of Day Report 3'),
724 ), // data type
725 '1', // default = Print End of Day Report 1
726 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
729 'daysheet_provider_totals' => array(
730 xl('End of Day by Provider or allow Totals Only'),
731 array(
732 '0' => xl('Provider'),
733 '1' => xl('Totals Only'),
735 '1', // default
736 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
740 // E-Sign Tab
742 'E-Sign' => array(
744 'esign_all' => array(
745 xl('Allows E-Sign on the entire encounter'),
746 'bool', // data type
747 '0', // default = false
748 xl('This will enable signing an entire encounter, rather than individual forms')
751 'lock_esign_all' => array(
752 xl('Lock e-signed encounters and their forms'),
753 'bool', // data type
754 '0', // default = false
755 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
758 'esign_individual' => array(
759 xl('Allows E-Signing Individual Forms'),
760 'bool', // data type
761 '1', // default = false
762 xl('This will enable signing individual forms separately')
765 'lock_esign_individual' => array(
766 xl('Lock an e-signed form individually'),
767 'bool', // data type
768 '1', // default = false
769 xl('This will disable the Edit button on any form that is e-signed')
772 'esign_lock_toggle' => array(
773 xl('Enable lock toggle'),
774 'bool', // data type
775 '0', // default = false
776 xl('This will give the user the option to lock (separate locking and signing)')
779 'esign_report_hide_empty_sig' => array(
780 xl('Hide Empty E-Sign Logs On Report'),
781 'bool', // data type
782 '1', // default = false
783 xl('This will hide empty e-sign logs on the patient report')
787 //Documents Tab
788 'Documents' => array(
789 'document_storage_method' => array(
790 xl('Document Storage Method'),
791 array(
792 '0' => xl('Hard Disk'),
793 '1' => xl('CouchDB')
795 '0', // default
796 xl('Option to save method of document storage.')
798 'couchdb_host' => array(
799 xl('CouchDB HostName'),
800 'text',
801 'localhost',
802 xl('CouchDB host'),
804 'couchdb_user' => array(
805 xl('CouchDB UserName'),
806 'text',
808 xl('Username to connect to CouchDB'),
810 'couchdb_pass' => array(
811 xl('CouchDB Password'),
812 'text',
814 xl('Password to connect to CouchDB'),
816 'couchdb_port' => array(
817 xl('CouchDB Port'),
818 'text',
819 '5984',
820 xl('CouchDB port'),
822 'couchdb_dbase' => array(
823 xl('CouchDB Database'),
824 'text',
826 xl('CouchDB database name'),
828 'couchdb_log' => array(
829 xl('CouchDB Log Enable'),
830 'bool',
831 '0',
832 xl('Enable log for document uploads/downloads to CouchDB'),
835 'patient_id_category_name' => array(
836 xl('Patient ID Category Name'),
837 'text', // data type
838 'Patient ID card', // default
839 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
842 'patient_photo_category_name' => array(
843 xl('Patient Photo Category Name'),
844 'text', // data type
845 'Patient Photograph', // default
846 xl('Optional category name for photo images that can be viewed from the patient summary page.')
849 'lab_results_category_name' => array(
850 xl('Lab Results Category Name'),
851 'text', // data type
852 'Lab Report', // default
853 xl('Document category name for storage of electronically received lab results.')
858 // Calendar Tab
860 'Calendar' => array(
862 'disable_calendar' => array(
863 xl('Disable Calendar'),
864 'bool', // data type
865 '0', // default
866 xl('Do not display the calendar.')
869 'schedule_start' => array(
870 xl('Calendar Starting Hour'),
871 'hour',
872 '8', // default
873 xl('Beginning hour of day for calendar events.')
876 'schedule_end' => array(
877 xl('Calendar Ending Hour'),
878 'hour',
879 '17', // default
880 xl('Ending hour of day for calendar events.')
883 'calendar_interval' => array(
884 xl('Calendar Interval'),
885 array(
886 '5' => '5',
887 '10' => '10',
888 '15' => '15',
889 '20' => '20',
890 '30' => '30',
891 '60' => '60',
893 '15', // default
894 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
897 'calendar_appt_style' => array(
898 xl('Appointment Display Style'),
899 array(
900 '1' => 'Last name',
901 '2' => 'Last name, first name',
902 '3' => 'Last name, first name (title)',
903 '4' => 'Last name, first name (title: description)',
905 '2', // default
906 xl('This determines how appointments display on the calendar.')
909 'docs_see_entire_calendar' => array(
910 xl('Providers See Entire Calendar'),
911 'bool', // data type
912 '0', // default
913 xl('Check this if you want providers to see all appointments by default and not just their own.')
916 'auto_create_new_encounters' => array(
917 xl('Auto-Create New Encounters'),
918 'bool', // data type
919 '1', // default
920 xl('Automatically create a new encounter when appointment status is set to "@" (arrived).')
923 'event_color' => array(
924 xl('Appointment/Event Color'),
925 array(
926 '1' => 'Category Color Schema',
927 '2' => 'Facility Color Schema',
928 ), // data type
929 '1', // default
930 xl('This determines which color schema used for appointment')
935 // Security Tab
937 'Security' => array(
939 'timeout' => array(
940 xl('Idle Session Timeout Seconds'),
941 'num', // data type
942 '7200', // default
943 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
946 'secure_password' => array(
947 xl('Require Strong Passwords'),
948 'bool', // data type
949 '0', // default
950 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
953 'password_history' => array(
954 xl('Require Unique Passwords'),
955 'bool', // data type
956 '0', // default
957 xl('Means none of last three passwords are allowed when changing a password.')
959 'password_compatibility' => array(
960 xl('Permit unsalted passwords'),
961 'bool', // data type
962 '1', // default
963 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')
966 'password_expiration_days' => array(
967 xl('Default Password Expiration Days'),
968 'num', // data type
969 '0', // default
970 xl('Default password expiration period in days. 0 means this feature is disabled.')
973 'password_grace_time' => array(
974 xl('Password Expiration Grace Period'),
975 'num', // data type
976 '0', // default
977 xl('Period in days where a user may login with an expired password.')
980 'is_client_ssl_enabled' => array(
981 xl('Enable Client SSL'),
982 'bool', // data type
983 '0', // default
984 xl('Enable client SSL certificate authentication.')
987 'certificate_authority_crt' => array(
988 xl('Path to CA Certificate File'),
989 'text', // data type
990 '', // default
991 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
994 'certificate_authority_key' => array(
995 xl('Path to CA Key File'),
996 'text', // data type
997 '', // default
998 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1001 'client_certificate_valid_in_days' => array(
1002 xl('Client Certificate Expiration Days'),
1003 'num', // data type
1004 '365', // default
1005 xl('Number of days that the client certificate is valid.')
1008 'Emergency_Login_email_id' => array(
1009 xl('Emergency Login Email Address'),
1010 'text', // data type
1011 '', // default
1012 xl('Email address, if any, to receive emergency login user activation messages.')
1017 // Notifications Tab
1019 'Notifications' => array(
1021 'patient_reminder_sender_name' => array(
1022 xl('Patient Reminder Sender Name'),
1023 'text', // data type
1024 '', // default
1025 xl('Name of the sender for patient reminders.')
1028 'patient_reminder_sender_email' => array(
1029 xl('Patient Reminder Sender Email'),
1030 'text', // data type
1031 '', // default
1032 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.')
1035 'practice_return_email_path' => array(
1036 xl('Notification Email Address'),
1037 'text', // data type
1038 '', // default
1039 xl('Email address, if any, to receive administrative notifications.')
1042 'EMAIL_METHOD' => array(
1043 xl('Email Transport Method'),
1044 array(
1045 'PHPMAIL' => 'PHPMAIL',
1046 'SENDMAIL' => 'SENDMAIL',
1047 'SMTP' => 'SMTP',
1049 'SMTP', // default
1050 xl('Method for sending outgoing email.')
1053 'SMTP_HOST' => array(
1054 xl('SMTP Server Hostname'),
1055 'text', // data type
1056 'localhost', // default
1057 xl('If SMTP is used, the server`s hostname or IP address.')
1060 'SMTP_PORT' => array(
1061 xl('SMTP Server Port Number'),
1062 'num', // data type
1063 '25', // default
1064 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1067 'SMTP_USER' => array(
1068 xl('SMTP User for Authentication'),
1069 'text', // data type
1070 '', // default
1071 xl('Must be empty if SMTP authentication is not used.')
1074 'SMTP_PASS' => array(
1075 xl('SMTP Password for Authentication'),
1076 'text', // data type
1077 '', // default
1078 xl('Must be empty if SMTP authentication is not used.')
1081 'EMAIL_NOTIFICATION_HOUR' => array(
1082 xl('Email Notification Hours'),
1083 'num', // data type
1084 '50', // default
1085 xl('Number of hours in advance to send email notifications.')
1088 'SMS_NOTIFICATION_HOUR' => array(
1089 xl('SMS Notification Hours'),
1090 'num', // data type
1091 '50', // default
1092 xl('Number of hours in advance to send SMS notifications.')
1095 'SMS_GATEWAY_USENAME' => array(
1096 xl('SMS Gateway Username'),
1097 'text', // data type
1098 '', // default
1099 xl('Username for SMS Gateway.')
1102 'SMS_GATEWAY_PASSWORD' => array(
1103 xl('SMS Gateway Password'),
1104 'text', // data type
1105 '', // default
1106 xl('Password for SMS Gateway.')
1109 'SMS_GATEWAY_APIKEY' => array(
1110 xl('SMS Gateway API Key'),
1111 'text', // data type
1112 '', // default
1113 xl('API key for SMS Gateway.')
1116 'phone_notification_hour' => array(
1117 xl('Phone Notification Hour'),
1118 'num', // data type
1119 '50', // default
1120 xl('Number of hours in advance to send Phone notification.')
1123 'phone_gateway_username' => array(
1124 xl('Phone Gateway Username'),
1125 'text', // data type
1126 '', // default
1127 xl('Username for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
1130 'phone_gateway_password' => array(
1131 xl('Phone Gateway Password'),
1132 'text', // data type
1133 '', // default
1134 xl('Password for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
1137 'phone_gateway_url' => array(
1138 xl('Phone Gateway URL'),
1139 'text', // data type
1140 '', // default
1141 xl('URL for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
1146 // CDR (Clinical Decision Rules)
1148 'CDR' => array(
1150 'enable_cdr' => array(
1151 xl('Enable Clinical Decisions Rules (CDR)'),
1152 'bool', // data type
1153 '1', // default
1154 xl('Enable Clinical Decisions Rules (CDR)')
1157 'enable_cdr_crw' => array(
1158 xl('Enable Clinical Reminder Widget'),
1159 'bool', // data type
1160 '1', // default
1161 xl('Enable Clinical Reminder Widget')
1164 'enable_cdr_crp' => array(
1165 xl('Enable Clinical Reminder Popup'),
1166 'bool', // data type
1167 '1', // default
1168 xl('Enable Clinical Reminder Popup')
1171 'enable_cdr_prw' => array(
1172 xl('Enable Patient Reminder Widget'),
1173 'bool', // data type
1174 '1', // default
1175 xl('Enable Patient Reminder Widget')
1178 'enable_cqm' => array(
1179 xl('Enable CQM Reporting'),
1180 'bool', // data type
1181 '1', // default
1182 xl('Enable Clinical Quality Measure (CQM) Reporting')
1185 'pqri_registry_name' => array(
1186 xl('PQRI Registry Name'),
1187 'text', // data type
1188 'Model Registry', // default
1189 xl('PQRI Registry Name')
1192 'pqri_registry_id' => array(
1193 xl('PQRI Registry ID'),
1194 'text', // data type
1195 '125789123', // default
1196 xl('PQRI Registry ID')
1199 'enable_amc' => array(
1200 xl('Enable AMC Reporting'),
1201 'bool', // data type
1202 '1', // default
1203 xl('Enable Automated Measure Calculations (AMC) Reporting')
1206 'enable_amc_prompting' => array(
1207 xl('Enable AMC Prompting'),
1208 'bool', // data type
1209 '1', // default
1210 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1213 'enable_amc_tracking' => array(
1214 xl('Enable AMC Tracking'),
1215 'bool', // data type
1216 '1', // default
1217 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
1220 'cdr_report_nice' => array(
1221 xl('CDR Reports Processing Priority'),
1222 array(
1223 '' => xl('Default Priority'),
1224 '5' => xl('Moderate Priority'),
1225 '10' => xl('Moderate/Low Priority'),
1226 '15' => xl('Low Priority'),
1227 '20' => xl('Lowest Priority')
1229 '', // default
1230 xl('Set processing priority for CDR engine based reports.')
1233 'pat_rem_clin_nice' => array(
1234 xl('Patient Reminder Creation Processing Priority'),
1235 array(
1236 '' => xl('Default Priority'),
1237 '5' => xl('Moderate Priority'),
1238 '10' => xl('Moderate/Low Priority'),
1239 '15' => xl('Low Priority'),
1240 '20' => xl('Lowest Priority')
1242 '', // default
1243 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
1246 'report_itemizing_standard' => array(
1247 xl('Enable Standard Report Itemization'),
1248 'bool', // data type
1249 '1', // default
1250 xl('Enable Itemization of Standard Clinical Rules Reports')
1253 'report_itemizing_cqm' => array(
1254 xl('Enable CQM Report Itemization'),
1255 'bool', // data type
1256 '1', // default
1257 xl('Enable Itemization of CQM Reports')
1260 'report_itemizing_amc' => array(
1261 xl('Enable AMC Report Itemization'),
1262 'bool', // data type
1263 '1', // default
1264 xl('Enable Itemization of AMC Reports')
1269 // Logging
1271 'Logging' => array(
1273 'enable_auditlog' => array(
1274 xl('Enable Audit Logging'),
1275 'bool', // data type
1276 '1', // default
1277 xl('Enable Audit Logging')
1280 'audit_events_patient-record' => array(
1281 xl('Audit Logging Patient Record'),
1282 'bool', // data type
1283 '1', // default
1284 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1287 'audit_events_scheduling' => array(
1288 xl('Audit Logging Scheduling'),
1289 'bool', // data type
1290 '1', // default
1291 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1294 'audit_events_order' => array(
1295 xl('Audit Logging Order'),
1296 'bool', // data type
1297 '1', // default
1298 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1301 'audit_events_security-administration' => array(
1302 xl('Audit Logging Security Administration'),
1303 'bool', // data type
1304 '1', // default
1305 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1308 'audit_events_backup' => array(
1309 xl('Audit Logging Backups'),
1310 'bool', // data type
1311 '1', // default
1312 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1315 'audit_events_other' => array(
1316 xl('Audit Logging Miscellaneous'),
1317 'bool', // data type
1318 '1', // default
1319 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1322 'audit_events_query' => array(
1323 xl('Audit Logging SELECT Query'),
1324 'bool', // data type
1325 '0', // default
1326 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1329 'audit_events_cdr' => array(
1330 xl('Audit CDR Engine Queries'),
1331 'bool', // data type
1332 '0', // default
1333 xl('Enable logging of CDR Engine Queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1336 'enable_atna_audit' => array(
1337 xl('Enable ATNA Auditing'),
1338 'bool', // data type
1339 '0', // default
1340 xl('Enable Audit Trail and Node Authentication (ATNA).')
1343 'atna_audit_host' => array(
1344 xl('ATNA audit host'),
1345 'text', // data type
1346 '', // default
1347 xl('The hostname of the ATNA audit repository machine.')
1350 'atna_audit_port' => array(
1351 xl('ATNA audit port'),
1352 'text', // data type
1353 '6514', // default
1354 xl('Listening port of the RFC 5425 TLS syslog server.')
1357 'atna_audit_localcert' => array(
1358 xl('ATNA audit local certificate'),
1359 'text', // data type
1360 '', // default
1361 xl('Certificate to send to RFC 5425 TLS syslog server.')
1364 'atna_audit_cacert' => array(
1365 xl('ATNA audit CA certificate'),
1366 'text', // data type
1367 '', // default
1368 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
1371 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
1372 'enable_auditlog_encryption' => array(
1373 xl('Enable Audit Log Encryption'),
1374 'bool', // data type
1375 '0', // default
1376 xl('Enable Audit Log Encryption')
1379 'billing_log_option' => array(
1380 xl('Billing Log Option'),
1381 array(
1382 '1' => xl('Billing Log Append'),
1383 '2' => xl('Billing Log Overwrite')
1385 '1', // default
1386 xl('Billing log setting to append or overwrite the log file.')
1391 // Miscellaneous Tab
1393 'Miscellaneous' => array(
1395 'mysql_bin_dir' => array(
1396 xl('Path to MySQL Binaries'),
1397 'text', // data type
1398 $mysql_bin_dir, // default
1399 xl('Full path to directory containing MySQL executables.')
1402 'perl_bin_dir' => array(
1403 xl('Path to Perl Binaries'),
1404 'text', // data type
1405 $perl_bin_dir, // default
1406 xl('Full path to directory containing Perl executables.')
1409 'temporary_files_dir' => array(
1410 xl('Path to Temporary Files'),
1411 'text', // data type
1412 $temporary_files_dir, // default
1413 xl('Full path to directory used for temporary files.')
1416 'backup_log_dir' => array(
1417 xl('Path for Event Log Backup'),
1418 'text', // data type
1419 $backup_log_dir, // default
1420 xl('Full path to directory for event log backup.')
1423 'state_data_type' => array(
1424 xl('State Data Type'),
1425 array(
1426 '2' => xl('Text field'),
1427 '1' => xl('Single-selection list'),
1428 '26' => xl('Single-selection list with ability to add to the list'),
1430 '26', // default
1431 xl('Field type to use for employer or subscriber state in demographics.')
1434 'state_list' => array(
1435 xl('State list'),
1436 'text', // data type
1437 'state', // default
1438 xl('List used by above State Data Type option.')
1441 'state_custom_addlist_widget' => array(
1442 xl('State List Widget Custom Fields'),
1443 'bool', // data type
1444 '1', // default
1445 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
1448 'country_data_type' => array(
1449 xl('Country Data Type'),
1450 array(
1451 '2' => xl('Text field'),
1452 '1' => xl('Single-selection list'),
1453 '26' => xl('Single-selection list with ability to add to the list'),
1455 '26', // default
1456 xl('Field type to use for employer or subscriber country in demographics.')
1459 'country_list' => array(
1460 xl('Country list'),
1461 'text', // data type
1462 'country', // default
1463 xl('List used by above Country Data Type option.')
1466 'print_command' => array(
1467 xl('Print Command'),
1468 'text', // data type
1469 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
1470 xl('Shell command for printing from the server.')
1473 'default_chief_complaint' => array(
1474 xl('Default Reason for Visit'),
1475 'text', // data type
1477 xl('You may put text here as the default complaint in the New Patient Encounter form.')
1480 'default_new_encounter_form' => array(
1481 xl('Default Encounter Form ID'),
1482 'text', // data type
1484 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
1487 'MedicareReferrerIsRenderer' => array(
1488 xl('Medicare Referrer Is Renderer'),
1489 'bool', // data type
1490 '0', // default = true
1491 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
1494 'post_to_date_benchmark' => array(
1495 xl('Financial Close Date (yyyy-mm-dd)'),
1496 'text', // data type
1497 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
1498 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
1501 'enable_hylafax' => array(
1502 xl('Enable Hylafax Support'),
1503 'bool', // data type
1504 '0', // default
1505 xl('Enable Hylafax Support')
1508 'hylafax_server' => array(
1509 xl('Hylafax Server'),
1510 'text', // data type
1511 'localhost', // default
1512 xl('Hylafax server hostname.')
1515 'hylafax_basedir' => array(
1516 xl('Hylafax Directory'),
1517 'text', // data type
1518 '/var/spool/fax', // default
1519 xl('Location where Hylafax stores faxes.')
1522 'hylafax_enscript' => array(
1523 xl('Hylafax Enscript Command'),
1524 'text', // data type
1525 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
1526 xl('Enscript command used by Hylafax.')
1529 'enable_scanner' => array(
1530 xl('Enable Scanner Support'),
1531 'bool', // data type
1532 '0', // default
1533 xl('Enable Scanner Support')
1536 'scanner_output_directory' => array(
1537 xl('Scanner Directory'),
1538 'text', // data type
1539 '/mnt/scan_docs', // default
1540 xl('Location where scans are stored.')
1545 // Portal Tab
1547 'Portal' => array(
1549 'portal_onsite_enable' => array(
1550 xl('Enable Onsite Patient Portal'),
1551 'bool', // data type
1552 '0',
1553 xl('Enable Onsite Patient Portal.')
1556 'portal_onsite_address' => array(
1557 xl('Onsite Patient Portal Site Address'),
1558 'text', // data type
1559 'https://your_web_site.com/openemr/patients',
1560 xl('Website link for the Onsite Patient Portal.')
1563 'portal_offsite_enable' => array(
1564 xl('Enable Offsite Patient Portal'),
1565 'bool', // data type
1566 '0',
1567 xl('Enable Offsite Patient Portal.')
1570 'portal_offsite_providerid' => array(
1571 xl('Offsite Patient Portal Provider ID'),
1572 'text', // data type
1574 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
1577 'portal_offsite_username' => array(
1578 xl('Offsite Patient Portal Username'),
1579 'text', // data type
1581 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
1584 'portal_offsite_password' => array(
1585 xl('Offsite Patient Portal Password'),
1586 'pwd', // data type
1588 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
1591 'portal_offsite_address' => array(
1592 xl('Offsite Patient Portal Site Address'),
1593 'text', // data type
1594 'https://ssh.mydocsportal.com/provider.php',
1595 xl('Offsite Https link for the Patient Portal.')
1598 'portal_offsite_address_patient_link' => array(
1599 xl('Offsite Patient Portal Site Address (Patient Link)'),
1600 'text', // data type
1601 'https://ssh.mydocsportal.com',
1602 xl('Offsite Https link for the Patient Portal.(Patient Link)')
1605 // Currently the "CMS Portal" supports WordPress. Other Content Management
1606 // Systems may be supported in the future.
1608 'gbl_portal_cms_enable' => array(
1609 xl('Enable CMS Portal'),
1610 'bool', // data type
1611 '0',
1612 xl('Enable support for the open source WordPress Portal by Sunset Systems')
1615 'gbl_portal_cms_address' => array(
1616 xl('CMS Portal Site Address'),
1617 'text', // data type
1618 'https://your_cms_site.com/',
1619 xl('URL for the WordPress site that supports the portal')
1622 'gbl_portal_cms_username' => array(
1623 xl('CMS Portal Username'),
1624 'text', // data type
1626 xl('Login name of WordPress user for portal access')
1629 'gbl_portal_cms_password' => array(
1630 xl('CMS Portal Password'),
1631 'text', // data type
1633 xl('Password for the above user')
1638 // Connectors Tab
1640 'Connectors' => array(
1642 'lab_exchange_enable' => array(
1643 xl('Enable Lab Exchange'),
1644 'bool', // data type
1645 '0',
1646 xl('Enable the Medical Information Integration, LLC Lab Exchange Service.')
1649 'lab_exchange_siteid' => array(
1650 xl('Lab Exchange Site ID'),
1651 'text', // data type
1652 '3',
1653 xl('Site ID for the Medical Information Integration, LLC Lab Exchange Service.')
1656 'lab_exchange_token' => array(
1657 xl('Lab Exchange Token ID'),
1658 'text', // data type
1659 '12345',
1660 xl('Token ID for the Medical Information Integration, LLC Lab Exchange Service.')
1663 'lab_exchange_endpoint' => array(
1664 xl('Lab Exchange Site Address'),
1665 'text', // data type
1666 'https://len.mi-squared.com:29443/len/api',
1667 xl('Contact Medical Information Integration, LLC at http://mi-squared.com for Lab Exchange Service.')
1670 'erx_enable' => array(
1671 xl('Enable NewCrop eRx Service'),
1672 'bool', // data type
1673 '0',
1674 xl('Enable NewCrop eRx Service')
1677 'erx_path_production' => array(
1678 xl('NewCrop eRx Site Address'),
1679 'text', // data type
1680 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
1681 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing the eRx service')
1684 'erx_path_soap_production' => array(
1685 xl('NewCrop eRx Web Service Address'),
1686 'text', // data type
1687 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
1688 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing the eRx service')
1691 'erx_soap_ttl_allergies' => array(
1692 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
1693 'num',
1694 '21600',
1695 xl('Time-To-Live for Allergies SOAP Request in seconds')
1698 'erx_soap_ttl_medications' => array(
1699 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
1700 'num',
1701 '21600',
1702 xl('Time-To-Live for Medications SOAP Request in seconds')
1705 'partner_name_production' => array(
1706 xl('NewCrop eRx Partner Name'),
1707 'text', // data type
1709 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing the eRx service')
1712 'erx_name_production' => array(
1713 xl('NewCrop eRx Name'),
1714 'text', // data type
1716 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing the eRx service')
1719 'erx_password_production' => array(
1720 xl('NewCrop eRx Password'),
1721 'pass', // data type
1723 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing the eRx service')
1726 'erx_account_id' => array(
1727 xl('NewCrop eRx Account Id'),
1728 'text', // data type
1729 '1',
1730 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing the eRx service')
1733 'erx_upload_active' => array(
1734 xl('Only upload active prescriptions'),
1735 'bool', // data type
1736 '0',
1737 xl('Only upload active prescriptions')
1740 'erx_import_status_message' => array(
1741 xl('Enable import status message for NewCrop erx'),
1742 'bool', // data type
1743 '0',
1744 xl('Enable import status message for NewCrop erx')
1747 'erx_medication_display' => array(
1748 xl('Do not display Medications uploaded to NewCrop'),
1749 'bool', // data type
1750 '0',
1751 xl('Do not display Medications uploaded to NewCrop')
1754 'erx_allergy_display' => array(
1755 xl('Do not display Allergy uploaded to NewCrop'),
1756 'bool', // data type
1757 '0',
1758 xl('Do not display Allergy uploaded to NewCrop')
1761 'erx_default_patient_country' => array(
1762 xl('Default Patient Country'),
1763 array(
1764 '' => '',
1765 'US' => 'USA',
1766 'CA' => 'Canada',
1767 'MX' => 'Mexico'
1770 xl('Default Patient Country'),
1773 'phimail_enable' => array(
1774 xl('Enable phiMail Direct Messaging Service'),
1775 'bool', // data type
1776 '0',
1777 xl('Enable phiMail Direct Messaging Service')
1780 'phimail_server_address' => array(
1781 xl('phiMail Server Address'),
1782 'text', // data type
1783 'https://phimail.example.com:32541',
1784 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
1787 'phimail_username' => array(
1788 xl('phiMail Username'),
1789 'text', // data type
1791 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
1794 'phimail_password' => array(
1795 xl('phiMail Password'),
1796 'pass', // data type
1798 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
1801 'phimail_notify' => array(
1802 xl('phiMail notification user'),
1803 'text', // data type
1804 'admin',
1805 xl('This user will receive notification of new incoming Direct messages')
1808 'phimail_interval' => array(
1809 xl('phiMail Message Check Interval (minutes)'),
1810 'num', // data type
1811 '5',
1812 xl('Interval between message checks (set to zero for manual checks only)')
1815 'phimail_ccd_enable' => array(
1816 xl('phiMail Allow CCD Send'),
1817 'bool', // data type
1818 '0',
1819 xl('phiMail Allow CCD Send')
1822 'phimail_ccr_enable' => array(
1823 xl('phiMail Allow CCR Send'),
1824 'bool', // data type
1825 '0',
1826 xl('phiMail Allow CCR Send')
1830 'Rx' => array(
1831 'rx_enable_DEA' => array(
1832 xl('Rx Enable DEA #'),
1833 'bool', // data type
1834 '1',
1835 xl('Rx Enable DEA #')
1837 'rx_show_DEA' => array(
1838 xl('Rx Show DEA #'),
1839 'bool', // data type
1840 '0',
1841 xl('Rx Show DEA #')
1843 'rx_enable_NPI' => array(
1844 xl('Rx Enable NPI'),
1845 'bool', // data type
1846 '0',
1847 xl('Rx Enable NPI')
1849 'rx_show_NPI' => array(
1850 xl('Rx Show NPI'),
1851 'bool', // data type
1852 '0',
1853 xl('Rx Show NPI')
1855 'rx_enable_SLN' => array(
1856 xl('Rx Enable State Lic. #'),
1857 'bool', // data type
1858 '0',
1859 xl('Rx Enable State Lic. #')
1861 'rx_show_SLN' => array(
1862 xl('Rx Show State Lic. #'),
1863 'bool', // data type
1864 '0',
1865 xl('Rx Show State Lic. #')
1867 'rx_paper_size' => array(
1868 xl('Rx Paper Size'), // descriptive name
1869 array(
1870 'LETTER' => xl('Letter Paper Size'),
1871 'LEGAL' => xl('Legal Paper Size'),
1872 'FOLIO' => xl('Folio Paper Size'),
1873 'EXECUTIVE' => xl('Executive Paper Size'),
1874 '4A0' => ('4A0' . " " . xl('Paper Size')),
1875 '2A0' => ('2A0' . " " . xl('Paper Size')),
1876 'A0' => ('A0' . " " . xl('Paper Size')),
1877 'A1' => ('A1' . " " . xl('Paper Size')),
1878 'A2' => ('A2' . " " . xl('Paper Size')),
1879 'A3' => ('A3' . " " . xl('Paper Size')),
1880 'A4' => ('A4' . " " . xl('Paper Size')),
1881 'A5' => ('A5' . " " . xl('Paper Size')),
1882 'A6' => ('A6' . " " . xl('Paper Size')),
1883 'A7' => ('A7' . " " . xl('Paper Size')),
1884 'A8' => ('A8' . " " . xl('Paper Size')),
1885 'A9' => ('A9' . " " . xl('Paper Size')),
1886 'A10' => ('A10' . " " . xl('Paper Size')),
1887 'B0' => ('B0' . " " . xl('Paper Size')),
1888 'B1' => ('B1' . " " . xl('Paper Size')),
1889 'B2' => ('B2' . " " . xl('Paper Size')),
1890 'B3' => ('B3' . " " . xl('Paper Size')),
1891 'B4' => ('B4' . " " . xl('Paper Size')),
1892 'B5' => ('B5' . " " . xl('Paper Size')),
1893 'B6' => ('B6' . " " . xl('Paper Size')),
1894 'B7' => ('B7' . " " . xl('Paper Size')),
1895 'B8' => ('B8' . " " . xl('Paper Size')),
1896 'B9' => ('B9' . " " . xl('Paper Size')),
1897 'B10' => ('B10' . " " . xl('Paper Size')),
1898 'C0' => ('C0' . " " . xl('Paper Size')),
1899 'C1' => ('C1' . " " . xl('Paper Size')),
1900 'C2' => ('C2' . " " . xl('Paper Size')),
1901 'C3' => ('C3' . " " . xl('Paper Size')),
1902 'C4' => ('C4' . " " . xl('Paper Size')),
1903 'C5' => ('C5' . " " . xl('Paper Size')),
1904 'C6' => ('C6' . " " . xl('Paper Size')),
1905 'C7' => ('C7' . " " . xl('Paper Size')),
1906 'C8' => ('C8' . " " . xl('Paper Size')),
1907 'C9' => ('C9' . " " . xl('Paper Size')),
1908 'C10' => ('C10' . " " . xl('Paper Size')),
1909 'RA0' => ('RA0' . " " . xl('Paper Size')),
1910 'RA1' => ('RA1' . " " . xl('Paper Size')),
1911 'RA2' => ('RA2' . " " . xl('Paper Size')),
1912 'RA3' => ('RA3' . " " . xl('Paper Size')),
1913 'RA4' => ('RA4' . " " . xl('Paper Size')),
1914 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
1915 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
1916 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
1917 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
1918 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
1920 'LETTER', // default = tree menu
1921 xl('Rx Paper Size')
1923 'rx_left_margin' => array(
1924 xl('Rx Left Margin (px)'),
1925 'num',
1926 '30',
1927 xl('Rx Left Margin (px)')
1929 'rx_right_margin' => array(
1930 xl('Rx Right Margin (px)'),
1931 'num',
1932 '30',
1933 xl('Rx Right Margin (px)')
1935 'rx_top_margin' => array(
1936 xl('Rx Top Margin (px)'),
1937 'num',
1938 '72',
1939 xl('Rx Top Margin (px)')
1941 'rx_bottom_margin' => array(
1942 xl('Rx Bottom Margin (px)'),
1943 'num',
1944 '30',
1945 xl('Rx Bottom Margin (px)')
1949 'PDF' => array (
1950 'pdf_layout' => array (
1951 xl('Layout'),
1952 array(
1953 'P' => xl('Portrait'),
1954 'L' => xl('Landscape')
1956 'P', //defaut
1957 xl("Choose Layout Direction"),
1959 'pdf_language' => array (
1960 xl('PDF Language'),
1961 array(
1962 'aa' => xl('Afar'),
1963 'af' => xl('Afrikaans'),
1964 'ak' => xl('Akan'),
1965 'sq' => xl('Albanian'),
1966 'am' => xl('Amharic'),
1967 'ar' => xl('Arabic'),
1968 'an' => xl('Aragonese'),
1969 'hy' => xl('Armenian'),
1970 'as' => xl('Assamese'),
1971 'av' => xl('Avaric'),
1972 'ae' => xl('Avestan'),
1973 'ay' => xl('Aymara'),
1974 'az' => xl('Azerbaijani'),
1975 'bm' => xl('Bambara'),
1976 'ba' => xl('Bashkir'),
1977 'eu' => xl('Basque'),
1978 'be' => xl('Belarusian'),
1979 'bn' => xl('Bengali- Bangla'),
1980 'bh' => xl('Bihari'),
1981 'bi' => xl('Bislama'),
1982 'bs' => xl('Bosnian'),
1983 'br' => xl('Breton'),
1984 'bg' => xl('Bulgarian'),
1985 'my' => xl('Burmese'),
1986 'ca' => xl('Catalan- Valencian'),
1987 'ch' => xl('Chamorro'),
1988 'ce' => xl('Chechen'),
1989 'ny' => xl('Chichewa- Chewa- Nyanja'),
1990 'zh' => xl('Chinese'),
1991 'cv' => xl('Chuvash'),
1992 'kw' => xl('Cornish'),
1993 'co' => xl('Corsican'),
1994 'cr' => xl('Cree'),
1995 'hr' => xl('Croatian'),
1996 'cs' => xl('Czech'),
1997 'da' => xl('Danish'),
1998 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
1999 'nl' => xl('Dutch'),
2000 'dz' => xl('Dzongkha'),
2001 'en' => xl('English'),
2002 'eo' => xl('Esperanto'),
2003 'et' => xl('Estonian'),
2004 'ee' => xl('Ewe'),
2005 'fo' => xl('Faroese'),
2006 'fj' => xl('Fijian'),
2007 'fi' => xl('Finnish'),
2008 'fr' => xl('French'),
2009 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2010 'gl' => xl('Galician'),
2011 'ka' => xl('Georgian'),
2012 'de' => xl('German'),
2013 'el' => xl('Greek, Modern'),
2014 'gn' => xl('Guaraní'),
2015 'gu' => xl('Gujarati'),
2016 'ht' => xl('Haitian- Haitian Creole'),
2017 'ha' => xl('Hausa'),
2018 'he' => xl('Hebrew (modern)'),
2019 'hz' => xl('Herero'),
2020 'hi' => xl('Hindi'),
2021 'ho' => xl('Hiri Motu'),
2022 'hu' => xl('Hungarian'),
2023 'ia' => xl('Interlingua'),
2024 'id' => xl('Indonesian'),
2025 'ie' => xl('Interlingue'),
2026 'ga' => xl('Irish'),
2027 'ig' => xl('Igbo'),
2028 'ik' => xl('Inupiaq'),
2029 'io' => xl('Ido'),
2030 'is' => xl('Icelandic'),
2031 'it' => xl('Italian'),
2032 'iu' => xl('Inuktitut'),
2033 'ja' => xl('Japanese'),
2034 'jv' => xl('Javanese'),
2035 'kl' => xl('Kalaallisut, Greenlandic'),
2036 'kn' => xl('Kannada'),
2037 'kr' => xl('Kanuri'),
2038 'ks' => xl('Kashmiri'),
2039 'kk' => xl('Kazakh'),
2040 'km' => xl('Khmer'),
2041 'ki' => xl('Kikuyu, Gikuyu'),
2042 'rw' => xl('Kinyarwanda'),
2043 'ky' => xl('Kyrgyz'),
2044 'kv' => xl('Komi'),
2045 'kg' => xl('Kongo'),
2046 'ko' => xl('Korean'),
2047 'ku' => xl('Kurdish'),
2048 'kj' => xl('Kwanyama, Kuanyama'),
2049 'la' => xl('Latin'),
2050 'lb' => xl('Luxembourgish, Letzeburgesch'),
2051 'lg' => xl('Ganda'),
2052 'li' => xl('Limburgish, Limburgan, Limburger'),
2053 'ln' => xl('Lingala'),
2054 'lo' => xl('Lao'),
2055 'lt' => xl('Lithuanian'),
2056 'lu' => xl('Luba-Katanga'),
2057 'lv' => xl('Latvian'),
2058 'gv' => xl('Manx'),
2059 'mk' => xl('Macedonian'),
2060 'mg' => xl('Malagasy'),
2061 'ms' => xl('Malay'),
2062 'ml' => xl('Malayalam'),
2063 'mt' => xl('Maltese'),
2064 'mi' => xl('Māori'),
2065 'mr' => xl('Marathi (Marāṭhī)'),
2066 'mh' => xl('Marshallese'),
2067 'mn' => xl('Mongolian'),
2068 'na' => xl('Nauru'),
2069 'nv' => xl('Navajo, Navaho'),
2070 'nb' => xl('Norwegian Bokmål'),
2071 'nd' => xl('North Ndebele'),
2072 'ne' => xl('Nepali'),
2073 'ng' => xl('Ndonga'),
2074 'nn' => xl('Norwegian Nynorsk'),
2075 'no' => xl('Norwegian'),
2076 'ii' => xl('Nuosu'),
2077 'nr' => xl('South Ndebele'),
2078 'oc' => xl('Occitan'),
2079 'oj' => xl('Ojibwe, Ojibwa'),
2080 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2081 'om' => xl('Oromo'),
2082 'or' => xl('Oriya'),
2083 'os' => xl('Ossetian, Ossetic'),
2084 'pa' => xl('Panjabi, Punjabi'),
2085 'pi' => xl('Pāli'),
2086 'fa' => xl('Persian (Farsi)'),
2087 'pl' => xl('Polish'),
2088 'ps' => xl('Pashto, Pushto'),
2089 'pt' => xl('Portuguese'),
2090 'qu' => xl('Quechua'),
2091 'rm' => xl('Romansh'),
2092 'rn' => xl('Kirundi'),
2093 'ro' => xl('Romanian'),
2094 'ru' => xl('Russian'),
2095 'sa' => xl('Sanskrit (Saṁskṛta)'),
2096 'sc' => xl('Sardinian'),
2097 'sd' => xl('Sindhi'),
2098 'se' => xl('Northern Sami'),
2099 'sm' => xl('Samoan'),
2100 'sg' => xl('Sango'),
2101 'sr' => xl('Serbian'),
2102 'gd' => xl('Scottish Gaelic- Gaelic'),
2103 'sn' => xl('Shona'),
2104 'si' => xl('Sinhala, Sinhalese'),
2105 'sk' => xl('Slovak'),
2106 'sl' => xl('Slovene'),
2107 'so' => xl('Somali'),
2108 'st' => xl('Southern Sotho'),
2109 'es' => xl('Spanish- Castilian'),
2110 'su' => xl('Sundanese'),
2111 'sw' => xl('Swahili'),
2112 'ss' => xl('Swati'),
2113 'sv' => xl('Swedish'),
2114 'ta' => xl('Tamil'),
2115 'te' => xl('Telugu'),
2116 'tg' => xl('Tajik'),
2117 'th' => xl('Thai'),
2118 'ti' => xl('Tigrinya'),
2119 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2120 'tk' => xl('Turkmen'),
2121 'tl' => xl('Tagalog'),
2122 'tn' => xl('Tswana'),
2123 'to' => xl('Tonga (Tonga Islands)'),
2124 'tr' => xl('Turkish'),
2125 'ts' => xl('Tsonga'),
2126 'tt' => xl('Tatar'),
2127 'tw' => xl('Twi'),
2128 'ty' => xl('Tahitian'),
2129 'ug' => xl('Uyghur, Uighur'),
2130 'uk' => xl('Ukrainian'),
2131 'ur' => xl('Urdu'),
2132 'uz' => xl('Uzbek'),
2133 've' => xl('Venda'),
2134 'vi' => xl('Vietnamese'),
2135 'vo' => xl('Volapük'),
2136 'wa' => xl('Walloon'),
2137 'cy' => xl('Welsh'),
2138 'wo' => xl('Wolof'),
2139 'fy' => xl('Western Frisian'),
2140 'xh' => xl('Xhosa'),
2141 'yi' => xl('Yiddish'),
2142 'yo' => xl('Yoruba'),
2143 'za' => xl('Zhuang, Chuang'),
2144 'zu' => xl('Zulu'),
2146 'en', // default English
2147 xl('Choose PDF languange Preference'),
2149 'pdf_size' => array(
2150 xl('Paper Size'), // Descriptive Name
2151 array(
2152 'LETTER' => xl('Letter Paper Size'),
2153 'LEGAL' => xl('Legal Paper Size'),
2154 'FOLIO' => xl('Folio Paper Size'),
2155 'EXECUTIVE' => xl('Executive Paper Size'),
2156 '4A0' => ('4A0' . " " . xl('Paper Size')),
2157 '2A0' => ('2A0' . " " . xl('Paper Size')),
2158 'A0' => ('A0' . " " . xl('Paper Size')),
2159 'A1' => ('A1' . " " . xl('Paper Size')),
2160 'A2' => ('A2' . " " . xl('Paper Size')),
2161 'A3' => ('A3' . " " . xl('Paper Size')),
2162 'A4' => ('A4' . " " . xl('Paper Size')),
2163 'A5' => ('A5' . " " . xl('Paper Size')),
2164 'A6' => ('A6' . " " . xl('Paper Size')),
2165 'A7' => ('A7' . " " . xl('Paper Size')),
2166 'A8' => ('A8' . " " . xl('Paper Size')),
2167 'A9' => ('A9' . " " . xl('Paper Size')),
2168 'A10' => ('A10' . " " . xl('Paper Size')),
2169 'B0' => ('B0' . " " . xl('Paper Size')),
2170 'B1' => ('B1' . " " . xl('Paper Size')),
2171 'B2' => ('B2' . " " . xl('Paper Size')),
2172 'B3' => ('B3' . " " . xl('Paper Size')),
2173 'B4' => ('B4' . " " . xl('Paper Size')),
2174 'B5' => ('B5' . " " . xl('Paper Size')),
2175 'B6' => ('B6' . " " . xl('Paper Size')),
2176 'B7' => ('B7' . " " . xl('Paper Size')),
2177 'B8' => ('B8' . " " . xl('Paper Size')),
2178 'B9' => ('B9' . " " . xl('Paper Size')),
2179 'B10' => ('B10' . " " . xl('Paper Size')),
2180 'C0' => ('C0' . " " . xl('Paper Size')),
2181 'C1' => ('C1' . " " . xl('Paper Size')),
2182 'C2' => ('C2' . " " . xl('Paper Size')),
2183 'C3' => ('C3' . " " . xl('Paper Size')),
2184 'C4' => ('C4' . " " . xl('Paper Size')),
2185 'C5' => ('C5' . " " . xl('Paper Size')),
2186 'C6' => ('C6' . " " . xl('Paper Size')),
2187 'C7' => ('C7' . " " . xl('Paper Size')),
2188 'C8' => ('C8' . " " . xl('Paper Size')),
2189 'C9' => ('C9' . " " . xl('Paper Size')),
2190 'C10' => ('C10' . " " . xl('Paper Size')),
2191 'RA0' => ('RA0' . " " . xl('Paper Size')),
2192 'RA1' => ('RA1' . " " . xl('Paper Size')),
2193 'RA2' => ('RA2' . " " . xl('Paper Size')),
2194 'RA3' => ('RA3' . " " . xl('Paper Size')),
2195 'RA4' => ('RA4' . " " . xl('Paper Size')),
2196 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2197 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2198 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2199 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2200 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2202 'LETTER',
2203 xl('Choose Paper Size')
2205 'pdf_left_margin' => array(
2206 xl('Left Margin (mm)'),
2207 'num',
2208 '5',
2209 xl('Left Margin (mm)')
2211 'pdf_right_margin' => array(
2212 xl('Right Margin (mm)'),
2213 'num',
2214 '5',
2215 xl('Right Margin (mm)')
2217 'pdf_top_margin' => array(
2218 xl('Top Margin (mm)'),
2219 'num',
2220 '5',
2221 xl('Top Margin (mm)')
2223 'pdf_bottom_margin' => array(
2224 xl('Bottom Margin (px)'),
2225 'num',
2226 '8',
2227 xl('Bottom Margin (px)')
2229 'pdf_output' => array (
2230 xl('Output Type'),
2231 array(
2232 'D' => xl('Download'),
2233 'I' => xl('Inline')
2235 'D', //defaut
2236 xl("Choose Download or Display Inline"),
2239 'chart_label_type' => array(
2240 xl('Patient Label Type'),
2241 array(
2242 '0' => xl('None'),
2243 '1' => '5160',
2244 '2' => '5161',
2245 '3' => '5162'
2247 '1', // default
2248 xl('Avery Label type for printing patient labels from popups in left nav screen'),
2251 'barcode_label_type' => array(
2252 xl('Barcode Label Type'),
2253 array(
2254 '0' => xl('None'),
2255 '1' => 'std25',
2256 '2' => 'int25',
2257 '3' => 'ean8',
2258 '4' => 'ean13',
2259 '5' => 'upc',
2260 '6' => 'code11',
2261 '7' => 'code39',
2262 '8' => 'code93',
2263 '9' => 'code128',
2264 '10' => 'codabar',
2265 '11' => 'msi',
2266 '12' => 'datamatrix'
2268 '9', // default = None
2269 xl('Barcode type for printing barcode labels from popups in left nav screen.')
2272 'addr_label_type' => array(
2273 xl('Print Patient Address Label'),
2274 'bool', // data type
2275 '1', // default = false
2276 xl('Select to print patient address labels from popups in left nav screen.')