remove embedded phpmyadmin package
[openemr.git] / library / globals.inc.php
blobf9a9951deb13e7bcbe4b7a3afcb4cd5dbc05162b
1 <?php
2 // Copyright (C) 2010-2015 Rod Roark <rod@sunsetsystems.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 // $GLOBALS['print_command'] is the
10 // Print command for spooling to printers, used by statements.inc.php
11 // This is the command to be used for printing (without the filename).
12 // The word following "-P" should be the name of your printer. This
13 // example is designed for 8.5x11-inch paper with 1-inch margins,
14 // 10 CPI, 6 LPI, 65 columns, 54 lines per page.
16 // IF lpr services are installed on Windows this setting will be similar
17 // Otherwise configure it as needed (print /d:PRN) might be an option for Windows parallel printers
19 // Current supported languages: // Allow capture of term for translation:
20 // Albanian // xl('Albanian')
21 // Amharic // xl('Amharic')
22 // Arabic // xl('Arabic')
23 // Armenian // xl('Armenian')
24 // Bahasa Indonesia // xl('Bahasa Indonesia')
25 // Bengali // xl('Bengali')
26 // Bosnian // xl('Bosnian')
27 // Chinese (Simplified) // xl('Chinese (Simplified)')
28 // Chinese (Traditional) // xl('Chinese (Traditional)')
29 // Croatian // xl('Croatian')
30 // Czech // xl('Czech')
31 // Danish // xl('Danish')
32 // Dutch // xl('Dutch')
33 // English (Indian) // xl('English (Indian)')
34 // English (Standard) // xl('English (Standard)')
35 // Estonian // xl('Estonian')
36 // Finnish // xl('Finnish')
37 // French // xl('French (Standard)')
38 // French // xl('French (Canadian)')
39 // Georgian // xl('Georgian')
40 // German // xl('German')
41 // Greek // xl('Greek')
42 // Hebrew // xl('Hebrew')
43 // Hindi // xl('Hindi')
44 // Hungarian // xl('Hungarian')
45 // Italian // xl('Italian')
46 // Japanese // xl('Japanese')
47 // Korean // xl('Korean')
48 // Lithuanian // xl('Lithuanian')
49 // Marathi // xl('Marathi')
50 // Mongolian // xl('Mongolian')
51 // Norwegian // xl('Norwegian')
52 // Persian // xl('Persian')
53 // Polish // xl('Polish')
54 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
55 // Portuguese (European) // xl('Portuguese (European)')
56 // Romanian // xl('Romanian')
57 // Russian // xl('Russian')
58 // Serbian // xl('Serbian')
59 // Sinhala // xl('Sinhala')
60 // Slovak // xl('Slovak')
61 // Somali // xl('Somali')
62 // Spanish (Latin American) // xl('Spanish (Latin American)')
63 // Spanish (Spain) // xl('Spanish (Spain)')
64 // Swedish // xl('Swedish')
65 // Tamil // xl('Tamil')
66 // Turkish // xl('Turkish')
67 // Ukrainian // xl('Ukrainian')
68 // Vietnamese // xl('Vietnamese')
70 // OS-dependent stuff.
71 if (stristr(PHP_OS, 'WIN')) {
72 // MS Windows
73 $mysql_bin_dir = 'C:/xampp/mysql/bin';
74 $perl_bin_dir = 'C:/xampp/perl/bin';
75 $temporary_files_dir = 'C:/windows/temp';
76 $backup_log_dir = 'C:/windows/temp';
78 else {
79 // Everything else
80 $mysql_bin_dir = '/usr/bin';
81 $perl_bin_dir = '/usr/bin';
82 $temporary_files_dir = '/tmp';
83 $backup_log_dir = '/tmp';
86 // Language constant declarations:
87 // xl('Appearance')
88 // xl('Locale')
89 // xl('Features')
90 // xl('Calendar')
91 // xl('Security')
92 // xl('Notifications')
93 // xl('Miscellaneous')
95 // List of user specific tabs and globals
96 $USER_SPECIFIC_TABS = array('Appearance',
97 'Locale',
98 'Report',
99 'Calendar',
100 'Connectors');
101 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
102 'new_tabs_layout',
103 'theme_tabs_layout',
104 'css_header',
105 'menu_styling_vertical',
106 'gbl_pt_list_page_size',
107 'gbl_pt_list_new_window',
108 'units_of_measurement',
109 'us_weight_format',
110 'date_display_format',
111 'time_display_format',
112 'ledger_begin_date',
113 'print_next_appointment_on_ledger',
114 'calendar_view_type',
115 'event_color',
116 'pat_trkr_timer',
117 'ptkr_visit_reason',
118 'checkout_roll_off',
119 'erx_import_status_message');
121 // Gets array of time zones supported by PHP.
123 function gblTimeZones() {
124 $zones = timezone_identifiers_list();
125 $arr = array('' => xl('Unassigned'));
126 foreach ($zones as $zone) {
127 $arr[$zone] = str_replace('_', ' ', $zone);
129 return $arr;
132 $GLOBALS_METADATA = array(
134 // Appearance Tab
136 'Appearance' => array(
138 'default_top_pane' => array(
139 xl('Main Top Pane Screen'), // descriptive name
140 array(
141 'main_info.php' => xl('Calendar Screen'),
142 '../new/new.php' => xl('Patient Search/Add Screen'),
143 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
144 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
146 'main_info.php', // default = calendar
147 xl('Type of screen layout')
150 'new_tabs_layout' => array(
151 xl('Layout (need to logout/login after change this setting)'),
152 array(
153 '0' => xl('Frame'),
154 '1' => xl('Tabs'),
156 '1',
157 xl('Choose the layout (need to logout and then login to see this new setting).')
160 'theme_tabs_layout' => array(
161 xl('Tabs Layout Theme (need to logout/login after change this setting)'),
162 'tabs_css',
163 'tabs_style_full.css',
164 xl('Theme of the tabs layout (need to logout and then login to see this new setting).')
167 'css_header' => array(
168 xl('General Theme (need to logout/login after change this setting)'),
169 'css',
170 'style_light.css',
171 xl('Pick a general theme (need to logout/login after change this setting).')
174 'menu_styling_vertical' => array(
175 xl('Vertical Menu Style'),
176 array(
177 '0' => xl('Tree'),
178 '1' => xl('Sliding'),
180 '1',
181 xl('Vertical Menu Style')
184 'default_encounter_view' => array(
185 xl('Default Encounter View'), // descriptive name
186 array(
187 '0' => xl('Clinical View'),
188 '1' => xl('Billing View'),
190 '0', // default = tree menu
191 xl('Choose your default encounter view')
194 'gbl_nav_area_width' => array(
195 xl('Navigation Area Width'),
196 'num',
197 '150',
198 xl('Width in pixels of the left navigation frame.')
201 'openemr_name' => array(
202 xl('Application Title'),
203 'text',
204 'OpenEMR',
205 xl('Application name for login page and main window title.')
208 'enable_group_therapy' => array(
209 xl('Enable Group Therapy'),
210 'bool', // data type
211 '0', // default = false
212 xl('Enables groups module in system.')
215 'full_new_patient_form' => array(
216 xl('New Patient Form'),
218 array(
219 '0' => xl('Old-style static form without search or duplication check'),
220 '1' => xl('All demographics fields, with search and duplication check'),
221 '2' => xl('Mandatory or specified fields only, search and dup check'),
222 '3' => xl('Mandatory or specified fields only, dup check, no search'),
223 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
225 '1', // default
226 xl('Style of form used for adding new patients')
229 'gbl_edit_patient_form' => array(
230 xl('Modify Patient Form'),
232 array(
233 '0' => xl('Standard check'),
234 '1' => xl('Zend Module check in addition to standard check')
236 '0', // default
237 xl('Validation mechanism for when modifying patient demographics.')
240 'patient_search_results_style' => array(
241 xl('Patient Search Results Style'),
242 array(
243 '0' => xl('Encounter statistics'),
244 '1' => xl('Mandatory and specified fields'),
246 '0', // default
247 xl('Type of columns displayed for patient search results')
250 'gbl_tall_nav_area' => array(
251 xl('Tall Navigation Area'),
252 'bool', // data type
253 '0', // default = false
254 xl('Navigation area uses full height of frameset')
257 'gbl_nav_visit_forms' => array(
258 xl('Navigation Area Visit Forms'),
259 'bool', // data type
260 '1', // default = true
261 xl('Navigation area includes encounter forms')
264 'simplified_demographics' => array(
265 xl('Simplified Demographics'),
266 'bool', // data type
267 '0', // default = false
268 xl('Omit insurance and some other things from the demographics form')
271 'simplified_prescriptions' => array(
272 xl('Simplified Prescriptions'),
273 'bool', // data type
274 '0', // default = false
275 xl('Omit form, route and interval which then become part of dosage')
278 'simplified_copay' => array(
279 xl('Simplified Co-Pay'),
280 'bool', // data type
281 '0', // default = false
282 xl('Omit method of payment from the co-pay panel')
285 'use_charges_panel' => array(
286 xl('Use Charges Panel'),
287 'bool', // data type
288 '0', // default = false
289 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
292 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
293 'enable_fees_in_left_menu' => array(
294 xl('Enable Fees Submenu'),
295 'bool', // data type
296 '1', // default = true
297 xl('Enable Fees Submenu')
299 'enable_batch_payment' => array(
300 xl('Enable Batch Payment'),
301 'bool', // data type
302 '1', // default = true
303 xl('Enable Batch Payment')
305 'enable_posting' => array(
306 xl('Enable Posting'),
307 'bool', // data type
308 '1', // default = true
309 xl('Enable Posting')
311 // EDI history 2012-09-13
312 'enable_edihistory_in_left_menu' => array(
313 xl('Enable EDI History'),
314 'bool', // data type
315 '1', // default = true
316 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
319 'online_support_link' => array(
320 xl('Online Support Link'),
321 'text', // data type
322 'http://open-emr.org/',
323 xl('URL for OpenEMR support.')
326 'support_phone_number' => array(
327 xl('Support Phone Number'),
328 'text',
330 xl('Phone Number for Vendor Support that Appears on the About Page.')
333 'encounter_page_size' => array(
334 xl('Encounter Page Size'),
335 array(
336 '0' => xl('Show All'),
337 '5' => '5',
338 '10' => '10',
339 '15' => '15',
340 '20' => '20',
341 '25' => '25',
342 '50' => '50',
344 '20',
345 xl('Number of encounters to display per page.')
348 'gbl_pt_list_page_size' => array(
349 xl('Patient List Page Size'),
350 array(
351 '10' => '10',
352 '25' => '25',
353 '50' => '50',
354 '100' => '100',
356 '10',
357 xl('Number of patients to display per page in the patient list.')
360 'gbl_pt_list_new_window' => array(
361 xl('Patient List New Window'),
362 'bool', // data type
363 '0', // default = false
364 xl('Default state of New Window checkbox in the patient list.')
367 'gbl_vitals_options' => array(
368 xl('Vitals Form Options'),
369 array(
370 '0' => xl('Standard'),
371 '1' => xl('Omit circumferences'),
373 '0', // default
374 xl('Special treatment for the Vitals form')
377 'insurance_information' => array(
378 xl('Show Additional Insurance Information'), // descriptive name
379 array(
380 '0' => xl('None'),
381 '1' => xl('Address Only'),
382 '2' => xl('Address and Postal Code'),
383 '3' => xl('Address and State'),
384 '4' => xl('Address, State and Postal Code'),
385 '5' => xl('Address, City, State and Postal Code'),
386 '6' => xl('Postal Code and Box Number')
388 '5', // default
389 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
392 'gb_how_sort_list' => array(
393 xl('How to sort a drop-lists'),
394 array(
395 '0' => 'Sort by seq',
396 '1' => 'Sort alphabetically'
398 '0',
399 xl('What kind of sorting will be in the drop lists.')
402 'show_label_login' => array(
403 xl('Show Title on Login'),
404 'bool', // data type
405 '0', // default = false
406 xl('Show Title on Login')
409 'extra_logo_login' => array(
410 xl('Show Extra Logo on Login'),
411 'bool', // data type
412 '0', // default = false
413 xl('Show Extra Logo on Login')
416 'tiny_logo_1' => array(
417 xl('Show Mini Logo 1'),
418 'bool', // data type
419 '0', // default = false
420 xl('Show Mini Logo 1')
423 'tiny_logo_2' => array(
424 xl('Show Mini Logo 2'),
425 'bool', // data type
426 '0', // default = false
427 xl('Show Mini Logo 2')
432 // Locale Tab
434 'Locale' => array(
436 'language_default' => array(
437 xl('Default Language'),
438 'lang', // data type
439 'English (Standard)', // default = english
440 xl('Default language if no other is allowed or chosen.')
443 'language_menu_showall' => array(
444 xl('All Languages Allowed'),
445 'bool', // data type
446 '1', // default = true
447 xl('Allow all available languages as choices on menu at login.')
450 'language_menu_other' => array(
451 xl('Allowed Languages'),
452 'm_lang', // data type
453 '', // default = none
454 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
457 'allow_debug_language' => array(
458 xl('Allow Debugging Language'),
459 'bool', // data type
460 '1', // default = true during development and false for production releases
461 xl('This will allow selection of the debugging (\'dummy\') language.')
464 'translate_no_safe_apostrophe' => array(
465 xl('Do Not Use Safe Apostrophe'),
466 'bool', // data type
467 '0', // default = false
468 xl('This will turn off use of safe apostrophe, which is done by converting \' and " to `.(it is highly recommended that this setting is turned off and that safe apostrophe\'s are used)')
471 'translate_layout' => array(
472 xl('Translate Layouts'),
473 'bool', // data type
474 '1', // default = true
475 xl('Is text from form layouts to be translated?')
478 'translate_lists' => array(
479 xl('Translate Lists'),
480 'bool', // data type
481 '1', // default = true
482 xl('Is text from lists to be translated?')
485 'translate_gacl_groups' => array(
486 xl('Translate Access Control Groups'),
487 'bool', // data type
488 '1', // default = true
489 xl('Are access control group names to be translated?')
492 'translate_form_titles' => array(
493 xl('Translate Patient Note Titles'),
494 'bool', // data type
495 '1', // default = true
496 xl('Are patient note titles to be translated?')
499 'translate_document_categories' => array(
500 xl('Translate Document Categories'),
501 'bool', // data type
502 '1', // default = true
503 xl('Are document category names to be translated?')
506 'translate_appt_categories' => array(
507 xl('Translate Appointment Categories'),
508 'bool', // data type
509 '1', // default = true
510 xl('Are appointment category names to be translated?')
513 'units_of_measurement' => array(
514 xl('Units for Visit Forms'),
515 array(
516 '1' => xl('Show both US and metric (main unit is US)'),
517 '2' => xl('Show both US and metric (main unit is metric)'),
518 '3' => xl('Show US only'),
519 '4' => xl('Show metric only'),
521 '1', // default = Both/US
522 xl('Applies to the Vitals form and Growth Chart')
525 'us_weight_format' => array(
526 xl('Display Format for US Weights'),
527 array(
528 '1'=>xl('Show pounds as decimal value'),
529 '2'=>xl('Show pounds and ounces')
531 '1',
532 xl('Applies to Vitals form')
535 'disable_deprecated_metrics_form' => array(
536 xl('Disable Old Metric Vitals Form'),
537 'bool', // data type
538 '1', // default = true
539 xl('This was the older metric-only Vitals form, now deprecated.')
542 'phone_country_code' => array(
543 xl('Telephone Country Code'),
544 'num',
545 '1', // default = North America
546 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
549 'date_display_format' => array(
550 xl('Date Display Format'),
551 array(
552 '0' => xl('YYYY-MM-DD'),
553 '1' => xl('MM/DD/YYYY'),
554 '2' => xl('DD/MM/YYYY'),
556 '0',
557 xl('Format used to display most dates.')
560 'time_display_format' => array(
561 xl('Time Display Format'),
562 array(
563 '0' => xl('24 hr'),
564 '1' => xl('12 hr'),
566 '0',
567 xl('Format used to display most times.')
570 'gbl_time_zone' => array(
571 xl('Time Zone'),
572 gblTimeZones(),
574 xl('If unassigned will default to php.ini setting for date.timezone.')
577 'currency_decimals' => array(
578 xl('Currency Decimal Places'),
579 array(
580 '0' => xl('0'),
581 '1' => xl('1'),
582 '2' => xl('2'),
584 '2',
585 xl('Number of digits after decimal point for currency, usually 0 or 2.')
588 'currency_dec_point' => array(
589 xl('Currency Decimal Point Symbol'),
590 array(
591 '.' => xl('Period'),
592 ',' => xl('Comma'),
594 '.',
595 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
598 'currency_thousands_sep' => array(
599 xl('Currency Thousands Separator'),
600 array(
601 ',' => xl('Comma'),
602 '.' => xl('Period'),
603 ' ' => xl('Space'),
604 '' => xl('None'),
606 ',',
607 xl('Symbol used to separate thousands for currency.')
610 'gbl_currency_symbol' => array(
611 xl('Currency Designator'),
612 'text', // data type
613 '$', // default
614 xl('Code or symbol to indicate currency')
616 'age_display_format'=>array(xl('Age Display Format'),
617 array(
618 '0'=>xl('Years or months'),
619 '1'=>xl('Years, months and days')
621 '0',
622 xl('Format for age display')
624 'age_display_limit' => array(
625 xl('Age in Years for Display Format Change'),
626 'num',
627 '3',
628 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
630 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
631 'weekend_days' => array(
632 xl('Your weekend days'),
633 array(
634 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
635 '0' => xl('Sunday'),
636 '5' => xl('Friday'),
637 '6' => xl('Saturday'),
638 '5,6' => xl('Friday') .' - ' . xl('Saturday'),
640 '6,0'
641 ,xl('which days are your weekend days?')
646 // Features Tab
648 'Features' => array(
650 'specific_application' => array(
651 xl('Specific Application'),
652 array(
653 '0' => xl('None'),
654 '2' => xl('IPPF'),
655 '3' => xl('Weight loss clinic'),
657 '0', // default
658 xl('Indicator for specialized usage')
661 'inhouse_pharmacy' => array(
662 xl('Drugs and Products'),
663 array(
664 '0' => xl('Do not inventory and sell any products'),
665 '1' => xl('Inventory and sell drugs only'),
666 '2' => xl('Inventory and sell both drugs and non-drug products'),
667 '3' => xl('Products but no prescription drugs and no templates'),
669 '0', // default
670 xl('Option to support inventory and sales of products')
673 'disable_chart_tracker' => array(
674 xl('Disable Chart Tracker'),
675 'bool', // data type
676 '0', // default = false
677 xl('Removes the Chart Tracker feature')
680 'disable_phpmyadmin_link' => array(
681 xl('Disable phpMyAdmin'),
682 'bool', // data type
683 '0', // default = false
684 xl('Removes support for phpMyAdmin')
687 'disable_immunizations' => array(
688 xl('Disable Immunizations'),
689 'bool', // data type
690 '0', // default = false
691 xl('Removes support for immunizations')
694 'disable_prescriptions' => array(
695 xl('Disable Prescriptions'),
696 'bool', // data type
697 '0', // default = false
698 xl('Removes support for prescriptions')
701 'omit_employers' => array(
702 xl('Omit Employers'),
703 'bool', // data type
704 '0', // default = false
705 xl('Omit employer information in patient demographics')
708 'select_multi_providers' => array(
709 xl('Support Multi-Provider Events'),
710 'bool', // data type
711 '0', // default = false
712 xl('Support calendar events that apply to multiple providers')
715 'disable_non_default_groups' => array(
716 xl('Disable User Groups'),
717 'bool', // data type
718 '1', // default = true
719 xl('Normally this should be checked. Not related to access control.')
722 'ignore_pnotes_authorization' => array(
723 xl('Skip Authorization of Patient Notes'),
724 'bool', // data type
725 '1', // default = true
726 xl('Do not require patient notes to be authorized')
729 'support_encounter_claims' => array(
730 xl('Allow Encounter Claims'),
731 'bool', // data type
732 '0', // default = false
733 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
736 'advance_directives_warning' => array(
737 xl('Advance Directives Warning'),
738 'bool', // data type
739 '0', // default = false
740 xl('Display advance directives in the demographics page.')
743 'configuration_import_export' => array(
744 xl('Configuration Export/Import'),
745 'bool', // data type
746 '0', // default = false
747 xl('Support export/import of configuration data via the Backup page.')
750 'restrict_user_facility' => array(
751 xl('Restrict Users to Facilities'),
752 'bool', // data type
753 '0', // default
754 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
757 'set_facility_cookie' => array(
758 xl('Remember Selected Facility'),
759 'bool', // data type
760 '0', // default
761 xl('Set a facility cookie to remember the selected facility between logins.')
764 'receipts_by_provider' => array(
765 xl('Print Receipts by Provider'),
766 'bool',
767 '0', // default
768 xl('Causes Receipts to Print Encounter/Primary Provider Info')
771 'discount_by_money' => array(
772 xl('Discounts as Monetary Amounts'),
773 'bool', // data type
774 '1', // default = true
775 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
778 'gbl_visit_referral_source' => array(
779 xl('Referral Source for Encounters'),
780 'bool', // data type
781 '0', // default = false
782 xl('A referral source may be specified for each visit.')
785 'gbl_mask_patient_id' => array(
786 xl('Mask for Patient IDs'),
787 'text', // data type
788 '', // default
789 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
792 'gbl_mask_invoice_number' => array(
793 xl('Mask for Invoice Numbers'),
794 'text', // data type
795 '', // default
796 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
799 'gbl_mask_product_id' => array(
800 xl('Mask for Product IDs'),
801 'text', // data type
802 '', // default
803 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
806 'hide_billing_widget' => array(
807 xl('Hide Billing Widget'),
808 'bool', // data type
809 '0', // default = false
810 xl('This will hide the Billing Widget in the Patient Summary screen')
813 'force_billing_widget_open' => array(
814 xl('Force Billing Widget Open'),
815 'bool', // data type
816 '0', // default = false
817 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
820 'activate_ccr_ccd_report' => array(
821 xl('Activate CCR/CCD Reporting'),
822 'bool', // data type
823 '1', // default = true
824 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
827 'hide_document_encryption' => array(
828 xl('Hide Encryption/Decryption Options In Document Management'),
829 'bool', // data type
830 '1', // default = true
831 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
834 'use_custom_immun_list' => array(
835 xl('Use Custom Immunization List'),
836 'bool', // data type
837 '0', // default = true
838 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
841 'preprinted_cms_1500' => array(
842 xl('Prints the CMS 1500 on the Preprinted form'),
843 'bool', // data type
844 '0', // default = false
845 xl('Prints the CMS 1500 on the Preprinted form')
848 'cms_top_margin_default' => array(
849 xl('Default top print margin for CMS 1500'),
850 'num', // data type
851 '24', // default
852 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
855 'cms_left_margin_default' => array(
856 xl('Default left print margin for CMS 1500'),
857 'num', // data type
858 '20', // default
859 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
862 'cms_1500' => array(
863 xl('CMS 1500 Paper Form Format'),
864 array(
865 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
866 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
868 '1', // default
869 xl('This specifies which revision of the form the billing module should generate')
872 'cms_1500_box_31_format' => array(
873 xl('CMS 1500: Box 31 Format'),
874 array(
875 '0' => xl('Signature on File'),
876 '1' => xl('Firstname Lastname'),
877 '2' => xl('None'),
879 '0', // default
880 xl('This specifies whether to include date in Box 31.')
883 'cms_1500_box_31_date' => array(
884 xl('CMS 1500: Date in Box 31 (Signature)'),
885 array(
886 '0' => xl('None'),
887 '1' => xl('Date of Service'),
888 '2' => xl('Today'),
890 '0', // default
891 xl('This specifies whether to include date in Box 31.')
894 'amendments' => array (
895 xl('Amendments'),
896 'bool', // data type
897 '1', // default = true
898 xl('Enable amendments feature')
901 'allow_pat_delete' => array(
902 xl('Allow Administrators to Delete Patients'),
903 'bool', // data type
904 '0', // default = false
905 xl('Allow Administrators to Delete Patients')
909 'observation_results_immunization' => array(
910 xl('Immunization Observation Results'),
911 'bool', // data type
912 '1', // default
913 xl('Observation Results in Immunization')
917 // Report Tab
919 'Report' => array(
921 'use_custom_daysheet' => array(
922 xl('Use Custom End of Day Report'),
923 array(
924 '0' => xl('None'),
925 '1' => xl('Print End of Day Report 1'),
926 '2' => xl('Print End of Day Report 2'),
927 '3' => xl('Print End of Day Report 3'),
928 ), // data type
929 '1', // default = Print End of Day Report 1
930 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
933 'daysheet_provider_totals' => array(
934 xl('End of Day by Provider or allow Totals Only'),
935 array(
936 '0' => xl('Provider'),
937 '1' => xl('Totals Only'),
939 '1', // default
940 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
943 'ledger_begin_date' => array(
944 xl('Beginning Date for Ledger Report'),
945 array(
946 'Y1' => xl('One Year Ago'),
947 'Y2' => xl('Two Years Ago'),
948 'M6' => xl('Six Months Ago'),
949 'M3' => xl('Three Months Ago'),
950 'M1' => xl('One Month Ago'),
951 'D1' => xl('One Day Ago'),
953 'Y1', // default = One Year
954 xl('This is the Beginning date for the Ledger Report.')
957 'print_next_appointment_on_ledger' => array(
958 xl('Print the Next Appointment on the Bottom of the Ledger'),
959 'bool', // data type
960 '1', // default = true
961 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
964 'sales_report_invoice' => array(
965 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
966 array(
967 '0' => xl('Invoice Number'),
968 '1' => xl('Patient Name and ID'),
969 '2' => xl('Patient Name and Invoice'),
971 '2', // default = 2
972 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
975 'cash_receipts_report_invoice' => array(
976 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
977 array(
978 '0' => xl('Invoice Number'),
979 '1' => xl('Patient Name'),
981 '0', // default = 0
982 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
987 // Billing Tab
989 'Billing' => array(
991 'default_search_code_type' => array(
992 xl('Default Search Code Type'),
993 'all_code_types', // data type
994 'ICD10', // default
995 xl('The default code type to search for in the Fee Sheet.')
998 'support_fee_sheet_line_item_provider' => array(
999 xl('Support provider in line item in fee sheet'),
1000 'bool', // data type
1001 '0', // default = false
1002 xl('This Enables provider in line item in the fee sheet')
1005 'default_fee_sheet_line_item_provider' => array(
1006 xl('Default to a provider for line item in the fee sheet'),
1007 'bool', // data type
1008 '0', // default = false
1009 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1012 'replicate_justification' => array(
1013 xl('Automatically replicate justification codes in Fee Sheet'),
1014 'bool', // data type
1015 '0', // default = false
1016 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1019 'display_units_in_billing' => array(
1020 xl('Display the Units Column on the Billing Screen'),
1021 'bool', // data type
1022 '0', // default = false
1023 xl('Display the Units Column on the Billing Screen')
1026 'notes_to_display_in_Billing' => array(
1027 xl('Which notes are to be displayed in the Billing Screen'),
1028 array(
1029 '0' => xl('None'),
1030 '1' => xl('Encounter Billing Note'),
1031 '2' => xl('Patient Billing Note'),
1032 '3' => xl('All'),
1034 '3',
1035 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1038 'set_pos_code_encounter' => array(
1039 xl('Set POS code in encounter'),
1040 'bool', // data type
1041 '0', // default = false
1042 xl('This feature will allow the default POS facility code to be overriden from the encounter.')
1045 'use_custom_statement' => array(
1046 xl('Use Custom Statement'),
1047 'bool', // data type
1048 '0', // default = false
1049 xl('This will use the custom Statment showing the description instead of the codes.')
1052 'statement_appearance' => array(
1053 xl('Statement Appearance'),
1054 array(
1055 '0' => xl('Plain Text'),
1056 '1' => xl('Modern/images')
1057 ), // data type
1058 '1', // default = true
1059 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1062 'billing_phone_number' => array(
1063 xl('Custom Billing Phone Number'),
1064 'text', // data type
1066 xl('Phone number for billing inquiries')
1069 'show_aging_on_custom_statement' => array(
1070 xl('Show Aging on Custom Statement'),
1071 'bool', // data type
1072 '0', // default = false
1073 xl('This will Show Aging on the custom Statement.')
1076 'use_statement_print_exclusion' => array(
1077 xl('Allow Statement Exclusions from Printing'),
1078 'bool', // data type
1079 '0', // default = false
1080 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1083 'minimum_amount_to_print' => array(
1084 xl('Total Minimum Amount of Statement to Allow Printing'),
1085 'num', // data type
1086 '1.00',
1087 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1090 'statement_bill_note_print' => array(
1091 xl('Print Patient Billing Note'),
1092 'bool', // data type
1093 '0', // default = false
1094 xl('This will allow printing of the Patient Billing Note on the statements.')
1097 'number_appointments_on_statement' => array(
1098 xl('Number of Appointments on Statement'),
1099 'num', // data type
1100 '0', // default = 0
1101 xl('The Number of Future Appointments to Display on the Statement.')
1104 'statement_message_to_patient' => array(
1105 xl('Print Custom Message'),
1106 'bool', // data type
1107 '0', // default = false
1108 xl('This will allow printing of a custom Message on the statements.')
1111 'statement_msg_text' => array(
1112 xl('Custom Statement message'),
1113 'text', // data type
1115 xl('Text for Custom statement message.')
1118 'use_dunning_message' => array(
1119 xl('Use Custom Dunning Messages'),
1120 'bool', // data type
1121 '0', // default = false
1122 xl('This will allow use of the custom Dunning Messages on the statements.')
1125 'first_dun_msg_set' => array(
1126 xl('Number of days before showing first account message'),
1127 'num', // data type
1128 '30',
1129 xl('Number of days before showing first account message.')
1132 'first_dun_msg_text' => array(
1133 xl('First account message'),
1134 'text', // data type
1136 xl('Text for first account message.')
1139 'second_dun_msg_set' => array(
1140 xl('Number of days before showing second account message'),
1141 'num', // data type
1142 '60',
1143 xl('Number of days before showing second account message')
1146 'second_dun_msg_text' => array(
1147 xl('Second account message'),
1148 'text', // data type
1150 xl('Text for second account message.')
1153 'third_dun_msg_set' => array(
1154 xl('Number of days before showing third account message'),
1155 'num', // data type
1156 '90',
1157 xl('Number of days before showing third account message')
1160 'third_dun_msg_text' => array(
1161 xl('Third account message'),
1162 'text', // data type
1164 xl('Text for third account message.')
1167 'fourth_dun_msg_set' => array(
1168 xl('Number of days before showing fourth account message'),
1169 'num', // data type
1170 '120',
1171 xl('Number of days before showing fourth account message')
1174 'fourth_dun_msg_text' => array(
1175 xl('Fourth account message'),
1176 'text', // data type
1178 xl('Text for fourth account message.')
1181 'fifth_dun_msg_set' => array(
1182 xl('Number of days before showing fifth account message'),
1183 'num', // data type
1184 '150',
1185 xl('Number of days before showing fifth account message')
1188 'fifth_dun_msg_text' => array(
1189 xl('Fifth account message'),
1190 'text', // data type
1192 xl('Text for fifth account message.')
1194 'save_codes_history' => array(
1195 xl('Save codes history'),
1196 'bool', // data type
1197 '1', // default
1198 xl('Save codes history')
1202 // E-Sign Tab
1204 'E-Sign' => array(
1206 'esign_all' => array(
1207 xl('Allows E-Sign on the entire encounter'),
1208 'bool', // data type
1209 '0', // default = false
1210 xl('This will enable signing an entire encounter, rather than individual forms')
1213 'lock_esign_all' => array(
1214 xl('Lock e-signed encounters and their forms'),
1215 'bool', // data type
1216 '0', // default = false
1217 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1220 'esign_individual' => array(
1221 xl('Allows E-Signing Individual Forms'),
1222 'bool', // data type
1223 '1', // default = false
1224 xl('This will enable signing individual forms separately')
1227 'lock_esign_individual' => array(
1228 xl('Lock an e-signed form individually'),
1229 'bool', // data type
1230 '1', // default = false
1231 xl('This will disable the Edit button on any form that is e-signed')
1234 'esign_lock_toggle' => array(
1235 xl('Enable lock toggle'),
1236 'bool', // data type
1237 '0', // default = false
1238 xl('This will give the user the option to lock (separate locking and signing)')
1241 'esign_report_hide_empty_sig' => array(
1242 xl('Hide Empty E-Sign Logs On Report'),
1243 'bool', // data type
1244 '1', // default = false
1245 xl('This will hide empty e-sign logs on the patient report')
1249 //Documents Tab
1250 'Documents' => array(
1252 'document_storage_method' => array(
1253 xl('Document Storage Method'),
1254 array(
1255 '0' => xl('Hard Disk'),
1256 '1' => xl('CouchDB')
1258 '0', // default
1259 xl('Option to save method of document storage.')
1261 'couchdb_host' => array(
1262 xl('CouchDB HostName'),
1263 'text',
1264 'localhost',
1265 xl('CouchDB host'),
1267 'couchdb_user' => array(
1268 xl('CouchDB UserName'),
1269 'text',
1271 xl('Username to connect to CouchDB'),
1273 'couchdb_pass' => array(
1274 xl('CouchDB Password'),
1275 'text',
1277 xl('Password to connect to CouchDB'),
1279 'couchdb_port' => array(
1280 xl('CouchDB Port'),
1281 'text',
1282 '5984',
1283 xl('CouchDB port'),
1285 'couchdb_dbase' => array(
1286 xl('CouchDB Database'),
1287 'text',
1289 xl('CouchDB database name'),
1291 'couchdb_log' => array(
1292 xl('CouchDB Log Enable'),
1293 'bool',
1294 '0',
1295 xl('Enable log for document uploads/downloads to CouchDB'),
1298 'expand_document_tree' => array(
1299 xl('Expand All Document Categories'),
1300 'bool', // data type
1301 '0', // default = false
1302 xl('Expand All Document Categories by Default')
1305 'patient_id_category_name' => array(
1306 xl('Patient ID Category Name'),
1307 'text', // data type
1308 'Patient ID card', // default
1309 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1312 'patient_photo_category_name' => array(
1313 xl('Patient Photo Category Name'),
1314 'text', // data type
1315 'Patient Photograph', // default
1316 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1319 'lab_results_category_name' => array(
1320 xl('Lab Results Category Name'),
1321 'text', // data type
1322 'Lab Report', // default
1323 xl('Document category name for storage of electronically received lab results.')
1326 'gbl_mdm_category_name' => array(
1327 xl('MDM Document Category Name'),
1328 'text', // data type
1329 'Lab Report', // default
1330 xl('Document category name for storage of electronically received MDM documents.')
1332 'generate_doc_thumb' => array(
1333 xl('Generate thumbnail'),
1334 'bool',
1335 '0',
1336 xl('Generate thumbnail images'),
1338 'thumb_doc_max_size' => array(
1339 xl('Thumbnail size'),
1340 'text', // data type
1341 '100', // default
1342 xl('Maximum size of thumbnail file')
1346 // Calendar Tab
1348 'Calendar' => array(
1350 'disable_calendar' => array(
1351 xl('Disable Calendar'),
1352 'bool', // data type
1353 '0', // default
1354 xl('Do not display the calendar.')
1357 'schedule_start' => array(
1358 xl('Calendar Starting Hour'),
1359 'hour',
1360 '8', // default
1361 xl('Beginning hour of day for calendar events.')
1364 'schedule_end' => array(
1365 xl('Calendar Ending Hour'),
1366 'hour',
1367 '17', // default
1368 xl('Ending hour of day for calendar events.')
1371 'calendar_interval' => array(
1372 xl('Calendar Interval'),
1373 array(
1374 '5' => '5',
1375 '10' => '10',
1376 '15' => '15',
1377 '20' => '20',
1378 '30' => '30',
1379 '60' => '60',
1381 '15', // default
1382 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1385 'calendar_view_type' => array(
1386 xl('Default Calendar View'),
1387 array(
1388 'day' => xl('Day'),
1389 'week' => xl('Week'),
1390 'month' => xl('Month'),
1392 'day', // default
1393 xl('This sets the Default Calendar View, Default is Day.')
1395 'first_day_week' => array(
1396 xl('First day in the week') ,
1397 array(
1398 '1' => xl('Monday'),
1399 '0' => xl('Sunday'),
1400 '6' => xl('Saturday')
1402 '1',
1403 xl('Your first day of the week.')
1405 'calendar_appt_style' => array(
1406 xl('Appointment Display Style'),
1407 array(
1408 '1' => 'Last name',
1409 '2' => 'Last name, first name',
1410 '3' => 'Last name, first name (title)',
1411 '4' => 'Last name, first name (title: comments)',
1413 '2', // default
1414 xl('This determines how appointments display on the calendar.')
1417 'event_color' => array(
1418 xl('Appointment/Event Color'),
1419 array(
1420 '1' => 'Category Color Schema',
1421 '2' => 'Facility Color Schema',
1422 ), // data type
1423 '1', // default
1424 xl('This determines which color schema used for appointment')
1427 'number_of_appts_to_show' => array(
1428 xl('Appointments - Patient Summary - Number to Display'),
1429 'num',
1430 '10',
1431 xl('Number of Appointments to display in the Patient Summary')
1434 'number_of_group_appts_to_show' => array(
1435 xl('Appointments - Group Summary - Number to Display'),
1436 'num',
1437 '10',
1438 xl('Number of Appointments to display in the Group Summary')
1440 'number_of_ex_appts_to_show' => array(
1441 xl('Excluded Appointments - Tooltip - Number to Display'),
1442 'num',
1443 '15',
1444 xl('Number of Excluded Appointments to display in the Tooltip')
1448 'patient_portal_appt_display_num' => array(
1449 xl('Appointments - Onsite Patient Portal - Number to Display'),
1450 'num',
1451 '20',
1452 xl('Number of Appointments to display in the Onsite Patient Portal')
1455 'appt_display_sets_option' => array(
1456 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1457 'bool', // data type
1458 '1', // default
1459 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1462 'appt_display_sets_color_1' => array(
1463 xl('Appointment Display Sets - Color 1'),
1464 'color_code',
1465 '#FFFFFF',
1466 xl('Color for odd sets (except when last set is odd and all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed) or not all member appointments are displayed).')
1469 'appt_display_sets_color_2' => array(
1470 xl('Appointment Display Sets - Color 2'),
1471 'color_code',
1472 '#E6E6FF',
1473 xl('Color for even sets (except when last set is even and all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed) or not all member appointments are displayed).')
1476 'appt_display_sets_color_3' => array(
1477 xl('Appointment Display Sets - Color 3'),
1478 'color_code',
1479 '#E6FFE6',
1480 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1483 'appt_display_sets_color_4' => array(
1484 xl('Appointment Display Sets - Color 4'),
1485 'color_code',
1486 '#FFE6FF',
1487 xl('Color for the last set when not all member appointments are displayed.')
1490 'appt_recurrences_widget' => array(
1491 xl('Recurrent Appointment Display Widget'),
1492 'bool', // data type
1493 '1', // default
1494 xl('Display the recurrent appointment widget in the patient summary.')
1497 'num_past_appointments_to_show' => array(
1498 xl('Past Appointment Display Widget'),
1499 'num', // data type
1500 '0', // default = false
1501 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)')
1504 'docs_see_entire_calendar' => array(
1505 xl('Providers See Entire Calendar'),
1506 'bool', // data type
1507 '0', // default
1508 xl('Check this if you want providers to see all appointments by default and not just their own.')
1511 'auto_create_new_encounters' => array(
1512 xl('Auto-Create New Encounters'),
1513 'bool', // data type
1514 '1', // default
1515 xl('Automatically create a new encounter when an appointment check in status is selected.')
1518 'disable_pat_trkr' => array(
1519 xl('Disable Patient Flow Board'),
1520 'bool', // data type
1521 '0', // default
1522 xl('Do not display the patient flow board.')
1525 'ptkr_visit_reason' => array(
1526 xl('Show Visit Reason in Patient Flow Board'),
1527 'bool', // data type
1528 '0', // default = false
1529 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1532 'ptkr_show_pid' => array(
1533 xl('Show Patient ID in Patient Flow Board'),
1534 'bool', // data type
1535 '1', // default = true
1536 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1539 'ptkr_show_encounter' => array(
1540 xl('Show Patient Encounter Number in Patient Flow Board'),
1541 'bool', // data type
1542 '1', // default = true
1543 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1546 'pat_trkr_timer' => array(
1547 xl('Patient Flow Board Timer Interval'),
1548 array(
1549 '0' => 'No automatic refresh',
1550 '0:10' => '10',
1551 '0:20' => '20',
1552 '0:30' => '30',
1553 '0:40' => '40',
1554 '0:50' => '50',
1555 '0:59' => '60',
1557 '0:20', // default
1558 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1561 'checkout_roll_off' => array(
1562 xl('Number of Minutes to display completed checkouts'),
1563 'num',
1564 '0', // default
1565 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1568 'drug_screen' => array(
1569 xl('Enable Random Drug Testing'),
1570 'bool', // data type
1571 '0', // default
1572 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1575 'drug_testing_percentage' => array(
1576 xl('Percentage of Patients to Drug Test'),
1577 'num',
1578 '33', // default
1579 xl('Percentage of Patients to select for Random Drug Testing.')
1582 'maximum_drug_test_yearly' => array(
1583 xl('Maximum number of times a Patient can be tested in a year'),
1584 'num',
1585 '0', // default
1586 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1589 'submit_changes_for_all_appts_at_once' => array(
1590 xl('Submit Changes For All Appts At Once'),
1591 'bool', // data type
1592 '1', // default
1593 xl('Enables to submit changes for all appointments of a recurrence at once.')
1599 // Security Tab
1601 'Security' => array(
1602 'sql_string_no_show_screen' => array(
1603 xl('Mode - Do Not Show SQL Queries'),
1604 'bool', // data type
1605 '0', // default
1606 xl('Do not allow SQL queries to be outputted to screen.')
1608 'timeout' => array(
1609 xl('Idle Session Timeout Seconds'),
1610 'num', // data type
1611 '7200', // default
1612 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1614 'secure_upload' => array(
1615 xl('Secure Upload Files with White List'),
1616 'bool', // data type
1617 '0', // default
1618 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1620 'secure_password' => array(
1621 xl('Require Strong Passwords'),
1622 'bool', // data type
1623 '0', // default
1624 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1626 'password_history' => array(
1627 xl('Require Unique Passwords'),
1628 'bool', // data type
1629 '0', // default
1630 xl('Means none of last three passwords are allowed when changing a password.')
1632 'password_compatibility' => array(
1633 xl('Permit unsalted passwords'),
1634 'bool', // data type
1635 '1', // default
1636 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')
1639 'password_expiration_days' => array(
1640 xl('Default Password Expiration Days'),
1641 'num', // data type
1642 '0', // default
1643 xl('Default password expiration period in days. 0 means this feature is disabled.')
1646 'password_grace_time' => array(
1647 xl('Password Expiration Grace Period'),
1648 'num', // data type
1649 '0', // default
1650 xl('Period in days where a user may login with an expired password.')
1653 'is_client_ssl_enabled' => array(
1654 xl('Enable Client SSL'),
1655 'bool', // data type
1656 '0', // default
1657 xl('Enable client SSL certificate authentication.')
1660 'certificate_authority_crt' => array(
1661 xl('Path to CA Certificate File'),
1662 'text', // data type
1663 '', // default
1664 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1667 'certificate_authority_key' => array(
1668 xl('Path to CA Key File'),
1669 'text', // data type
1670 '', // default
1671 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1674 'client_certificate_valid_in_days' => array(
1675 xl('Client Certificate Expiration Days'),
1676 'num', // data type
1677 '365', // default
1678 xl('Number of days that the client certificate is valid.')
1681 'Emergency_Login_email_id' => array(
1682 xl('Emergency Login Email Address'),
1683 'text', // data type
1684 '', // default
1685 xl('Email address, if any, to receive emergency login user activation messages.')
1688 'new_validate' => array(
1689 xl('New form validation'),
1690 'bool',
1691 '1',
1692 xl('New form validation')
1695 'allow_multiple_databases' => array(
1696 xl('Allow multiple databases'),
1697 'bool',
1698 '0',
1699 xl('Allow to use with multiple database')
1702 'safe_key_database' => array(
1703 xl('Safe key database'),
1704 'text', // data type
1705 '', // default
1706 xl('Key for multiple database credentials encryption')
1709 'use_active_directory' => array(
1710 xl('Use Active Directory'),
1711 'bool',
1712 '0',
1713 xl('If enabled, uses the specified active directory for login and authentication.')
1716 'account_suffix' => array(
1717 xl('Active Directory - Suffix Of Account'),
1718 'text',
1720 xl('The suffix of the account.')
1723 'base_dn' => array(
1724 xl('Active Directory - Domains Base'),
1725 'text',
1727 xl('Users is the standard windows CN, replace the DC stuff with your domain.')
1730 'domain_controllers' => array(
1731 xl('Active Directory - Domains Controllers'),
1732 'text',
1734 xl('The IP address of your domain controller(s).')
1739 // Notifications Tab
1741 'Notifications' => array(
1743 'patient_reminder_sender_name' => array(
1744 xl('Patient Reminder Sender Name'),
1745 'text', // data type
1746 '', // default
1747 xl('Name of the sender for patient reminders.')
1750 'patient_reminder_sender_email' => array(
1751 xl('Patient Reminder Sender Email'),
1752 'text', // data type
1753 '', // default
1754 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.')
1757 'practice_return_email_path' => array(
1758 xl('Notification Email Address'),
1759 'text', // data type
1760 '', // default
1761 xl('Email address, if any, to receive administrative notifications.')
1764 'EMAIL_METHOD' => array(
1765 xl('Email Transport Method'),
1766 array(
1767 'PHPMAIL' => 'PHPMAIL',
1768 'SENDMAIL' => 'SENDMAIL',
1769 'SMTP' => 'SMTP',
1771 'SMTP', // default
1772 xl('Method for sending outgoing email.')
1775 'SMTP_HOST' => array(
1776 xl('SMTP Server Hostname'),
1777 'text', // data type
1778 'localhost', // default
1779 xl('If SMTP is used, the server`s hostname or IP address.')
1782 'SMTP_PORT' => array(
1783 xl('SMTP Server Port Number'),
1784 'num', // data type
1785 '25', // default
1786 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1789 'SMTP_USER' => array(
1790 xl('SMTP User for Authentication'),
1791 'text', // data type
1792 '', // default
1793 xl('Must be empty if SMTP authentication is not used.')
1796 'SMTP_PASS' => array(
1797 xl('SMTP Password for Authentication'),
1798 'text', // data type
1799 '', // default
1800 xl('Must be empty if SMTP authentication is not used.')
1803 'SMTP_SECURE' => array(
1804 xl('SMTP Security Protocol'),
1805 array(
1806 '' => xl('None'),
1807 'ssl' => 'SSL',
1808 'tls' => 'TLS'
1811 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1814 'EMAIL_NOTIFICATION_HOUR' => array(
1815 xl('Email Notification Hours'),
1816 'num', // data type
1817 '50', // default
1818 xl('Number of hours in advance to send email notifications.')
1821 'SMS_NOTIFICATION_HOUR' => array(
1822 xl('SMS Notification Hours'),
1823 'num', // data type
1824 '50', // default
1825 xl('Number of hours in advance to send SMS notifications.')
1828 'SMS_GATEWAY_USENAME' => array(
1829 xl('SMS Gateway Username'),
1830 'text', // data type
1831 '', // default
1832 xl('Username for SMS Gateway.')
1835 'SMS_GATEWAY_PASSWORD' => array(
1836 xl('SMS Gateway Password'),
1837 'text', // data type
1838 '', // default
1839 xl('Password for SMS Gateway.')
1842 'SMS_GATEWAY_APIKEY' => array(
1843 xl('SMS Gateway API Key'),
1844 'text', // data type
1845 '', // default
1846 xl('API key for SMS Gateway.')
1849 'phone_notification_hour' => array(
1850 xl('Phone Notification Hour'),
1851 'num', // data type
1852 '50', // default
1853 xl('Number of hours in advance to send Phone notification.')
1856 'phone_gateway_username' => array(
1857 xl('Phone Gateway Username'),
1858 'text', // data type
1859 '', // default
1860 xl('Username for Phone Gateway.')
1863 'phone_gateway_password' => array(
1864 xl('Phone Gateway Password'),
1865 'text', // data type
1866 '', // default
1867 xl('Password for Phone Gateway.')
1870 'phone_gateway_url' => array(
1871 xl('Phone Gateway URL'),
1872 'text', // data type
1873 '', // default
1874 xl('URL for Phone Gateway.')
1879 // CDR (Clinical Decision Rules)
1881 'CDR' => array(
1883 'enable_cdr' => array(
1884 xl('Enable Clinical Decisions Rules (CDR)'),
1885 'bool', // data type
1886 '1', // default
1887 xl('Enable Clinical Decisions Rules (CDR)')
1890 'enable_allergy_check' => array(
1891 xl('Enable Allergy Check'),
1892 'bool', // data type
1893 '1', // default
1894 xl('Enable Allergy Check Against Medications and Prescriptions')
1897 'enable_alert_log' => array(
1898 xl('Enable Alert Log'),
1899 'bool', // data type
1900 '1', // default
1901 xl('Enable Alert Logging')
1904 'enable_cdr_new_crp' => array(
1905 xl('Enable Clinical Passive New Reminder(s) Popup'),
1906 'bool', // data type
1907 '1', // default
1908 xl('Enable Clinical Passive New Reminder(s) Popup')
1911 'enable_cdr_crw' => array(
1912 xl('Enable Clinical Passive Reminder Widget'),
1913 'bool', // data type
1914 '1', // default
1915 xl('Enable Clinical Passive Reminder Widget')
1918 'enable_cdr_crp' => array(
1919 xl('Enable Clinical Active Reminder Popup'),
1920 'bool', // data type
1921 '1', // default
1922 xl('Enable Clinical Active Reminder Popup')
1925 'enable_cdr_prw' => array(
1926 xl('Enable Patient Reminder Widget'),
1927 'bool', // data type
1928 '1', // default
1929 xl('Enable Patient Reminder Widget')
1932 'enable_cqm' => array(
1933 xl('Enable CQM Reporting'),
1934 'bool', // data type
1935 '1', // default
1936 xl('Enable Clinical Quality Measure (CQM) Reporting')
1939 'pqri_registry_name' => array(
1940 xl('PQRI Registry Name'),
1941 'text', // data type
1942 'Model Registry', // default
1943 xl('PQRI Registry Name')
1946 'pqri_registry_id' => array(
1947 xl('PQRI Registry ID'),
1948 'text', // data type
1949 '125789123', // default
1950 xl('PQRI Registry ID')
1953 'enable_amc' => array(
1954 xl('Enable AMC Reporting'),
1955 'bool', // data type
1956 '1', // default
1957 xl('Enable Automated Measure Calculations (AMC) Reporting')
1960 'enable_amc_prompting' => array(
1961 xl('Enable AMC Prompting'),
1962 'bool', // data type
1963 '1', // default
1964 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1967 'enable_amc_tracking' => array(
1968 xl('Enable AMC Tracking'),
1969 'bool', // data type
1970 '1', // default
1971 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
1974 'cdr_report_nice' => array(
1975 xl('CDR Reports Processing Priority'),
1976 array(
1977 '' => xl('Default Priority'),
1978 '5' => xl('Moderate Priority'),
1979 '10' => xl('Moderate/Low Priority'),
1980 '15' => xl('Low Priority'),
1981 '20' => xl('Lowest Priority')
1983 '', // default
1984 xl('Set processing priority for CDR engine based reports.')
1987 'pat_rem_clin_nice' => array(
1988 xl('Patient Reminder Creation Processing Priority'),
1989 array(
1990 '' => xl('Default Priority'),
1991 '5' => xl('Moderate Priority'),
1992 '10' => xl('Moderate/Low Priority'),
1993 '15' => xl('Low Priority'),
1994 '20' => xl('Lowest Priority')
1996 '', // default
1997 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2000 'report_itemizing_standard' => array(
2001 xl('Enable Standard Report Itemization'),
2002 'bool', // data type
2003 '1', // default
2004 xl('Enable Itemization of Standard Clinical Rules Reports')
2007 'report_itemizing_cqm' => array(
2008 xl('Enable CQM Report Itemization'),
2009 'bool', // data type
2010 '1', // default
2011 xl('Enable Itemization of CQM Reports')
2014 'report_itemizing_amc' => array(
2015 xl('Enable AMC Report Itemization'),
2016 'bool', // data type
2017 '1', // default
2018 xl('Enable Itemization of AMC Reports')
2020 'dated_reminders_max_alerts_to_show' => array(
2021 xl('Dated reminders maximum alerts to show'),
2022 'num', // data type
2023 '5', // default
2024 xl('Dated reminders maximum alerts to show')
2028 // Logging
2030 'Logging' => array(
2032 'enable_auditlog' => array(
2033 xl('Enable Audit Logging'),
2034 'bool', // data type
2035 '1', // default
2036 xl('Enable Audit Logging')
2039 'audit_events_patient-record' => array(
2040 xl('Audit Logging Patient Record'),
2041 'bool', // data type
2042 '1', // default
2043 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2046 'audit_events_scheduling' => array(
2047 xl('Audit Logging Scheduling'),
2048 'bool', // data type
2049 '1', // default
2050 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2053 'audit_events_order' => array(
2054 xl('Audit Logging Order'),
2055 'bool', // data type
2056 '1', // default
2057 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2060 'audit_events_security-administration' => array(
2061 xl('Audit Logging Security Administration'),
2062 'bool', // data type
2063 '1', // default
2064 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2067 'audit_events_backup' => array(
2068 xl('Audit Logging Backups'),
2069 'bool', // data type
2070 '1', // default
2071 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2074 'audit_events_other' => array(
2075 xl('Audit Logging Miscellaneous'),
2076 'bool', // data type
2077 '1', // default
2078 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2081 'audit_events_query' => array(
2082 xl('Audit Logging SELECT Query'),
2083 'bool', // data type
2084 '0', // default
2085 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2088 'audit_events_cdr' => array(
2089 xl('Audit CDR Engine Queries'),
2090 'bool', // data type
2091 '0', // default
2092 xl('Enable logging of CDR Engine Queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2095 'enable_atna_audit' => array(
2096 xl('Enable ATNA Auditing'),
2097 'bool', // data type
2098 '0', // default
2099 xl('Enable Audit Trail and Node Authentication (ATNA).')
2102 'atna_audit_host' => array(
2103 xl('ATNA audit host'),
2104 'text', // data type
2105 '', // default
2106 xl('The hostname of the ATNA audit repository machine.')
2109 'atna_audit_port' => array(
2110 xl('ATNA audit port'),
2111 'text', // data type
2112 '6514', // default
2113 xl('Listening port of the RFC 5425 TLS syslog server.')
2116 'atna_audit_localcert' => array(
2117 xl('ATNA audit local certificate'),
2118 'text', // data type
2119 '', // default
2120 xl('Certificate to send to RFC 5425 TLS syslog server.')
2123 'atna_audit_cacert' => array(
2124 xl('ATNA audit CA certificate'),
2125 'text', // data type
2126 '', // default
2127 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2130 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
2131 'enable_auditlog_encryption' => array(
2132 xl('Enable Audit Log Encryption'),
2133 'bool', // data type
2134 '0', // default
2135 xl('Enable Audit Log Encryption')
2138 'billing_log_option' => array(
2139 xl('Billing Log Option'),
2140 array(
2141 '1' => xl('Billing Log Append'),
2142 '2' => xl('Billing Log Overwrite')
2144 '1', // default
2145 xl('Billing log setting to append or overwrite the log file.')
2148 'gbl_print_log_option' => array(
2149 xl('Printing Log Option'),
2150 array(
2151 '0' => xl('No logging'),
2152 '1' => xl('Hide print feature'),
2153 '2' => xl('Log entire document'),
2155 '0', // default
2156 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2161 // Miscellaneous Tab
2163 'Miscellaneous' => array(
2165 'mysql_bin_dir' => array(
2166 xl('Path to MySQL Binaries'),
2167 'text', // data type
2168 $mysql_bin_dir, // default
2169 xl('Full path to directory containing MySQL executables.')
2172 'perl_bin_dir' => array(
2173 xl('Path to Perl Binaries'),
2174 'text', // data type
2175 $perl_bin_dir, // default
2176 xl('Full path to directory containing Perl executables.')
2179 'temporary_files_dir' => array(
2180 xl('Path to Temporary Files'),
2181 'text', // data type
2182 $temporary_files_dir, // default
2183 xl('Full path to directory used for temporary files.')
2186 'backup_log_dir' => array(
2187 xl('Path for Event Log Backup'),
2188 'text', // data type
2189 $backup_log_dir, // default
2190 xl('Full path to directory for event log backup.')
2193 'state_data_type' => array(
2194 xl('State Data Type'),
2195 array(
2196 '2' => xl('Text field'),
2197 '1' => xl('Single-selection list'),
2198 '26' => xl('Single-selection list with ability to add to the list'),
2200 '26', // default
2201 xl('Field type to use for employer or subscriber state in demographics.')
2204 'state_list' => array(
2205 xl('State list'),
2206 'text', // data type
2207 'state', // default
2208 xl('List used by above State Data Type option.')
2211 'state_custom_addlist_widget' => array(
2212 xl('State List Widget Custom Fields'),
2213 'bool', // data type
2214 '1', // default
2215 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2218 'country_data_type' => array(
2219 xl('Country Data Type'),
2220 array(
2221 '2' => xl('Text field'),
2222 '1' => xl('Single-selection list'),
2223 '26' => xl('Single-selection list with ability to add to the list'),
2225 '26', // default
2226 xl('Field type to use for employer or subscriber country in demographics.')
2229 'country_list' => array(
2230 xl('Country list'),
2231 'text', // data type
2232 'country', // default
2233 xl('List used by above Country Data Type option.')
2236 'print_command' => array(
2237 xl('Print Command'),
2238 'text', // data type
2239 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2240 xl('Shell command for printing from the server.')
2243 'default_chief_complaint' => array(
2244 xl('Default Reason for Visit'),
2245 'text', // data type
2247 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2250 'default_new_encounter_form' => array(
2251 xl('Default Encounter Form ID'),
2252 'text', // data type
2254 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
2257 'MedicareReferrerIsRenderer' => array(
2258 xl('Medicare Referrer Is Renderer'),
2259 'bool', // data type
2260 '0', // default = true
2261 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2264 'post_to_date_benchmark' => array(
2265 xl('Financial Close Date (yyyy-mm-dd)'),
2266 'text', // data type
2267 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
2268 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2271 'enable_hylafax' => array(
2272 xl('Enable Hylafax Support'),
2273 'bool', // data type
2274 '0', // default
2275 xl('Enable Hylafax Support')
2278 'hylafax_server' => array(
2279 xl('Hylafax Server'),
2280 'text', // data type
2281 'localhost', // default
2282 xl('Hylafax server hostname.')
2285 'hylafax_basedir' => array(
2286 xl('Hylafax Directory'),
2287 'text', // data type
2288 '/var/spool/fax', // default
2289 xl('Location where Hylafax stores faxes.')
2292 'hylafax_enscript' => array(
2293 xl('Hylafax Enscript Command'),
2294 'text', // data type
2295 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2296 xl('Enscript command used by Hylafax.')
2299 'enable_scanner' => array(
2300 xl('Enable Scanner Support'),
2301 'bool', // data type
2302 '0', // default
2303 xl('Enable Scanner Support')
2306 'scanner_output_directory' => array(
2307 xl('Scanner Directory'),
2308 'text', // data type
2309 '/mnt/scan_docs', // default
2310 xl('Location where scans are stored.')
2314 // Portal Tab
2316 'Portal' => array(
2318 'portal_onsite_two_enable' => array(
2319 xl('Enable Version 2 Onsite Patient Portal'),
2320 'bool', // data type
2321 '0',
2322 xl('Enable Version 2 Onsite Patient Portal.')
2325 'portal_onsite_two_address' => array(
2326 xl('Version 2 Onsite Patient Portal Site Address'),
2327 'text', // data type
2328 'https://your_web_site.com/openemr/portal',
2329 xl('Website link for the Version 2 Onsite Patient Portal.')
2332 'portal_onsite_enable' => array(
2333 xl('Enable Version 1 Onsite Patient Portal'),
2334 'bool', // data type
2335 '0',
2336 xl('Enable Version 1 Onsite Patient Portal.')
2339 'portal_onsite_address' => array(
2340 xl('Version 1 Onsite Patient Portal Site Address'),
2341 'text', // data type
2342 'https://your_web_site.com/openemr/patients',
2343 xl('Website link for the Version 1 Onsite Patient Portal.')
2346 'portal_onsite_document_download' => array(
2347 xl('Enable Onsite Patient Portal Document Download'),
2348 'bool', // data type
2349 '1',
2350 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2353 'portal_offsite_enable' => array(
2354 xl('Enable Offsite Patient Portal'),
2355 'bool', // data type
2356 '0',
2357 xl('Enable Offsite Patient Portal.')
2359 'portal_offsite_providerid' => array(
2360 xl('Offsite Patient Portal Provider ID'),
2361 'text', // data type
2363 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2366 'portal_offsite_username' => array(
2367 xl('Offsite Patient Portal Username'),
2368 'text', // data type
2370 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2373 'portal_offsite_password' => array(
2374 xl('Offsite Patient Portal Password'),
2375 'pwd', // data type
2377 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2380 'portal_offsite_address' => array(
2381 xl('Offsite Patient Portal Site Address'),
2382 'text', // data type
2383 'https://ssh.mydocsportal.com/provider.php',
2384 xl('Offsite Https link for the Patient Portal.')
2387 'portal_offsite_address_patient_link' => array(
2388 xl('Offsite Patient Portal Site Address (Patient Link)'),
2389 'text', // data type
2390 'https://ssh.mydocsportal.com',
2391 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2394 // Currently the "CMS Portal" supports WordPress. Other Content Management
2395 // Systems may be supported in the future.
2397 'gbl_portal_cms_enable' => array(
2398 xl('Enable CMS Portal'),
2399 'bool', // data type
2400 '0',
2401 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2404 'gbl_portal_cms_address' => array(
2405 xl('CMS Portal Site Address'),
2406 'text', // data type
2407 'https://your_cms_site.com/',
2408 xl('URL for the WordPress site that supports the portal')
2411 'gbl_portal_cms_username' => array(
2412 xl('CMS Portal Username'),
2413 'text', // data type
2415 xl('Login name of WordPress user for portal access')
2418 'gbl_portal_cms_password' => array(
2419 xl('CMS Portal Password'),
2420 'text', // data type
2422 xl('Password for the above user')
2427 // Connectors Tab
2429 'Connectors' => array(
2431 'erx_enable' => array(
2432 xl('Enable NewCrop eRx Service'),
2433 'bool',
2434 '0',
2435 xl('Enable NewCrop eRx Service.') + ' ' +
2436 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.')
2439 'erx_newcrop_path' => array(
2440 xl('NewCrop eRx Site Address'),
2441 'text',
2442 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2443 xl('URL for NewCrop eRx Site Address.')
2446 'erx_newcrop_path_soap' => array(
2447 xl('NewCrop eRx Web Service Address'),
2448 'text',
2449 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2450 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2453 'erx_soap_ttl_allergies' => array(
2454 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2455 'num',
2456 '21600',
2457 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2460 'erx_soap_ttl_medications' => array(
2461 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2462 'num',
2463 '21600',
2464 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2467 'erx_account_partner_name' => array(
2468 xl('NewCrop eRx Partner Name'),
2469 'text',
2471 xl('Partner Name issued for NewCrop eRx service.')
2474 'erx_account_name' => array(
2475 xl('NewCrop eRx Name'),
2476 'text',
2478 xl('Account Name issued for NewCrop eRx service.')
2481 'erx_account_password' => array(
2482 xl('NewCrop eRx Password'),
2483 'pass',
2485 xl('Account Password issued for NewCrop eRx service.')
2488 'erx_account_id' => array(
2489 xl('NewCrop eRx Account Id'),
2490 'text',
2491 '1',
2492 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2495 'erx_upload_active' => array(
2496 xl('Only upload active prescriptions'),
2497 'bool',
2498 '0',
2499 xl('Only upload active prescriptions to NewCrop eRx.')
2502 'erx_import_status_message' => array(
2503 xl('Enable NewCrop eRx import status message'),
2504 'bool',
2505 '0',
2506 xl('Enable import status message after visiting NewCrop eRx.')
2509 'erx_medication_display' => array(
2510 xl('Do not display NewCrop eRx Medications uploaded'),
2511 'bool',
2512 '0',
2513 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2516 'erx_allergy_display' => array(
2517 xl('Do not display NewCrop eRx Allergy uploaded'),
2518 'bool',
2519 '0',
2520 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2523 'erx_default_patient_country' => array(
2524 xl('NewCrop eRx Default Patient Country'),
2525 array(
2526 '' => '',
2527 'US' => xl('USA'),
2528 'CA' => xl('Canada'),
2529 'MX' => xl('Mexico'),
2532 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2535 'erx_debug_setting' => array(
2536 xl('NewCrop eRx Debug Setting'),
2537 array(
2538 0 => xl('None'),
2539 1 => xl('Request Only'),
2540 2 => xl('Response Only'),
2541 3 => xl('Request & Response'),
2543 '0',
2544 xl('Log all NewCrop eRx Requests and / or Responses.'),
2547 'ccda_alt_service_enable' => array(
2548 xl('Enable C-CDA Alternate Service'),
2549 array(
2550 0 => xl('Off'),
2551 1 => xl('Care Coordination Only'),
2552 2 => xl('Portal Only'),
2553 3 => xl('Both'),
2555 '0',
2556 xl('Enable C-CDA Alternate Service')
2559 'phimail_enable' => array(
2560 xl('Enable phiMail Direct Messaging Service'),
2561 'bool', // data type
2562 '0',
2563 xl('Enable phiMail Direct Messaging Service')
2566 'phimail_server_address' => array(
2567 xl('phiMail Server Address'),
2568 'text', // data type
2569 'https://phimail.example.com:32541',
2570 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2573 'phimail_username' => array(
2574 xl('phiMail Username'),
2575 'text', // data type
2577 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2580 'phimail_password' => array(
2581 xl('phiMail Password'),
2582 'pass', // data type
2584 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2587 'phimail_notify' => array(
2588 xl('phiMail notification user'),
2589 'text', // data type
2590 'admin',
2591 xl('This user will receive notification of new incoming Direct messages')
2594 'phimail_interval' => array(
2595 xl('phiMail Message Check Interval (minutes)'),
2596 'num', // data type
2597 '5',
2598 xl('Interval between message checks (set to zero for manual checks only)')
2601 'phimail_ccd_enable' => array(
2602 xl('phiMail Allow CCD Send'),
2603 'bool', // data type
2604 '0',
2605 xl('phiMail Allow CCD Send')
2608 'phimail_ccr_enable' => array(
2609 xl('phiMail Allow CCR Send'),
2610 'bool', // data type
2611 '0',
2612 xl('phiMail Allow CCR Send')
2616 'Rx' => array(
2617 'rx_enable_DEA' => array(
2618 xl('Rx Enable DEA #'),
2619 'bool', // data type
2620 '1',
2621 xl('Rx Enable DEA #')
2623 'rx_show_DEA' => array(
2624 xl('Rx Show DEA #'),
2625 'bool', // data type
2626 '0',
2627 xl('Rx Show DEA #')
2629 'rx_enable_NPI' => array(
2630 xl('Rx Enable NPI'),
2631 'bool', // data type
2632 '0',
2633 xl('Rx Enable NPI')
2635 'rx_show_NPI' => array(
2636 xl('Rx Show NPI'),
2637 'bool', // data type
2638 '0',
2639 xl('Rx Show NPI')
2641 'rx_enable_SLN' => array(
2642 xl('Rx Enable State Lic. #'),
2643 'bool', // data type
2644 '0',
2645 xl('Rx Enable State Lic. #')
2647 'rx_show_SLN' => array(
2648 xl('Rx Show State Lic. #'),
2649 'bool', // data type
2650 '0',
2651 xl('Rx Show State Lic. #')
2653 'rx_show_drug-drug' => array(
2654 xl('Rx NLM Drug-Drug'),
2655 'bool', // data type
2656 '0',
2657 xl('Rx NLM Drug-Drug')
2659 'rx_paper_size' => array(
2660 xl('Rx Paper Size'), // descriptive name
2661 array(
2662 'LETTER' => xl('Letter Paper Size'),
2663 'LEGAL' => xl('Legal Paper Size'),
2664 'FOLIO' => xl('Folio Paper Size'),
2665 'EXECUTIVE' => xl('Executive Paper Size'),
2666 '4A0' => ('4A0' . " " . xl('Paper Size')),
2667 '2A0' => ('2A0' . " " . xl('Paper Size')),
2668 'A0' => ('A0' . " " . xl('Paper Size')),
2669 'A1' => ('A1' . " " . xl('Paper Size')),
2670 'A2' => ('A2' . " " . xl('Paper Size')),
2671 'A3' => ('A3' . " " . xl('Paper Size')),
2672 'A4' => ('A4' . " " . xl('Paper Size')),
2673 'A5' => ('A5' . " " . xl('Paper Size')),
2674 'A6' => ('A6' . " " . xl('Paper Size')),
2675 'A7' => ('A7' . " " . xl('Paper Size')),
2676 'A8' => ('A8' . " " . xl('Paper Size')),
2677 'A9' => ('A9' . " " . xl('Paper Size')),
2678 'A10' => ('A10' . " " . xl('Paper Size')),
2679 'B0' => ('B0' . " " . xl('Paper Size')),
2680 'B1' => ('B1' . " " . xl('Paper Size')),
2681 'B2' => ('B2' . " " . xl('Paper Size')),
2682 'B3' => ('B3' . " " . xl('Paper Size')),
2683 'B4' => ('B4' . " " . xl('Paper Size')),
2684 'B5' => ('B5' . " " . xl('Paper Size')),
2685 'B6' => ('B6' . " " . xl('Paper Size')),
2686 'B7' => ('B7' . " " . xl('Paper Size')),
2687 'B8' => ('B8' . " " . xl('Paper Size')),
2688 'B9' => ('B9' . " " . xl('Paper Size')),
2689 'B10' => ('B10' . " " . xl('Paper Size')),
2690 'C0' => ('C0' . " " . xl('Paper Size')),
2691 'C1' => ('C1' . " " . xl('Paper Size')),
2692 'C2' => ('C2' . " " . xl('Paper Size')),
2693 'C3' => ('C3' . " " . xl('Paper Size')),
2694 'C4' => ('C4' . " " . xl('Paper Size')),
2695 'C5' => ('C5' . " " . xl('Paper Size')),
2696 'C6' => ('C6' . " " . xl('Paper Size')),
2697 'C7' => ('C7' . " " . xl('Paper Size')),
2698 'C8' => ('C8' . " " . xl('Paper Size')),
2699 'C9' => ('C9' . " " . xl('Paper Size')),
2700 'C10' => ('C10' . " " . xl('Paper Size')),
2701 'RA0' => ('RA0' . " " . xl('Paper Size')),
2702 'RA1' => ('RA1' . " " . xl('Paper Size')),
2703 'RA2' => ('RA2' . " " . xl('Paper Size')),
2704 'RA3' => ('RA3' . " " . xl('Paper Size')),
2705 'RA4' => ('RA4' . " " . xl('Paper Size')),
2706 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2707 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2708 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2709 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2710 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2712 'LETTER', // default = tree menu
2713 xl('Rx Paper Size')
2715 'rx_left_margin' => array(
2716 xl('Rx Left Margin (px)'),
2717 'num',
2718 '30',
2719 xl('Rx Left Margin (px)')
2721 'rx_right_margin' => array(
2722 xl('Rx Right Margin (px)'),
2723 'num',
2724 '30',
2725 xl('Rx Right Margin (px)')
2727 'rx_top_margin' => array(
2728 xl('Rx Top Margin (px)'),
2729 'num',
2730 '72',
2731 xl('Rx Top Margin (px)')
2733 'rx_bottom_margin' => array(
2734 xl('Rx Bottom Margin (px)'),
2735 'num',
2736 '30',
2737 xl('Rx Bottom Margin (px)')
2741 'PDF' => array (
2742 'pdf_layout' => array (
2743 xl('Layout'),
2744 array(
2745 'P' => xl('Portrait'),
2746 'L' => xl('Landscape')
2748 'P', //defaut
2749 xl("Choose Layout Direction"),
2751 'pdf_language' => array (
2752 xl('PDF Language'),
2753 array(
2754 'aa' => xl('Afar'),
2755 'af' => xl('Afrikaans'),
2756 'ak' => xl('Akan'),
2757 'sq' => xl('Albanian'),
2758 'am' => xl('Amharic'),
2759 'ar' => xl('Arabic'),
2760 'an' => xl('Aragonese'),
2761 'hy' => xl('Armenian'),
2762 'as' => xl('Assamese'),
2763 'av' => xl('Avaric'),
2764 'ae' => xl('Avestan'),
2765 'ay' => xl('Aymara'),
2766 'az' => xl('Azerbaijani'),
2767 'bm' => xl('Bambara'),
2768 'ba' => xl('Bashkir'),
2769 'eu' => xl('Basque'),
2770 'be' => xl('Belarusian'),
2771 'bn' => xl('Bengali- Bangla'),
2772 'bh' => xl('Bihari'),
2773 'bi' => xl('Bislama'),
2774 'bs' => xl('Bosnian'),
2775 'br' => xl('Breton'),
2776 'bg' => xl('Bulgarian'),
2777 'my' => xl('Burmese'),
2778 'ca' => xl('Catalan- Valencian'),
2779 'ch' => xl('Chamorro'),
2780 'ce' => xl('Chechen'),
2781 'ny' => xl('Chichewa- Chewa- Nyanja'),
2782 'zh' => xl('Chinese'),
2783 'cv' => xl('Chuvash'),
2784 'kw' => xl('Cornish'),
2785 'co' => xl('Corsican'),
2786 'cr' => xl('Cree'),
2787 'hr' => xl('Croatian'),
2788 'cs' => xl('Czech'),
2789 'da' => xl('Danish'),
2790 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2791 'nl' => xl('Dutch'),
2792 'dz' => xl('Dzongkha'),
2793 'en' => xl('English'),
2794 'eo' => xl('Esperanto'),
2795 'et' => xl('Estonian'),
2796 'ee' => xl('Ewe'),
2797 'fo' => xl('Faroese'),
2798 'fj' => xl('Fijian'),
2799 'fi' => xl('Finnish'),
2800 'fr' => xl('French'),
2801 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2802 'gl' => xl('Galician'),
2803 'ka' => xl('Georgian'),
2804 'de' => xl('German'),
2805 'el' => xl('Greek, Modern'),
2806 'gn' => xl('Guarani'),
2807 'gu' => xl('Gujarati'),
2808 'ht' => xl('Haitian- Haitian Creole'),
2809 'ha' => xl('Hausa'),
2810 'he' => xl('Hebrew (modern)'),
2811 'hz' => xl('Herero'),
2812 'hi' => xl('Hindi'),
2813 'ho' => xl('Hiri Motu'),
2814 'hu' => xl('Hungarian'),
2815 'ia' => xl('Interlingua'),
2816 'id' => xl('Indonesian'),
2817 'ie' => xl('Interlingue'),
2818 'ga' => xl('Irish'),
2819 'ig' => xl('Igbo'),
2820 'ik' => xl('Inupiaq'),
2821 'io' => xl('Ido'),
2822 'is' => xl('Icelandic'),
2823 'it' => xl('Italian'),
2824 'iu' => xl('Inuktitut'),
2825 'ja' => xl('Japanese'),
2826 'jv' => xl('Javanese'),
2827 'kl' => xl('Kalaallisut, Greenlandic'),
2828 'kn' => xl('Kannada'),
2829 'kr' => xl('Kanuri'),
2830 'ks' => xl('Kashmiri'),
2831 'kk' => xl('Kazakh'),
2832 'km' => xl('Khmer'),
2833 'ki' => xl('Kikuyu, Gikuyu'),
2834 'rw' => xl('Kinyarwanda'),
2835 'ky' => xl('Kyrgyz'),
2836 'kv' => xl('Komi'),
2837 'kg' => xl('Kongo'),
2838 'ko' => xl('Korean'),
2839 'ku' => xl('Kurdish'),
2840 'kj' => xl('Kwanyama, Kuanyama'),
2841 'la' => xl('Latin'),
2842 'lb' => xl('Luxembourgish, Letzeburgesch'),
2843 'lg' => xl('Ganda'),
2844 'li' => xl('Limburgish, Limburgan, Limburger'),
2845 'ln' => xl('Lingala'),
2846 'lo' => xl('Lao'),
2847 'lt' => xl('Lithuanian'),
2848 'lu' => xl('Luba-Katanga'),
2849 'lv' => xl('Latvian'),
2850 'gv' => xl('Manx'),
2851 'mk' => xl('Macedonian'),
2852 'mg' => xl('Malagasy'),
2853 'ms' => xl('Malay'),
2854 'ml' => xl('Malayalam'),
2855 'mt' => xl('Maltese'),
2856 'mi' => xl('Maori'),
2857 'mr' => xl('Marathi (Marathi)'),
2858 'mh' => xl('Marshallese'),
2859 'mn' => xl('Mongolian'),
2860 'na' => xl('Nauru'),
2861 'nv' => xl('Navajo, Navaho'),
2862 'nb' => xl('Norwegian Bokmal'),
2863 'nd' => xl('North Ndebele'),
2864 'ne' => xl('Nepali'),
2865 'ng' => xl('Ndonga'),
2866 'nn' => xl('Norwegian Nynorsk'),
2867 'no' => xl('Norwegian'),
2868 'ii' => xl('Nuosu'),
2869 'nr' => xl('South Ndebele'),
2870 'oc' => xl('Occitan'),
2871 'oj' => xl('Ojibwe, Ojibwa'),
2872 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2873 'om' => xl('Oromo'),
2874 'or' => xl('Oriya'),
2875 'os' => xl('Ossetian, Ossetic'),
2876 'pa' => xl('Panjabi, Punjabi'),
2877 'pi' => xl('Pali'),
2878 'fa' => xl('Persian (Farsi)'),
2879 'pl' => xl('Polish'),
2880 'ps' => xl('Pashto, Pushto'),
2881 'pt' => xl('Portuguese'),
2882 'qu' => xl('Quechua'),
2883 'rm' => xl('Romansh'),
2884 'rn' => xl('Kirundi'),
2885 'ro' => xl('Romanian'),
2886 'ru' => xl('Russian'),
2887 'sa' => xl('Sanskrit (Samskrta)'),
2888 'sc' => xl('Sardinian'),
2889 'sd' => xl('Sindhi'),
2890 'se' => xl('Northern Sami'),
2891 'sm' => xl('Samoan'),
2892 'sg' => xl('Sango'),
2893 'sr' => xl('Serbian'),
2894 'gd' => xl('Scottish Gaelic- Gaelic'),
2895 'sn' => xl('Shona'),
2896 'si' => xl('Sinhala, Sinhalese'),
2897 'sk' => xl('Slovak'),
2898 'sl' => xl('Slovene'),
2899 'so' => xl('Somali'),
2900 'st' => xl('Southern Sotho'),
2901 'es' => xl('Spanish- Castilian'),
2902 'su' => xl('Sundanese'),
2903 'sw' => xl('Swahili'),
2904 'ss' => xl('Swati'),
2905 'sv' => xl('Swedish'),
2906 'ta' => xl('Tamil'),
2907 'te' => xl('Telugu'),
2908 'tg' => xl('Tajik'),
2909 'th' => xl('Thai'),
2910 'ti' => xl('Tigrinya'),
2911 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2912 'tk' => xl('Turkmen'),
2913 'tl' => xl('Tagalog'),
2914 'tn' => xl('Tswana'),
2915 'to' => xl('Tonga (Tonga Islands)'),
2916 'tr' => xl('Turkish'),
2917 'ts' => xl('Tsonga'),
2918 'tt' => xl('Tatar'),
2919 'tw' => xl('Twi'),
2920 'ty' => xl('Tahitian'),
2921 'ug' => xl('Uyghur, Uighur'),
2922 'uk' => xl('Ukrainian'),
2923 'ur' => xl('Urdu'),
2924 'uz' => xl('Uzbek'),
2925 've' => xl('Venda'),
2926 'vi' => xl('Vietnamese'),
2927 'vo' => xl('Volapuk'),
2928 'wa' => xl('Walloon'),
2929 'cy' => xl('Welsh'),
2930 'wo' => xl('Wolof'),
2931 'fy' => xl('Western Frisian'),
2932 'xh' => xl('Xhosa'),
2933 'yi' => xl('Yiddish'),
2934 'yo' => xl('Yoruba'),
2935 'za' => xl('Zhuang, Chuang'),
2936 'zu' => xl('Zulu'),
2938 'en', // default English
2939 xl('Choose PDF languange Preference'),
2941 'pdf_size' => array(
2942 xl('Paper Size'), // Descriptive Name
2943 array(
2944 'LETTER' => xl('Letter Paper Size'),
2945 'LEGAL' => xl('Legal Paper Size'),
2946 'FOLIO' => xl('Folio Paper Size'),
2947 'EXECUTIVE' => xl('Executive Paper Size'),
2948 '4A0' => ('4A0' . " " . xl('Paper Size')),
2949 '2A0' => ('2A0' . " " . xl('Paper Size')),
2950 'A0' => ('A0' . " " . xl('Paper Size')),
2951 'A1' => ('A1' . " " . xl('Paper Size')),
2952 'A2' => ('A2' . " " . xl('Paper Size')),
2953 'A3' => ('A3' . " " . xl('Paper Size')),
2954 'A4' => ('A4' . " " . xl('Paper Size')),
2955 'A5' => ('A5' . " " . xl('Paper Size')),
2956 'A6' => ('A6' . " " . xl('Paper Size')),
2957 'A7' => ('A7' . " " . xl('Paper Size')),
2958 'A8' => ('A8' . " " . xl('Paper Size')),
2959 'A9' => ('A9' . " " . xl('Paper Size')),
2960 'A10' => ('A10' . " " . xl('Paper Size')),
2961 'B0' => ('B0' . " " . xl('Paper Size')),
2962 'B1' => ('B1' . " " . xl('Paper Size')),
2963 'B2' => ('B2' . " " . xl('Paper Size')),
2964 'B3' => ('B3' . " " . xl('Paper Size')),
2965 'B4' => ('B4' . " " . xl('Paper Size')),
2966 'B5' => ('B5' . " " . xl('Paper Size')),
2967 'B6' => ('B6' . " " . xl('Paper Size')),
2968 'B7' => ('B7' . " " . xl('Paper Size')),
2969 'B8' => ('B8' . " " . xl('Paper Size')),
2970 'B9' => ('B9' . " " . xl('Paper Size')),
2971 'B10' => ('B10' . " " . xl('Paper Size')),
2972 'C0' => ('C0' . " " . xl('Paper Size')),
2973 'C1' => ('C1' . " " . xl('Paper Size')),
2974 'C2' => ('C2' . " " . xl('Paper Size')),
2975 'C3' => ('C3' . " " . xl('Paper Size')),
2976 'C4' => ('C4' . " " . xl('Paper Size')),
2977 'C5' => ('C5' . " " . xl('Paper Size')),
2978 'C6' => ('C6' . " " . xl('Paper Size')),
2979 'C7' => ('C7' . " " . xl('Paper Size')),
2980 'C8' => ('C8' . " " . xl('Paper Size')),
2981 'C9' => ('C9' . " " . xl('Paper Size')),
2982 'C10' => ('C10' . " " . xl('Paper Size')),
2983 'RA0' => ('RA0' . " " . xl('Paper Size')),
2984 'RA1' => ('RA1' . " " . xl('Paper Size')),
2985 'RA2' => ('RA2' . " " . xl('Paper Size')),
2986 'RA3' => ('RA3' . " " . xl('Paper Size')),
2987 'RA4' => ('RA4' . " " . xl('Paper Size')),
2988 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2989 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2990 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2991 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2992 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2994 'LETTER',
2995 xl('Choose Paper Size')
2997 'pdf_left_margin' => array(
2998 xl('Left Margin (mm)'),
2999 'num',
3000 '5',
3001 xl('Left Margin (mm)')
3003 'pdf_right_margin' => array(
3004 xl('Right Margin (mm)'),
3005 'num',
3006 '5',
3007 xl('Right Margin (mm)')
3009 'pdf_top_margin' => array(
3010 xl('Top Margin (mm)'),
3011 'num',
3012 '5',
3013 xl('Top Margin (mm)')
3015 'pdf_bottom_margin' => array(
3016 xl('Bottom Margin (px)'),
3017 'num',
3018 '8',
3019 xl('Bottom Margin (px)')
3021 'pdf_output' => array (
3022 xl('Output Type'),
3023 array(
3024 'D' => xl('Download'),
3025 'I' => xl('Inline')
3027 'D', //defaut
3028 xl("Choose Download or Display Inline"),
3031 'chart_label_type' => array(
3032 xl('Patient Label Type'),
3033 array(
3034 '0' => xl('None'),
3035 '1' => '5160',
3036 '2' => '5161',
3037 '3' => '5162'
3039 '1', // default
3040 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3043 'barcode_label_type' => array(
3044 xl('Barcode Label Type'),
3045 array(
3046 '0' => xl('None'),
3047 '1' => 'std25',
3048 '2' => 'int25',
3049 '3' => 'ean8',
3050 '4' => 'ean13',
3051 '5' => 'upc',
3052 '6' => 'code11',
3053 '7' => 'code39',
3054 '8' => 'code93',
3055 '9' => 'code128',
3056 '10' => 'codabar',
3057 '11' => 'msi',
3058 '12' => 'datamatrix'
3060 '9', // default = None
3061 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3064 'addr_label_type' => array(
3065 xl('Print Patient Address Label'),
3066 'bool', // data type
3067 '1', // default = false
3068 xl('Select to print patient address labels from popups in left nav screen.')