dev ldap fixes (#3914)
[openemr.git] / library / globals.inc.php
blobc25bba97a463d91834a0e1c72d63902f7c5ecb99
1 <?php
3 /*
4 * This program sets the global variables.
6 * @package OpenEMR
7 * @link https://www.open-emr.org
8 * @author Rod Roark <rod@sunsetsystems.com>
9 * @author Stephen Waite <stephen.waite@cmsvt.com>
10 * @author Brady Miller <brady.g.miller@gmail.com>
11 * @copyright Copyright (c) 2015 Rod Roark <rod@sunsetsystems.com>
12 * @copyright Copyright (c) 2018 Stephen Waite <stephen.waite@cmsvt.com>
13 * @copyright Copyright (c) 2019 Brady Miller <brady.g.miller@gmail.com>
14 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
17 // $GLOBALS['print_command'] is the
18 // Print command for spooling to printers, used by statements.inc.php
19 // This is the command to be used for printing (without the filename).
20 // The word following "-P" should be the name of your printer. This
21 // example is designed for 8.5x11-inch paper with 1-inch margins,
22 // 10 CPI, 6 LPI, 65 columns, 54 lines per page.
24 // IF lpr services are installed on Windows this setting will be similar
25 // Otherwise configure it as needed (print /d:PRN) might be an option for Windows parallel printers
27 // Current supported languages: // Allow capture of term for translation:
28 // Albanian // xl('Albanian')
29 // Amharic // xl('Amharic')
30 // Arabic // xl('Arabic')
31 // Armenian // xl('Armenian')
32 // Bahasa Indonesia // xl('Bahasa Indonesia')
33 // Bengali // xl('Bengali')
34 // Bosnian // xl('Bosnian')
35 // Bulgarian // xl('Bulgarian')
36 // Chinese (Simplified) // xl('Chinese (Simplified)')
37 // Chinese (Traditional) // xl('Chinese (Traditional)')
38 // Croatian // xl('Croatian')
39 // Czech // xl('Czech')
40 // Danish // xl('Danish')
41 // Dutch // xl('Dutch')
42 // English (Indian) // xl('English (Indian)')
43 // English (Standard) // xl('English (Standard)')
44 // Estonian // xl('Estonian')
45 // Filipino // xl('Filipino')
46 // Finnish // xl('Finnish')
47 // French // xl('French (Standard)')
48 // French // xl('French (Canadian)')
49 // Georgian // xl('Georgian')
50 // German // xl('German')
51 // Greek // xl('Greek')
52 // Hebrew // xl('Hebrew')
53 // Hindi // xl('Hindi')
54 // Hungarian // xl('Hungarian')
55 // Italian // xl('Italian')
56 // Japanese // xl('Japanese')
57 // Korean // xl('Korean')
58 // Lithuanian // xl('Lithuanian')
59 // Marathi // xl('Marathi')
60 // Mongolian // xl('Mongolian')
61 // Norwegian // xl('Norwegian')
62 // Persian // xl('Persian')
63 // Polish // xl('Polish')
64 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
65 // Portuguese (European) // xl('Portuguese (European)')
66 // Portuguese (European) // xl('Portuguese (Angolan)')
67 // Romanian // xl('Romanian')
68 // Russian // xl('Russian')
69 // Serbian // xl('Serbian')
70 // Sinhala // xl('Sinhala')
71 // Slovak // xl('Slovak')
72 // Somali // xl('Somali')
73 // Spanish (Latin American) // xl('Spanish (Latin American)')
74 // Spanish (Spain) // xl('Spanish (Spain)')
75 // Swedish // xl('Swedish')
76 // Tamil // xl('Tamil')
77 // Telugu // xl('Telugu')
78 // Thai // xl('Thai')
79 // Turkish // xl('Turkish')
80 // Ukrainian // xl('Ukrainian')
81 // Urdu // xl('Urdu')
82 // Vietnamese // xl('Vietnamese')
84 use OpenEMR\Services\Globals\GlobalsService;
85 use OpenEMR\Events\Globals\GlobalsInitializedEvent;
87 // OS-dependent stuff.
88 if (stristr(PHP_OS, 'WIN')) {
89 // MS Windows
90 $mysql_bin_dir = 'C:/xampp/mysql/bin';
91 $perl_bin_dir = 'C:/xampp/perl/bin';
92 $temporary_files_dir = 'C:/windows/temp';
93 $backup_log_dir = 'C:/windows/temp';
94 } else {
95 // Everything else
96 $mysql_bin_dir = '/usr/bin';
97 $perl_bin_dir = '/usr/bin';
98 $temporary_files_dir = '/tmp';
99 $backup_log_dir = '/tmp';
102 // Language constant declarations:
103 // xl('Appearance')
104 // xl('Locale')
105 // xl('Features')
106 // xl('Calendar')
107 // xl('Security')
108 // xl('Notifications')
109 // xl('Miscellaneous')
111 // List of user specific tabs and globals
112 $USER_SPECIFIC_TABS = array('Appearance',
113 'Locale',
114 'Features',
115 'Billing',
116 'Report',
117 'Calendar',
118 'CDR',
119 'Connectors');
120 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
121 'default_second_tab',
122 'theme_tabs_layout',
123 'css_header',
124 'vertical_responsive_menu',
125 'menu_styling_vertical',
126 'search_any_patient',
127 'default_encounter_view',
128 'gbl_pt_list_page_size',
129 'gbl_pt_list_new_window',
130 'units_of_measurement',
131 'us_weight_format',
132 'date_display_format',
133 'time_display_format',
134 'enable_help',
135 'text_templates_enabled',
136 'posting_adj_disable',
137 'messages_due_date',
138 'expand_form',
139 'ledger_begin_date',
140 'print_next_appointment_on_ledger',
141 'calendar_view_type',
142 'event_color',
143 'pat_trkr_timer',
144 'ptkr_visit_reason',
145 'ptkr_date_range',
146 'ptkr_start_date',
147 'ptkr_end_date',
148 'checkout_roll_off',
149 'patient_birthday_alert',
150 'patient_birthday_alert_manual_off',
151 'erx_import_status_message');
153 // Gets array of time zones supported by PHP.
155 function gblTimeZones()
157 $zones = timezone_identifiers_list();
158 $arr = array('' => xl('Unassigned'));
159 foreach ($zones as $zone) {
160 $arr[$zone] = str_replace('_', ' ', $zone);
163 return $arr;
166 $GLOBALS_METADATA = array(
168 // Appearance Tab
170 'Appearance' => array(
172 'default_top_pane' => array(
173 xl('Main Top Pane Screen(Or Default First Tab)'), // descriptive name
174 array(
175 'main_info.php' => xl('Calendar Screen'),
176 '../new/new.php' => xl('Patient Search/Add Screen'),
177 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
178 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
179 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen')
181 'main_info.php', // default = calendar
182 xl('Main Top Pane Screen(Or Default First Tab)')
185 'default_second_tab' => array(
186 xl('Default Second Tab'), // descriptive name
187 array(
188 '' => xl('None'),
189 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen'),
190 'main_info.php' => xl('Calendar Screen'),
191 '../new/new.php' => xl('Patient Search/Add Screen'),
192 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
193 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
195 '../../interface/main/messages/messages.php?form_active=1', // default = messages
196 xl('Default Second Tab')
199 'theme_tabs_layout' => array(
200 xl('Tabs Layout Theme') . '*',
201 'tabs_css',
202 'tabs_style_full.css',
203 xl('Theme of the tabs layout (need to logout and then login to see this new setting).')
206 'login_page_layout' => array(
207 xl('Login Page Layout') . '*',
208 array(
209 'center' => xl("Centered Layout"),
210 'left' => xl("Left-Form Layout"),
211 'right' => xl("Right-Form Layout"),
213 'center',
214 xl('Changes the layout of the login page.')
217 'css_header' => array(
218 // Note: Do not change this as it is only for theme defaults and adding themes here does nothing
219 xl('General Theme') . '*',
220 'css',
221 'style_light.css',
222 xl('Pick a general theme (need to logout/login after changing this setting).')
225 'enable_compact_mode' => array(
226 xl('Enable Compact Mode'),
227 'bool', // data type
228 '0', // default = false
229 xl('Changes the current theme to be more compact.')
232 'menu_styling_vertical' => array(
233 xl('Vertical Menu Style for Frames'),
234 array(
235 '0' => xl('Tree'),
236 '1' => xl('Sliding'),
238 '1',
239 xl('Vertical Menu Style for frame based layouts')
242 'search_any_patient' => array(
243 xl('Search Patient By Any Demographics'),
244 array(
245 'dual' => xl('Dual'),
246 'comprehensive' => xl('Comprehensive'),
247 'fixed' => xl('Fixed'),
248 'none' => xl('None'),
250 'dual', // default
251 xl('Search Patient By Any Demographics, Dual additionally lets direct access to Patient Finder, Comprehensive has collapsed input box, Fixed is similar to Dual with fixed size, None is do not show')
254 'default_encounter_view' => array(
255 xl('Default Encounter View'), // descriptive name
256 array(
257 '0' => xl('Clinical View'),
258 '1' => xl('Billing View'),
260 '0', // default = tree menu
261 xl('Choose your default encounter view')
264 'gbl_nav_area_width' => array(
265 xl('Navigation Area Width for Frames'),
266 'num',
267 '175',
268 xl('Width in pixels of the left navigation frame in frame based layout.')
271 'openemr_name' => array(
272 xl('Application Title'),
273 'text',
274 'OpenEMR',
275 xl('Application name for login page and main window title.')
278 'enable_group_therapy' => array(
279 xl('Enable Group Therapy'),
280 'bool', // data type
281 '0', // default = false
282 xl('Enables groups module in system.')
285 'full_new_patient_form' => array(
286 xl('New Patient Form'),
288 array(
289 '0' => xl('Old-style static form without search or duplication check'),
290 '1' => xl('All demographics fields, with search and duplication check'),
291 '2' => xl('Mandatory or specified fields only, search and dup check'),
292 '3' => xl('Mandatory or specified fields only, dup check, no search'),
293 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
295 '1', // default
296 xl('Style of form used for adding new patients')
299 'gbl_edit_patient_form' => array(
300 xl('Modify Patient Form'),
302 array(
303 '0' => xl('Standard check'),
304 '1' => xl('Zend Module check in addition to standard check')
306 '0', // default
307 xl('Validation mechanism for when modifying patient demographics.')
310 'patient_search_results_style' => array(
311 xl('Patient Search Results Style'),
312 array(
313 '0' => xl('Encounter statistics'),
314 '1' => xl('Mandatory and specified fields'),
316 '0', // default
317 xl('Type of columns displayed for patient search results')
320 'gbl_tall_nav_area' => array(
321 xl('Tall Navigation Area'),
322 'bool', // data type
323 '0', // default = false
324 xl('Navigation area uses full height of frameset')
327 'gbl_nav_visit_forms' => array(
328 xl('Navigation Area Visit Forms'),
329 'bool', // data type
330 '1', // default = true
331 xl('Navigation area includes encounter forms')
334 'simplified_prescriptions' => array(
335 xl('Simplified Prescriptions'),
336 'bool', // data type
337 '0', // default = false
338 xl('Omit form, route and interval which then become part of dosage')
341 'simplified_copay' => array(
342 xl('Simplified Co-Pay'),
343 'bool', // data type
344 '0', // default = false
345 xl('Omit method of payment from the co-pay panel')
348 'use_charges_panel' => array(
349 xl('Use Charges Panel'),
350 'bool', // data type
351 '0', // default = false
352 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
355 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
356 'enable_fees_in_left_menu' => array(
357 xl('Enable Fees Submenu'),
358 'bool', // data type
359 '1', // default = true
360 xl('Enable Fees Submenu')
362 'enable_batch_payment' => array(
363 xl('Enable Batch Payment'),
364 'bool', // data type
365 '1', // default = true
366 xl('Enable Batch Payment')
368 'enable_posting' => array(
369 xl('Enable Posting'),
370 'bool', // data type
371 '1', // default = true
372 xl('Enable Posting')
374 // EDI history 2012-09-13
375 'enable_edihistory_in_left_menu' => array(
376 xl('Enable EDI History'),
377 'bool', // data type
378 '1', // default = true
379 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
382 'online_support_link' => array(
383 xl('Online Support Link'),
384 'text', // data type
385 'http://open-emr.org/',
386 xl('URL for OpenEMR support.')
389 'support_phone_number' => array(
390 xl('Support Phone Number'),
391 'text',
393 xl('Phone Number for Vendor Support that Appears on the About Page.')
396 'encounter_page_size' => array(
397 xl('Encounter Page Size'),
398 array(
399 '0' => xl('Show All'),
400 '5' => '5',
401 '10' => '10',
402 '15' => '15',
403 '20' => '20',
404 '25' => '25',
405 '50' => '50',
407 '20',
408 xl('Number of encounters to display per page.')
411 'gbl_pt_list_page_size' => array(
412 xl('Patient List Page Size'),
413 array(
414 '10' => '10',
415 '25' => '25',
416 '50' => '50',
417 '100' => '100',
419 '10',
420 xl('Number of patients to display per page in the patient list.')
423 'gbl_pt_list_new_window' => array(
424 xl('Patient List New Window'),
425 'bool', // data type
426 '0', // default = false
427 xl('Default state of New Window checkbox in the patient list.')
430 'num_of_messages_displayed' => array(
431 xl('Number of Messages Displayed in Patient Summary'),
432 'num',
433 '3',
434 xl('This is the number of messages that will be displayed in the messages widget in the patient summary screen.')
437 'gbl_vitals_options' => array(
438 xl('Vitals Form Options'),
439 array(
440 '0' => xl('Standard'),
441 '1' => xl('Omit circumferences'),
443 '0', // default
444 xl('Special treatment for the Vitals form')
447 'gb_how_sort_list' => array(
448 xl('How to sort a drop-lists'),
449 array(
450 '0' => xl('Sort by seq'),
451 '1' => xl('Sort alphabetically')
453 '0',
454 xl('What kind of sorting will be in the drop lists.')
457 'show_label_login' => array(
458 xl('Show Title on Login'),
459 'bool', // data type
460 '0', // default = false
461 xl('Show Title on Login')
464 'extra_logo_login' => array(
465 xl('Show Extra Logo on Login'),
466 'bool', // data type
467 '0', // default = false
468 xl('Show Extra Logo on Login')
471 'tiny_logo_1' => array(
472 xl('Show Mini Logo 1'),
473 'bool', // data type
474 '0', // default = false
475 xl('Show Mini Logo 1')
478 'tiny_logo_2' => array(
479 xl('Show Mini Logo 2'),
480 'bool', // data type
481 '0', // default = false
482 xl('Show Mini Logo 2')
485 'prevent_browser_refresh' => array(
486 xl('Prevent Web Browser Refresh') . '*',
487 array(
488 '0' => xl('Do not warn or prevent web browser refresh'),
489 '1' => xl('Warn, but do not prevent web browser refresh'),
490 '2' => xl('Warn and prevent web browser refresh')
492 '2', // default = true
493 xl('Recommended setting is warn and prevent web browser refresh. Only use other settings if needed and use at own risk.')
498 // Locale Tab
500 'Locale' => array(
502 'language_default' => array(
503 xl('Default Language'),
504 'lang', // data type
505 'English (Standard)', // default = english
506 xl('Default language if no other is allowed or chosen.')
509 'language_menu_showall' => array(
510 xl('All Languages Allowed'),
511 'bool', // data type
512 '1', // default = true
513 xl('Allow all available languages as choices on menu at login.')
516 'language_menu_other' => array(
517 xl('Allowed Languages'),
518 'm_lang', // data type
519 '', // default = none
520 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
523 'allow_debug_language' => array(
524 xl('Allow Debugging Language'),
525 'bool', // data type
526 '1', // default = true during development and false for production releases
527 xl('This will allow selection of the debugging (\'dummy\') language.')
530 'translate_no_safe_apostrophe' => array(
531 xl('Do Not Use Safe Apostrophe'),
532 'bool', // data type
533 '0', // default = false
534 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)')
537 'translate_layout' => array(
538 xl('Translate Layouts'),
539 'bool', // data type
540 '1', // default = true
541 xl('Is text from form layouts to be translated?')
544 'translate_lists' => array(
545 xl('Translate Lists'),
546 'bool', // data type
547 '1', // default = true
548 xl('Is text from lists to be translated?')
551 'translate_gacl_groups' => array(
552 xl('Translate Access Control Groups'),
553 'bool', // data type
554 '1', // default = true
555 xl('Are access control group names to be translated?')
558 'translate_form_titles' => array(
559 xl('Translate Patient Note Titles'),
560 'bool', // data type
561 '1', // default = true
562 xl('Are patient note titles to be translated?')
565 'translate_document_categories' => array(
566 xl('Translate Document Categories'),
567 'bool', // data type
568 '1', // default = true
569 xl('Are document category names to be translated?')
572 'translate_appt_categories' => array(
573 xl('Translate Appointment Categories'),
574 'bool', // data type
575 '1', // default = true
576 xl('Are appointment category names to be translated?')
579 'units_of_measurement' => array(
580 xl('Units for Visit Forms'),
581 array(
582 '1' => xl('Show both US and metric (main unit is US)'),
583 '2' => xl('Show both US and metric (main unit is metric)'),
584 '3' => xl('Show US only'),
585 '4' => xl('Show metric only'),
587 '1', // default = Both/US
588 xl('Applies to the Vitals form and Growth Chart')
591 'us_weight_format' => array(
592 xl('Display Format for US Weights'),
593 array(
594 '1' => xl('Show pounds as decimal value'),
595 '2' => xl('Show pounds and ounces')
597 '1',
598 xl('Applies to Vitals form')
601 'phone_country_code' => array(
602 xl('Telephone Country Code'),
603 'num',
604 '1', // default = North America
605 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
608 'date_display_format' => array(
609 xl('Date Display Format'),
610 array(
611 '0' => xl('YYYY-MM-DD'),
612 '1' => xl('MM/DD/YYYY'),
613 '2' => xl('DD/MM/YYYY'),
615 '0',
616 xl('Format used to display most dates.')
619 'time_display_format' => array(
620 xl('Time Display Format'),
621 array(
622 '0' => xl('24 hr'),
623 '1' => xl('12 hr'),
625 '0',
626 xl('Format used to display most times.')
629 'gbl_time_zone' => array(
630 xl('Time Zone'),
631 gblTimeZones(),
633 xl('If unassigned will default to php.ini setting for date.timezone.')
636 'currency_decimals' => array(
637 xl('Currency Decimal Places'),
638 array(
639 '0' => xl('0'),
640 '1' => xl('1'),
641 '2' => xl('2'),
643 '2',
644 xl('Number of digits after decimal point for currency, usually 0 or 2.')
647 'currency_dec_point' => array(
648 xl('Currency Decimal Point Symbol'),
649 array(
650 '.' => xl('Period'),
651 ',' => xl('Comma'),
653 '.',
654 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
657 'currency_thousands_sep' => array(
658 xl('Currency Thousands Separator'),
659 array(
660 ',' => xl('Comma'),
661 '.' => xl('Period'),
662 ' ' => xl('Space'),
663 '' => xl('None'),
665 ',',
666 xl('Symbol used to separate thousands for currency.')
669 'gbl_currency_symbol' => array(
670 xl('Currency Designator'),
671 'text', // data type
672 '$', // default
673 xl('Code or symbol to indicate currency')
675 'age_display_format' => array(xl('Age Display Format'),
676 array(
677 '0' => xl('Years or months'),
678 '1' => xl('Years, months and days')
680 '0',
681 xl('Format for age display')
683 'age_display_limit' => array(
684 xl('Age in Years for Display Format Change'),
685 'num',
686 '3',
687 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
689 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
690 'weekend_days' => array(
691 xl('Your weekend days'),
692 array(
693 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
694 '0' => xl('Sunday'),
695 '5' => xl('Friday'),
696 '6' => xl('Saturday'),
697 '5,6' => xl('Friday') . ' - ' . xl('Saturday'),
699 '6,0'
700 , xl('which days are your weekend days?')
705 // Features Tab
707 'Features' => array(
709 'specific_application' => array(
710 xl('Specific Application'),
711 array(
712 '0' => xl('None'),
713 '2' => xl('IPPF'),
714 '3' => xl('Weight loss clinic'),
716 '0', // default
717 xl('Indicator for specialized usage')
720 'inhouse_pharmacy' => array(
721 xl('Drugs and Products'),
722 array(
723 '0' => xl('Do not inventory and sell any products'),
724 '1' => xl('Inventory and sell drugs only'),
725 '2' => xl('Inventory and sell both drugs and non-drug products'),
726 '3' => xl('Products but no prescription drugs and no templates'),
728 '0', // default
729 xl('Option to support inventory and sales of products')
732 'default_visit_category' => array(
733 xl('Default Visit Category'),
734 'default_visit_category',
735 '_blank',
736 xl('Define a default visit category'),
739 'enable_follow_up_encounters' => array(
740 xl('Enable follow-up encounters'),
741 'bool',
742 '0',
743 xl('Enable follow-up encounters feature')
746 'disable_chart_tracker' => array(
747 xl('Disable Chart Tracker'),
748 'bool', // data type
749 '0', // default = false
750 xl('Removes the Chart Tracker feature')
753 'disable_immunizations' => array(
754 xl('Disable Immunizations'),
755 'bool', // data type
756 '0', // default = false
757 xl('Removes support for immunizations')
760 'disable_prescriptions' => array(
761 xl('Disable Prescriptions'),
762 'bool', // data type
763 '0', // default = false
764 xl('Removes support for prescriptions')
767 'text_templates_enabled' => array(
768 xl('Enable Text Templates in Encounter Forms'),
769 'bool', // data type
770 '0', // default = false
771 xl('Allow Double Click to select Nation Note text template from any encounter form text area')
774 'omit_employers' => array(
775 xl('Omit Employers'),
776 'bool', // data type
777 '0', // default = false
778 xl('Omit employer information in patient demographics')
781 'select_multi_providers' => array(
782 xl('Support Multi-Provider Events'),
783 'bool', // data type
784 '0', // default = false
785 xl('Support calendar events that apply to multiple providers')
788 'disable_non_default_groups' => array(
789 xl('Disable User Groups'),
790 'bool', // data type
791 '1', // default = true
792 xl('Normally this should be checked. Not related to access control.')
795 'ignore_pnotes_authorization' => array(
796 xl('Skip Authorization of Patient Notes'),
797 'bool', // data type
798 '1', // default = true
799 xl('Do not require patient notes to be authorized')
802 'support_encounter_claims' => array(
803 xl('Allow Encounter Claims'),
804 'bool', // data type
805 '0', // default = false
806 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
809 'advance_directives_warning' => array(
810 xl('Advance Directives Warning'),
811 'bool', // data type
812 '0', // default = false
813 xl('Display advance directives in the demographics page.')
816 'configuration_import_export' => array(
817 xl('Configuration Export/Import'),
818 'bool', // data type
819 '0', // default = false
820 xl('Support export/import of configuration data via the Backup page.')
823 'restrict_user_facility' => array(
824 xl('Restrict Users to Facilities'),
825 'bool', // data type
826 '0', // default
827 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
830 'set_facility_cookie' => array(
831 xl('Remember Selected Facility'),
832 'bool', // data type
833 '0', // default
834 xl('Set a facility cookie to remember the selected facility between logins.')
837 'login_into_facility' => array(
838 xl('Login Into Facility'),
839 'bool', // data type
840 '0', // default
841 xl('Select your current facility in the login page')
844 'receipts_by_provider' => array(
845 xl('Print Receipts by Provider'),
846 'bool',
847 '0', // default
848 xl('Causes Receipts to Print Encounter/Primary Provider Info')
851 'discount_by_money' => array(
852 xl('Discounts as Monetary Amounts'),
853 'bool', // data type
854 '1', // default = true
855 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
858 'gbl_visit_referral_source' => array(
859 xl('Referral Source for Encounters'),
860 'bool', // data type
861 '0', // default = false
862 xl('A referral source may be specified for each visit.')
865 'gbl_mask_patient_id' => array(
866 xl('Mask for Patient IDs'),
867 'text', // data type
868 '', // default
869 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
872 'gbl_mask_invoice_number' => array(
873 xl('Mask for Invoice Numbers'),
874 'text', // data type
875 '', // default
876 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
879 'gbl_mask_product_id' => array(
880 xl('Mask for Product IDs'),
881 'text', // data type
882 '', // default
883 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
886 'hide_billing_widget' => array(
887 xl('Hide Billing Widget'),
888 'bool', // data type
889 '0', // default = false
890 xl('This will hide the Billing Widget in the Patient Summary screen')
893 'force_billing_widget_open' => array(
894 xl('Force Billing Widget Open'),
895 'bool', // data type
896 '0', // default = false
897 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
900 'activate_ccr_ccd_report' => array(
901 xl('Activate CCR/CCD Reporting'),
902 'bool', // data type
903 '1', // default = true
904 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
907 'drive_encryption' => array(
908 xl('Enable Encryption of Items Stored on Drive'),
909 'bool', // data type
910 '1', // default = true
911 xl('This will enable encryption of items that are stored on the drive.')
914 'couchdb_encryption' => array(
915 xl('Enable Encryption of Items Stored on CouchDB'),
916 'bool', // data type
917 '1', // default = true
918 xl('This will enable encryption of items that are stored on CouchDB.')
921 'hide_document_encryption' => array(
922 xl('Hide Encryption/Decryption Options In Document Management'),
923 'bool', // data type
924 '0', // default = true
925 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
928 'use_custom_immun_list' => array(
929 xl('Use Custom Immunization List'),
930 'bool', // data type
931 '0', // default = true
932 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
935 'amendments' => array(
936 xl('Amendments'),
937 'bool', // data type
938 '1', // default = true
939 xl('Enable amendments feature')
942 'allow_pat_delete' => array(
943 xl('Allow Administrators to Delete Patients'),
944 'bool', // data type
945 '0', // default = false
946 xl('Allow Administrators to Delete Patients')
950 'observation_results_immunization' => array(
951 xl('Immunization Observation Results'),
952 'bool', // data type
953 '1', // default
954 xl('Observation Results in Immunization')
957 'enable_help' => array(
958 xl('Enable Help Modal'),
959 array(
960 '0' => xl('Hide Help Modal'),
961 '1' => xl('Show Help Modal'),
962 '2' => xl('Disable Help Modal'),
963 ), // data type
964 '1', // default = Print End of Day Report 1
965 xl('This will allow the display of help modal on help enabled pages')
967 'messages_due_date' => array(
968 xl('Messages - due date'),
969 'bool', // data type
970 '0', // default false
971 xl('Enables choose due date to message')
974 'expand_form' => array(
975 xl('Expand Form'),
976 'bool', // data type
977 '1', // default false
978 xl('Open all expandable forms in expanded state')
982 // Report Tab
984 'Report' => array(
986 'use_custom_daysheet' => array(
987 xl('Use Custom End of Day Report'),
988 array(
989 '0' => xl('None'),
990 '1' => xl('Print End of Day Report 1'),
991 '2' => xl('Print End of Day Report 2'),
992 '3' => xl('Print End of Day Report 3'),
993 ), // data type
994 '1', // default = Print End of Day Report 1
995 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
998 'daysheet_provider_totals' => array(
999 xl('End of Day by Provider or allow Totals Only'),
1000 array(
1001 '0' => xl('Provider'),
1002 '1' => xl('Totals Only'),
1004 '1', // default
1005 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
1008 'ledger_begin_date' => array(
1009 xl('Beginning Date for Ledger Report'),
1010 array(
1011 'Y1' => xl('One Year Ago'),
1012 'Y2' => xl('Two Years Ago'),
1013 'M6' => xl('Six Months Ago'),
1014 'M3' => xl('Three Months Ago'),
1015 'M1' => xl('One Month Ago'),
1016 'D1' => xl('One Day Ago'),
1018 'Y1', // default = One Year
1019 xl('This is the Beginning date for the Ledger Report.')
1022 'print_next_appointment_on_ledger' => array(
1023 xl('Print the Next Appointment on the Bottom of the Ledger'),
1024 'bool', // data type
1025 '1', // default = true
1026 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
1029 'sales_report_invoice' => array(
1030 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
1031 array(
1032 '0' => xl('Invoice Number'),
1033 '1' => xl('Patient Name and ID'),
1034 '2' => xl('Patient Name and Invoice'),
1036 '2', // default = 2
1037 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
1040 'cash_receipts_report_invoice' => array(
1041 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
1042 array(
1043 '0' => xl('Invoice Number'),
1044 '1' => xl('Patient Name'),
1046 '0', // default = 0
1047 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
1052 // Billing Tab
1054 'Billing' => array(
1056 'ub04_support' => array(
1057 xl('Activate UB04/837I Claim Support'),
1058 'bool', // data type
1059 '0', // default = false
1060 xl('Allow institutional claims support.')
1063 'top_ubmargin_default' => array(
1064 xl('Default top print margin for UB04'),
1065 'num', // data type
1066 '14', // default
1067 xl('This is the default top print margin for UB04. It will adjust the final printed output up or down.')
1070 'left_ubmargin_default' => array(
1071 xl('Default left print margin for UB04'),
1072 'num', // data type
1073 '11', // default
1074 xl('This is the default left print margin for UB04. It will adjust the final printed output left or right.')
1077 'cms_top_margin_default' => array(
1078 xl('Default top print margin for CMS 1500'),
1079 'num', // data type
1080 '24', // default
1081 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
1084 'cms_left_margin_default' => array(
1085 xl('Default left print margin for CMS 1500'),
1086 'num', // data type
1087 '20', // default
1088 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
1091 'preprinted_cms_1500' => array(
1092 xl('Prints the CMS 1500 on the Preprinted form'),
1093 'bool', // data type
1094 '0', // default = false
1095 xl('Overlay CMS 1500 on the Preprinted form')
1098 'cms_1500_box_31_format' => array(
1099 xl('CMS 1500: Box 31 Format'),
1100 array(
1101 '0' => xl('Signature on File'),
1102 '1' => xl('Firstname Lastname'),
1103 '2' => xl('None'),
1105 '0', // default
1106 xl('This specifies whether to include date in Box 31.')
1109 'cms_1500_box_31_date' => array(
1110 xl('CMS 1500: Date in Box 31 (Signature)'),
1111 array(
1112 '0' => xl('None'),
1113 '1' => xl('Date of Service'),
1114 '2' => xl('Today'),
1116 '0', // default
1117 xl('This specifies whether to include date in Box 31.')
1120 'default_search_code_type' => array(
1121 xl('Default Search Code Type'),
1122 'all_code_types', // data type
1123 'ICD10', // default
1124 xl('The default code type to search for in the Fee Sheet.')
1127 'default_rendering_provider' => array(
1128 xl('Default Rendering Provider in Fee Sheet'),
1129 array(
1130 '0' => xl('Please Select'),
1131 '1' => xl('Current Provider'),
1132 '2' => xl('Current Logged in User'),
1134 '1',
1135 xl('Default selection for rendering provider in fee sheet.')
1138 'posting_adj_disable' => array(
1139 xl('Disable Auto Adjustment Calculations in EOB Posting'),
1140 'bool', // data type
1141 '0', // default = false
1142 xl('Turn off auto calculations of adjustments in EOB')
1145 'show_payment_history' => array(
1146 xl('Show all payment history in Patient Ledger'),
1147 'bool', // data type
1148 '1', // default = true
1149 xl('Turn on to show all payment history in Patient Ledger')
1152 'support_fee_sheet_line_item_provider' => array(
1153 xl('Support provider in line item in fee sheet'),
1154 'bool', // data type
1155 '0', // default = false
1156 xl('This Enables provider in line item in the fee sheet')
1159 'default_fee_sheet_line_item_provider' => array(
1160 xl('Default to a provider for line item in the fee sheet'),
1161 'bool', // data type
1162 '0', // default = false
1163 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1166 'replicate_justification' => array(
1167 xl('Automatically replicate justification codes in Fee Sheet'),
1168 'bool', // data type
1169 '0', // default = false
1170 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1173 'display_units_in_billing' => array(
1174 xl('Display the Units Column on the Billing Screen'),
1175 'bool', // data type
1176 '0', // default = false
1177 xl('Display the Units Column on the Billing Screen')
1180 'notes_to_display_in_Billing' => array(
1181 xl('Which notes are to be displayed in the Billing Screen'),
1182 array(
1183 '0' => xl('None'),
1184 '1' => xl('Encounter Billing Note'),
1185 '2' => xl('Patient Billing Note'),
1186 '3' => xl('All'),
1188 '3',
1189 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1192 'set_pos_code_encounter' => array(
1193 xl('Set POS code in encounter'),
1194 'bool', // data type
1195 '0', // default = false
1196 xl('This feature will allow the default POS facility code to be overridden from the encounter.')
1199 'statement_logo' => array(
1200 xl('Statement Logo GIF Filename'),
1201 'text', // data type
1202 'practice_logo.gif', // data type
1203 xl('Place your logo in sites/default/images and type the filename including gif extension here.')
1206 'use_custom_statement' => array(
1207 xl('Use Custom Statement'),
1208 'bool', // data type
1209 '0', // default = false
1210 xl('This will use the custom Statement showing the description instead of the codes.')
1213 'statement_appearance' => array(
1214 xl('Statement Appearance'),
1215 array(
1216 '0' => xl('Plain Text'),
1217 '1' => xl('Modern/images')
1218 ), // data type
1219 '1', // default = true
1220 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1223 'billing_phone_number' => array(
1224 xl('Custom Billing Phone Number'),
1225 'text', // data type
1227 xl('Phone number for billing inquiries')
1230 'show_aging_on_custom_statement' => array(
1231 xl('Show Aging on Custom Statement'),
1232 'bool', // data type
1233 '0', // default = false
1234 xl('This will Show Aging on the custom Statement.')
1237 'use_statement_print_exclusion' => array(
1238 xl('Allow Statement Exclusions from Printing'),
1239 'bool', // data type
1240 '0', // default = false
1241 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1244 'minimum_amount_to_print' => array(
1245 xl('Total Minimum Amount of Statement to Allow Printing'),
1246 'num', // data type
1247 '1.00',
1248 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1251 'statement_bill_note_print' => array(
1252 xl('Print Patient Billing Note'),
1253 'bool', // data type
1254 '0', // default = false
1255 xl('This will allow printing of the Patient Billing Note on the statements.')
1258 'number_appointments_on_statement' => array(
1259 xl('Number of Appointments on Statement'),
1260 'num', // data type
1261 '0', // default = 0
1262 xl('The Number of Future Appointments to Display on the Statement.')
1265 'statement_message_to_patient' => array(
1266 xl('Print Custom Message'),
1267 'bool', // data type
1268 '0', // default = false
1269 xl('This will allow printing of a custom Message on the statements.')
1272 'statement_msg_text' => array(
1273 xl('Custom Statement message'),
1274 'text', // data type
1276 xl('Text for Custom statement message.')
1279 'use_dunning_message' => array(
1280 xl('Use Custom Dunning Messages'),
1281 'bool', // data type
1282 '0', // default = false
1283 xl('This will allow use of the custom Dunning Messages on the statements.')
1286 'first_dun_msg_set' => array(
1287 xl('Number of days before showing first account message'),
1288 'num', // data type
1289 '30',
1290 xl('Number of days before showing first account message.')
1293 'first_dun_msg_text' => array(
1294 xl('First account message'),
1295 'text', // data type
1297 xl('Text for first account message.')
1300 'second_dun_msg_set' => array(
1301 xl('Number of days before showing second account message'),
1302 'num', // data type
1303 '60',
1304 xl('Number of days before showing second account message')
1307 'second_dun_msg_text' => array(
1308 xl('Second account message'),
1309 'text', // data type
1311 xl('Text for second account message.')
1314 'third_dun_msg_set' => array(
1315 xl('Number of days before showing third account message'),
1316 'num', // data type
1317 '90',
1318 xl('Number of days before showing third account message')
1321 'third_dun_msg_text' => array(
1322 xl('Third account message'),
1323 'text', // data type
1325 xl('Text for third account message.')
1328 'fourth_dun_msg_set' => array(
1329 xl('Number of days before showing fourth account message'),
1330 'num', // data type
1331 '120',
1332 xl('Number of days before showing fourth account message')
1335 'fourth_dun_msg_text' => array(
1336 xl('Fourth account message'),
1337 'text', // data type
1339 xl('Text for fourth account message.')
1342 'fifth_dun_msg_set' => array(
1343 xl('Number of days before showing fifth account message'),
1344 'num', // data type
1345 '150',
1346 xl('Number of days before showing fifth account message')
1349 'fifth_dun_msg_text' => array(
1350 xl('Fifth account message'),
1351 'text', // data type
1353 xl('Text for fifth account message.')
1356 'save_codes_history' => array(
1357 xl('Save codes history'),
1358 'bool', // data type
1359 '1', // default
1360 xl('Save codes history')
1363 'update_mbi' => array(
1364 xl('Update policy number from ERA'),
1365 'bool', // data type
1366 '0', // default
1367 xl('Update policy number from ERA')
1370 'enable_percent_pricing' => array(
1371 xl('Enable percent-based price levels'),
1372 'bool', // data type
1373 '0', // default
1374 xl('Enable percent-based price levels')
1378 // E-Sign Tab
1380 'E-Sign' => array(
1382 'esign_all' => array(
1383 xl('Allows E-Sign on the entire encounter'),
1384 'bool', // data type
1385 '0', // default = false
1386 xl('This will enable signing an entire encounter, rather than individual forms')
1389 'lock_esign_all' => array(
1390 xl('Lock e-signed encounters and their forms'),
1391 'bool', // data type
1392 '0', // default = false
1393 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1396 'esign_individual' => array(
1397 xl('Allows E-Signing Individual Forms'),
1398 'bool', // data type
1399 '1', // default = false
1400 xl('This will enable signing individual forms separately')
1403 'lock_esign_individual' => array(
1404 xl('Lock an e-signed form individually'),
1405 'bool', // data type
1406 '1', // default = false
1407 xl('This will disable the Edit button on any form that is e-signed')
1410 'esign_lock_toggle' => array(
1411 xl('Enable lock toggle'),
1412 'bool', // data type
1413 '0', // default = false
1414 xl('This will give the user the option to lock (separate locking and signing)')
1417 'esign_report_hide_empty_sig' => array(
1418 xl('Hide Empty E-Sign Logs On Report'),
1419 'bool', // data type
1420 '1', // default = false
1421 xl('This will hide empty e-sign logs on the patient report')
1425 //Documents Tab
1426 'Documents' => array(
1428 'document_storage_method' => array(
1429 xl('Document Storage Method'),
1430 array(
1431 '0' => xl('Hard Disk'),
1432 '1' => xl('CouchDB')
1434 '0', // default
1435 xl('Option to save method of document storage.')
1438 'couchdb_host' => array(
1439 xl('CouchDB HostName'),
1440 'text',
1441 'localhost',
1442 xl('CouchDB host'),
1444 'couchdb_user' => array(
1445 xl('CouchDB UserName'),
1446 'text',
1448 xl('Username to connect to CouchDB'),
1450 'couchdb_pass' => array(
1451 xl('CouchDB Password'),
1452 'encrypted', // data type
1454 xl('Password to connect to CouchDB'),
1456 'couchdb_port' => array(
1457 xl('CouchDB Port'),
1458 'text',
1459 '6984',
1460 xl('CouchDB port'),
1462 'couchdb_dbase' => array(
1463 xl('CouchDB Database'),
1464 'text',
1466 xl('CouchDB database name'),
1468 'couchdb_connection_ssl' => array(
1469 xl('CouchDB Connection SSL'),
1470 'bool',
1471 '1',
1472 xl('Use SSL (encrypted) connection to CouchDB'),
1474 'couchdb_ssl_allow_selfsigned' => array(
1475 xl('CouchDB SSL Allow Selfsigned Certificate'),
1476 'bool',
1477 '0',
1478 xl('Allow self-signed certificate for SSL (encrypted) connection to CouchDB'),
1480 'couchdb_log' => array(
1481 xl('CouchDB Log Enable'),
1482 'bool',
1483 '0',
1484 xl('Enable log for document uploads/downloads to CouchDB'),
1487 'expand_document_tree' => array(
1488 xl('Expand All Document Categories'),
1489 'bool', // data type
1490 '0', // default = false
1491 xl('Expand All Document Categories by Default')
1494 'patient_id_category_name' => array(
1495 xl('Patient ID Category Name'),
1496 'text', // data type
1497 'Patient ID card', // default
1498 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1501 'patient_photo_category_name' => array(
1502 xl('Patient Photo Category Name'),
1503 'text', // data type
1504 'Patient Photograph', // default
1505 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1508 'lab_results_category_name' => array(
1509 xl('Lab Results Category Name'),
1510 'text', // data type
1511 'Lab Report', // default
1512 xl('Document category name for storage of electronically received lab results.')
1515 'gbl_mdm_category_name' => array(
1516 xl('MDM Document Category Name'),
1517 'text', // data type
1518 'Lab Report', // default
1519 xl('Document category name for storage of electronically received MDM documents.')
1521 'generate_doc_thumb' => array(
1522 xl('Generate thumbnail'),
1523 'bool',
1524 '0',
1525 xl('Generate thumbnail images'),
1527 'thumb_doc_max_size' => array(
1528 xl('Thumbnail size'),
1529 'text', // data type
1530 '100', // default
1531 xl('Maximum size of thumbnail file')
1535 // Calendar Tab
1537 'Calendar' => array(
1539 'disable_calendar' => array(
1540 xl('Disable Calendar'),
1541 'bool', // data type
1542 '0', // default
1543 xl('Do not display the calendar.')
1546 'schedule_start' => array(
1547 xl('Calendar Starting Hour'),
1548 'hour',
1549 '8', // default
1550 xl('Beginning hour of day for calendar events.')
1553 'schedule_end' => array(
1554 xl('Calendar Ending Hour'),
1555 'hour',
1556 '17', // default
1557 xl('Ending hour of day for calendar events.')
1560 'calendar_interval' => array(
1561 xl('Calendar Interval'),
1562 array(
1563 '5' => '5',
1564 '10' => '10',
1565 '15' => '15',
1566 '20' => '20',
1567 '30' => '30',
1568 '60' => '60',
1570 '15', // default
1571 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1574 'calendar_view_type' => array(
1575 xl('Default Calendar View'),
1576 array(
1577 'day' => xl('Day'),
1578 'week' => xl('Week'),
1579 'month' => xl('Month'),
1581 'day', // default
1582 xl('This sets the Default Calendar View, Default is Day.')
1585 'first_day_week' => array(
1586 xl('First day in the week'),
1587 array(
1588 '1' => xl('Monday'),
1589 '0' => xl('Sunday'),
1590 '6' => xl('Saturday')
1592 '1',
1593 xl('Your first day of the week.')
1596 'calendar_appt_style' => array(
1597 xl('Appointment Display Style'),
1598 array(
1599 '1' => xl('Last name'),
1600 '2' => xl('Last name, first name'),
1601 '3' => xl('Last name, first name (title)'),
1602 '4' => xl('Last name, first name (title: comments)'),
1604 '2', // default
1605 xl('This determines how appointments display on the calendar.')
1608 'event_color' => array(
1609 xl('Appointment/Event Color'),
1610 array(
1611 '1' => xl('Category Color Schema'),
1612 '2' => xl('Facility Color Schema'),
1613 ), // data type
1614 '1', // default
1615 xl('This determines which color schema used for appointment')
1618 'number_of_appts_to_show' => array(
1619 xl('Appointments - Patient Summary - Number to Display'),
1620 'num',
1621 '10',
1622 xl('Number of Appointments to display in the Patient Summary')
1625 'number_of_group_appts_to_show' => array(
1626 xl('Appointments - Group Summary - Number to Display'),
1627 'num',
1628 '10',
1629 xl('Number of Appointments to display in the Group Summary')
1632 'number_of_ex_appts_to_show' => array(
1633 xl('Excluded Appointments - Tooltip - Number to Display'),
1634 'num',
1635 '15',
1636 xl('Number of Excluded Appointments to display in the Tooltip')
1639 'appt_display_sets_option' => array(
1640 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1641 'bool', // data type
1642 '1', // default
1643 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1646 'appt_display_sets_color_1' => array(
1647 xl('Appointment Display Sets - Color 1'),
1648 'color_code',
1649 '#FFFFFF',
1650 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).')
1653 'appt_display_sets_color_2' => array(
1654 xl('Appointment Display Sets - Color 2'),
1655 'color_code',
1656 '#E6E6FF',
1657 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).')
1660 'appt_display_sets_color_3' => array(
1661 xl('Appointment Display Sets - Color 3'),
1662 'color_code',
1663 '#E6FFE6',
1664 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1667 'appt_display_sets_color_4' => array(
1668 xl('Appointment Display Sets - Color 4'),
1669 'color_code',
1670 '#FFE6FF',
1671 xl('Color for the last set when not all member appointments are displayed.')
1674 'appt_recurrences_widget' => array(
1675 xl('Recurrent Appointment Display Widget'),
1676 'bool', // data type
1677 '1', // default
1678 xl('Display the recurrent appointment widget in the patient summary.')
1681 'num_past_appointments_to_show' => array(
1682 xl('Past Appointment Display Widget'),
1683 'num', // data type
1684 '0', // default = false
1685 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)')
1688 'docs_see_entire_calendar' => array(
1689 xl('Providers See Entire Calendar'),
1690 'bool', // data type
1691 '0', // default
1692 xl('Check this if you want providers to see all appointments by default and not just their own.')
1695 'auto_create_new_encounters' => array(
1696 xl('Auto-Create New Encounters'),
1697 array(
1698 '0' => xl('Off'),
1699 '1' => xl('One Encounter Per Day'),
1700 '2' => xl('Allow Encounter For Each Appointment')
1702 '1',
1703 xl('Automatically create a new encounter when an appointment check in status is selected.') . " " .
1704 xl('The Each Appointment option will allow a new encounter regardless of same day visit.') . " " .
1705 xl('The appointment status changes and encounter creations are managed through the Patient Tracker.')
1708 'allow_early_check_in' => array(
1709 xl('Allow Early Check In'),
1710 'bool', // data type
1711 '1', // default
1712 xl("Allow Check In before the appointment's time.")
1715 'submit_changes_for_all_appts_at_once' => array(
1716 xl('Submit Changes For All Appts At Once'),
1717 'bool', // data type
1718 '1', // default
1719 xl('Enables to submit changes for all appointments of a recurrence at once.')
1722 'disable_pat_trkr' => array(
1723 xl('Flow Board: Disable'),
1724 'bool', // data type
1725 '0', // default
1726 xl('Completely remove the ability to display the Patient Flow Board.')
1729 'ptkr_visit_reason' => array(
1730 xl('Flow Board: Show Visit Reason'),
1731 'bool', // data type
1732 '0', // default = false
1733 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1736 'ptkr_show_pid' => array(
1737 xl('Flow Board: Show Patient ID'),
1738 'bool', // data type
1739 '1', // default = true
1740 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1743 'ptkr_show_encounter' => array(
1744 xl('Flow Board: Show Encounter Number'),
1745 'bool', // data type
1746 '1', // default = true
1747 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1750 'ptkr_show_staff' => array(
1751 xl('Flow Board: Show Staff Action'),
1752 'bool', // data type
1753 '1', // default = true
1754 xl('When Checked, Last Staff to Update Board Will Show in Patient Flow Board.')
1757 'ptkr_date_range' => array(
1758 xl('Flow Board: Allow Date Range'),
1759 'bool', // data type
1760 '1', // default = true
1761 xl('This Allows a Date Range to be Selected in Patient Flow Board.')
1764 'ptkr_start_date' => array(
1765 xl('Flow Board: Default Starting Date'),
1766 array(
1767 'D0' => xl('Current Day'),
1768 'B0' => xl('Beginning of Current Work Week'),
1770 'D0', // default = Current Day
1771 xl('This is the default Beginning date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1774 'ptkr_end_date' => array(
1775 xl('Flow Board: Default Ending Date'),
1776 array(
1777 'Y1' => xl('One Year Ahead'),
1778 'Y2' => xl('Two Years Ahead'),
1779 'M6' => xl('Six Months Ahead'),
1780 'M3' => xl('Three Months Ahead'),
1781 'M1' => xl('One Month Ahead'),
1782 'D7' => xl('One Week Ahead'),
1783 'D1' => xl('One Day Ahead'),
1784 'D0' => xl('Current Day'),
1786 'D0', // default = One Day Ahead
1787 xl('This is the default Ending date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1790 'pat_trkr_timer' => array(
1791 xl('Flow Board: Timer Refresh Interval'),
1792 array(
1793 '0' => xl('No automatic refresh'),
1794 '0:10' => '10',
1795 '0:20' => '20',
1796 '0:30' => '30',
1797 '0:40' => '40',
1798 '0:50' => '50',
1799 '0:59' => '60',
1801 '0:20', // default
1802 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1805 'checkout_roll_off' => array(
1806 xl('Flow Board: display completed checkouts (minutes)'),
1807 'num',
1808 '0', // default
1809 xl('Flow Board will only display completed checkouts for this many minutes. Zero is continuous display.')
1812 'drug_screen' => array(
1813 xl('Flow Board: Enable Random Drug Testing'),
1814 'bool', // data type
1815 '0', // default
1816 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1819 'drug_testing_percentage' => array(
1820 xl('Flow Board: Percentage of Patients to Drug Test'),
1821 'num',
1822 '33', // default
1823 xl('Percentage of Patients to select for Random Drug Testing.')
1826 'maximum_drug_test_yearly' => array(
1827 xl('Flow Board: Max tests per Patient per year'),
1828 'num',
1829 '0', // default
1830 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1833 'disable_rcb' => array(
1834 xl('Recall Board: Disable'),
1835 'bool', // data type
1836 '0', // default
1837 xl('Do not display the Recall Board.')
1844 // Insurance Tab
1845 'Insurance' => array(
1846 'enable_oa' => array(
1847 xl('Enable Office Ally Insurance Eligibility'),
1848 'bool',
1849 '0',
1850 xl('Allow insurance eligibility checks using Office Ally')
1853 'simplified_demographics' => array(
1854 xl('Simplified Demographics'),
1855 'bool', // data type
1856 '0', // default = false
1857 xl('Omit insurance and some other things from the demographics form')
1860 'insurance_information' => array(
1861 xl('Show Additional Insurance Information'), // descriptive name
1862 array(
1863 '0' => xl('None'),
1864 '1' => xl('Address Only'),
1865 '2' => xl('Address and Postal Code'),
1866 '3' => xl('Address and State'),
1867 '4' => xl('Address, State and Postal Code'),
1868 '5' => xl('Address, City, State and Postal Code'),
1869 '6' => xl('Postal Code and Box Number')
1871 '5', // default
1872 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
1875 'disable_eligibility_log' => array(
1876 xl('Disable Insurance Eligibility Reports Download'),
1877 'bool',
1878 '0',
1879 xl('Do not allow insurance eligibility report log download')
1882 'insurance_only_one' => array(
1883 xl('Allow only one insurance'),
1884 'bool', // data type
1885 '0', // default = false
1886 xl('Allow more than one insurance')
1889 // Security Tab
1891 'Security' => array(
1892 'sql_string_no_show_screen' => array(
1893 xl('Mode - Do Not Show SQL Queries'),
1894 'bool', // data type
1895 '0', // default
1896 xl('Do not allow SQL queries to be outputted to screen.')
1898 'timeout' => array(
1899 xl('Idle Session Timeout Seconds'),
1900 'num', // data type
1901 '7200', // default
1902 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1904 'secure_upload' => array(
1905 xl('Secure Upload Files with White List'),
1906 'bool', // data type
1907 '1', // default
1908 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1910 'secure_password' => array(
1911 xl('Require Strong Passwords'),
1912 'bool', // data type
1913 '1', // default
1914 xl('Strong password means at least one of each: a number, a lowercase letter, an uppercase letter, a special character.')
1917 'gbl_minimum_password_length' => array(
1918 xl('Minimum Password Length'),
1919 array(
1920 '0' => xl('No Minimum'),
1921 '4' => '4',
1922 '5' => '5',
1923 '6' => '6',
1924 '7' => '7',
1925 '8' => '8',
1926 '9' => '9',
1927 '10' => '10',
1928 '11' => '11',
1929 '12' => '12',
1930 '13' => '13',
1931 '14' => '14',
1932 '15' => '15',
1933 '16' => '16',
1934 '17' => '17',
1935 '18' => '18',
1936 '19' => '19',
1937 '20' => '20',
1939 '9', // default
1940 xl('Minimum length of password.')
1943 'password_history' => array(
1944 xl('Require Unique Passwords'),
1945 array(
1946 '0' => xl('No'),
1947 '1' => '1',
1948 '2' => '2',
1949 '3' => '3',
1950 '4' => '4',
1951 '5' => '5',
1953 '5', // default
1954 xl('Set to the number of prior passwords that are not allowed to use when changing a password.')
1957 'password_expiration_days' => array(
1958 xl('Default Password Expiration Days'),
1959 'num', // data type
1960 '180', // default
1961 xl('Default password expiration period in days. 0 means this feature is disabled.')
1964 'password_grace_time' => array(
1965 xl('Password Expiration Grace Period'),
1966 'num', // data type
1967 '30', // default
1968 xl('Period in days where a user may login with an expired password.')
1971 'password_max_failed_logins' => array(
1972 xl('Maximum Failed Login Attempts'),
1973 'num', // data type
1974 '0', // default
1975 xl('Maximum Failed Login Attempts (0 for no maximum).')
1978 'is_client_ssl_enabled' => array(
1979 xl('Enable Client SSL'),
1980 'bool', // data type
1981 '0', // default
1982 xl('Enable client SSL certificate authentication.')
1985 'certificate_authority_crt' => array(
1986 xl('Path to CA Certificate File'),
1987 'text', // data type
1988 '', // default
1989 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1992 'certificate_authority_key' => array(
1993 xl('Path to CA Key File'),
1994 'text', // data type
1995 '', // default
1996 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1999 'client_certificate_valid_in_days' => array(
2000 xl('Client Certificate Expiration Days'),
2001 'num', // data type
2002 '365', // default
2003 xl('Number of days that the client certificate is valid.')
2006 'Emergency_Login_email_id' => array(
2007 xl('Emergency Login Email Address'),
2008 'text', // data type
2009 '', // default
2010 xl('Email address, if any, to receive emergency login user activation messages.')
2013 'new_validate' => array(
2014 xl('New form validation'),
2015 'bool',
2016 '1',
2017 xl('New form validation')
2020 'allow_multiple_databases' => array(
2021 xl('Allow multiple databases'),
2022 'bool',
2023 '0',
2024 xl('Allow to use with multiple database')
2027 'safe_key_database' => array(
2028 xl('Safe key database'),
2029 'text', // data type
2030 '', // default
2031 xl('Key for multiple database credentials encryption')
2034 'gbl_ldap_enabled' => array(
2035 xl('Use LDAP for Authentication'),
2036 'bool',
2037 '0',
2038 xl('If enabled, use LDAP for login and authentication.')
2040 'gbl_ldap_host' => array(
2041 xl('LDAP - Server Name or URI'),
2042 'text',
2044 xl('The hostname or URI of your LDAP or Active Directory server.')
2046 'gbl_ldap_dn' => array(
2047 xl('LDAP - Distinguished Name of User'),
2048 'text',
2050 xl('Embed {login} where the OpenEMR login name of the user is to be; for example: uid={login},dc=example,dc=com')
2052 'gbl_ldap_exclusions' => array(
2053 xl('LDAP - Login Exclusions'),
2054 'text',
2056 xl('Comma-separated list of login names to use normal authentication instead of LDAP; useful for setup and debugging.')
2059 'gbl_debug_hash_verify_execution_time' => array(
2060 xl('Debug Hash Verification Time'),
2061 'bool',
2062 '0',
2063 xl('If enabled, this will send the execution time it took to verify hash to the php error log.')
2066 'gbl_auth_hash_algo' => array(
2067 xl('Hash Algorithm for Authentication'),
2068 array(
2069 'DEFAULT' => xl('PHP Default'),
2070 'BCRYPT' => xl('Bcrypt'),
2071 'ARGON2I' => xl('Argon2I') . ' (PHP 7.3 or greater)',
2072 'ARGON2ID' => xl('Argon2ID') . ' (PHP 7.3 or greater)',
2074 'DEFAULT', // default
2075 xl('Hashing algorithm for authentication. Suggest PHP Default unless you know what you are doing.')
2078 'gbl_auth_bcrypt_hash_cost' => array(
2079 xl('Authentication Token Bcrypt Hash Cost'),
2080 array(
2081 'DEFAULT' => xl('PHP Default'),
2082 '5' => '5',
2083 '6' => '6',
2084 '7' => '7',
2085 '8' => '8',
2086 '9' => '9',
2087 '10' => '10',
2088 '11' => '11',
2089 '12' => '12',
2090 '13' => '13',
2091 '14' => '14',
2092 '15' => '15',
2093 '16' => '16',
2094 '17' => '17',
2095 '18' => '18',
2096 '19' => '19',
2097 '20' => '20',
2099 'DEFAULT', // default
2100 xl('Authentication bcrypt hash cost. Suggest PHP Default unless you know what you are doing.')
2103 'gbl_auth_argon_hash_memory_cost' => array(
2104 xl('Authentication Argon Hash Memory Cost'),
2105 array(
2106 'DEFAULT' => xl('PHP Default'),
2107 '512' => '512',
2108 '1024' => '1024',
2109 '2048' => '2048',
2110 '4096' => '4096',
2111 '8192' => '8192',
2112 '16384' => '16384',
2113 '32768' => '32768',
2114 '65536' => '65536',
2115 '131072' => '131072',
2116 '262144' => '262144',
2117 '524288' => '524288',
2118 '1048576' => '1048576',
2119 '2097152' => '2097152',
2121 'DEFAULT', // default
2122 xl('Authentication argon hash memory cost. Suggest PHP Default unless you know what you are doing.')
2125 'gbl_auth_argon_hash_time_cost' => array(
2126 xl('Authentication Argon Hash Time Cost'),
2127 array(
2128 'DEFAULT' => xl('PHP Default'),
2129 '1' => '1',
2130 '2' => '2',
2131 '3' => '3',
2132 '4' => '4',
2133 '5' => '5',
2134 '6' => '6',
2135 '7' => '7',
2136 '8' => '8',
2137 '9' => '9',
2138 '10' => '10',
2139 '11' => '11',
2140 '12' => '12',
2141 '13' => '13',
2142 '14' => '14',
2143 '15' => '15',
2144 '16' => '16',
2145 '17' => '17',
2146 '18' => '18',
2147 '19' => '19',
2148 '20' => '20',
2150 'DEFAULT', // default
2151 xl('Authentication argon hash time cost. Suggest PHP Default unless you know what you are doing.')
2154 'gbl_auth_argon_hash_thread_cost' => array(
2155 xl('Authentication Argon Hash Thread Number'),
2156 array(
2157 'DEFAULT' => xl('PHP Default'),
2158 '1' => '1',
2159 '2' => '2',
2160 '3' => '3',
2161 '4' => '4',
2162 '5' => '5',
2163 '6' => '6',
2164 '7' => '7',
2165 '8' => '8',
2166 '9' => '9',
2167 '10' => '10',
2168 '11' => '11',
2169 '12' => '12',
2170 '13' => '13',
2171 '14' => '14',
2172 '15' => '15',
2173 '16' => '16',
2174 '17' => '17',
2175 '18' => '18',
2176 '19' => '19',
2177 '20' => '20',
2179 'DEFAULT', // default
2180 xl('Authentication argon hash thread number. Suggest PHP Default unless you know what you are doing.')
2183 'gbl_token_hash_algo' => array(
2184 xl('Hash Algorithm for Token'),
2185 array(
2186 'DEFAULT' => xl('PHP Default'),
2187 'BCRYPT' => xl('Bcrypt'),
2188 'ARGON2I' => xl('Argon2I') . ' (PHP 7.3 or greater)',
2189 'ARGON2ID' => xl('Argon2ID') . ' (PHP 7.3 or greater)',
2191 'DEFAULT', // default
2192 xl('Hashing algorithm for token. Suggest PHP Default unless you know what you are doing.')
2195 'gbl_token_bcrypt_hash_cost' => array(
2196 xl('Token Bcrypt Hash Cost'),
2197 array(
2198 'DEFAULT' => xl('PHP Default'),
2199 '5' => '5',
2200 '6' => '6',
2201 '7' => '7',
2202 '8' => '8',
2203 '9' => '9',
2204 '10' => '10',
2205 '11' => '11',
2206 '12' => '12',
2207 '13' => '13',
2208 '14' => '14',
2209 '15' => '15',
2210 '16' => '16',
2211 '17' => '17',
2212 '18' => '18',
2213 '19' => '19',
2214 '20' => '20',
2216 'DEFAULT', // default
2217 xl('Token bcrypt hash cost. Suggest PHP Default unless you know what you are doing.')
2220 'gbl_token_argon_hash_memory_cost' => array(
2221 xl('Token Argon Hash Memory Cost'),
2222 array(
2223 'DEFAULT' => xl('PHP Default'),
2224 '512' => '512',
2225 '1024' => '1024',
2226 '2048' => '2048',
2227 '4096' => '4096',
2228 '8192' => '8192',
2229 '16384' => '16384',
2230 '32768' => '32768',
2231 '65536' => '65536',
2232 '131072' => '131072',
2233 '262144' => '262144',
2234 '524288' => '524288',
2235 '1048576' => '1048576',
2236 '2097152' => '2097152',
2238 'DEFAULT', // default
2239 xl('Token argon hash memory cost. Suggest PHP Default unless you know what you are doing.')
2242 'gbl_token_argon_hash_time_cost' => array(
2243 xl('Token Argon Hash Time Cost'),
2244 array(
2245 'DEFAULT' => xl('PHP Default'),
2246 '1' => '1',
2247 '2' => '2',
2248 '3' => '3',
2249 '4' => '4',
2250 '5' => '5',
2251 '6' => '6',
2252 '7' => '7',
2253 '8' => '8',
2254 '9' => '9',
2255 '10' => '10',
2256 '11' => '11',
2257 '12' => '12',
2258 '13' => '13',
2259 '14' => '14',
2260 '15' => '15',
2261 '16' => '16',
2262 '17' => '17',
2263 '18' => '18',
2264 '19' => '19',
2265 '20' => '20',
2267 'DEFAULT', // default
2268 xl('Token argon hash time cost. Suggest PHP Default unless you know what you are doing.')
2271 'gbl_token_argon_hash_thread_cost' => array(
2272 xl('Token Argon Hash Thread Number'),
2273 array(
2274 'DEFAULT' => xl('PHP Default'),
2275 '1' => '1',
2276 '2' => '2',
2277 '3' => '3',
2278 '4' => '4',
2279 '5' => '5',
2280 '6' => '6',
2281 '7' => '7',
2282 '8' => '8',
2283 '9' => '9',
2284 '10' => '10',
2285 '11' => '11',
2286 '12' => '12',
2287 '13' => '13',
2288 '14' => '14',
2289 '15' => '15',
2290 '16' => '16',
2291 '17' => '17',
2292 '18' => '18',
2293 '19' => '19',
2294 '20' => '20',
2296 'DEFAULT', // default
2297 xl('Token argon hash thread number. Suggest PHP Default unless you know what you are doing.')
2301 // Notifications Tab
2303 'Notifications' => array(
2305 'patient_reminder_sender_name' => array(
2306 xl('Patient Reminder Sender Name'),
2307 'text', // data type
2308 '', // default
2309 xl('Name of the sender for patient reminders.')
2312 'patient_reminder_sender_email' => array(
2313 xl('Patient Reminder Sender Email'),
2314 'text', // data type
2315 '', // default
2316 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.')
2319 'practice_return_email_path' => array(
2320 xl('Notification Email Address'),
2321 'text', // data type
2322 '', // default
2323 xl('Email address, if any, to receive administrative notifications.')
2326 'EMAIL_METHOD' => array(
2327 xl('Email Transport Method'),
2328 array(
2329 'PHPMAIL' => 'PHPMAIL',
2330 'SENDMAIL' => 'SENDMAIL',
2331 'SMTP' => 'SMTP',
2333 'SMTP', // default
2334 xl('Method for sending outgoing email.')
2337 'SMTP_HOST' => array(
2338 xl('SMTP Server Hostname'),
2339 'text', // data type
2340 'localhost', // default
2341 xl('If SMTP is used, the server`s hostname or IP address.')
2344 'SMTP_PORT' => array(
2345 xl('SMTP Server Port Number'),
2346 'num', // data type
2347 '25', // default
2348 xl('If SMTP is used, the server`s TCP port number (usually 25).')
2351 'SMTP_USER' => array(
2352 xl('SMTP User for Authentication'),
2353 'text', // data type
2354 '', // default
2355 xl('Must be empty if SMTP authentication is not used.')
2358 'SMTP_PASS' => array(
2359 xl('SMTP Password for Authentication'),
2360 'encrypted', // data type
2361 '', // default
2362 xl('Must be empty if SMTP authentication is not used.')
2365 'SMTP_SECURE' => array(
2366 xl('SMTP Security Protocol'),
2367 array(
2368 '' => xl('None'),
2369 'ssl' => 'SSL',
2370 'tls' => 'TLS'
2373 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
2376 'EMAIL_NOTIFICATION_HOUR' => array(
2377 xl('Email Notification Hours'),
2378 'num', // data type
2379 '50', // default
2380 xl('Number of hours in advance to send email notifications.')
2383 'SMS_NOTIFICATION_HOUR' => array(
2384 xl('SMS Notification Hours'),
2385 'num', // data type
2386 '50', // default
2387 xl('Number of hours in advance to send SMS notifications.')
2390 'SMS_GATEWAY_USENAME' => array(
2391 xl('SMS Gateway Username'),
2392 'text', // data type
2393 '', // default
2394 xl('Username for SMS Gateway.')
2397 'SMS_GATEWAY_PASSWORD' => array(
2398 xl('SMS Gateway Password'),
2399 'text', // data type
2400 '', // default
2401 xl('Password for SMS Gateway.')
2404 'SMS_GATEWAY_APIKEY' => array(
2405 xl('SMS Gateway API Key'),
2406 'text', // data type
2407 '', // default
2408 xl('API key for SMS Gateway.')
2411 'phone_notification_hour' => array(
2412 xl('Phone Notification Hour'),
2413 'num', // data type
2414 '50', // default
2415 xl('Number of hours in advance to send Phone notification.')
2418 'phone_gateway_username' => array(
2419 xl('Phone Gateway Username'),
2420 'text', // data type
2421 '', // default
2422 xl('Username for Phone Gateway.')
2425 'phone_gateway_password' => array(
2426 xl('Phone Gateway Password'),
2427 'encrypted', // data type
2428 '', // default
2429 xl('Password for Phone Gateway.')
2432 'phone_gateway_url' => array(
2433 xl('Phone Gateway URL'),
2434 'text', // data type
2435 '', // default
2436 xl('URL for Phone Gateway.')
2441 // CDR (Clinical Decision Rules)
2443 'CDR' => array(
2445 'enable_cdr' => array(
2446 xl('Enable Clinical Decisions Rules (CDR)'),
2447 'bool', // data type
2448 '1', // default
2449 xl('Enable Clinical Decisions Rules (CDR)')
2452 'enable_allergy_check' => array(
2453 xl('Enable Allergy Check'),
2454 'bool', // data type
2455 '1', // default
2456 xl('Enable Allergy Check Against Medications and Prescriptions')
2459 'enable_alert_log' => array(
2460 xl('Enable Alert Log'),
2461 'bool', // data type
2462 '1', // default
2463 xl('Enable Alert Logging')
2466 'enable_cdr_new_crp' => array(
2467 xl('Enable Clinical Passive New Reminder(s) Popup'),
2468 'bool', // data type
2469 '1', // default
2470 xl('Enable Clinical Passive New Reminder(s) Popup')
2473 'enable_cdr_crw' => array(
2474 xl('Enable Clinical Passive Reminder Widget'),
2475 'bool', // data type
2476 '1', // default
2477 xl('Enable Clinical Passive Reminder Widget')
2480 'enable_cdr_crp' => array(
2481 xl('Enable Clinical Active Reminder Popup'),
2482 'bool', // data type
2483 '1', // default
2484 xl('Enable Clinical Active Reminder Popup')
2487 'enable_cdr_prw' => array(
2488 xl('Enable Patient Reminder Widget'),
2489 'bool', // data type
2490 '1', // default
2491 xl('Enable Patient Reminder Widget')
2494 'enable_cqm' => array(
2495 xl('Enable CQM Reporting'),
2496 'bool', // data type
2497 '1', // default
2498 xl('Enable Clinical Quality Measure (CQM) Reporting')
2501 'pqri_registry_name' => array(
2502 xl('PQRI Registry Name'),
2503 'text', // data type
2504 'Model Registry', // default
2505 xl('PQRI Registry Name')
2508 'pqri_registry_id' => array(
2509 xl('PQRI Registry ID'),
2510 'text', // data type
2511 '125789123', // default
2512 xl('PQRI Registry ID')
2515 'enable_amc' => array(
2516 xl('Enable AMC Reporting'),
2517 'bool', // data type
2518 '1', // default
2519 xl('Enable Automated Measure Calculations (AMC) Reporting')
2522 'enable_amc_prompting' => array(
2523 xl('Enable AMC Prompting'),
2524 'bool', // data type
2525 '1', // default
2526 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
2529 'enable_amc_tracking' => array(
2530 xl('Enable AMC Tracking'),
2531 'bool', // data type
2532 '1', // default
2533 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
2536 'cdr_report_nice' => array(
2537 xl('CDR Reports Processing Priority'),
2538 array(
2539 '' => xl('Default Priority'),
2540 '5' => xl('Moderate Priority'),
2541 '10' => xl('Moderate/Low Priority'),
2542 '15' => xl('Low Priority'),
2543 '20' => xl('Lowest Priority')
2545 '', // default
2546 xl('Set processing priority for CDR engine based reports.')
2549 'pat_rem_clin_nice' => array(
2550 xl('Patient Reminder Creation Processing Priority'),
2551 array(
2552 '' => xl('Default Priority'),
2553 '5' => xl('Moderate Priority'),
2554 '10' => xl('Moderate/Low Priority'),
2555 '15' => xl('Low Priority'),
2556 '20' => xl('Lowest Priority')
2558 '', // default
2559 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2562 'report_itemizing_standard' => array(
2563 xl('Enable Standard Report Itemization'),
2564 'bool', // data type
2565 '1', // default
2566 xl('Enable Itemization of Standard Clinical Rules Reports')
2569 'report_itemizing_cqm' => array(
2570 xl('Enable CQM Report Itemization'),
2571 'bool', // data type
2572 '1', // default
2573 xl('Enable Itemization of CQM Reports')
2576 'report_itemizing_amc' => array(
2577 xl('Enable AMC Report Itemization'),
2578 'bool', // data type
2579 '1', // default
2580 xl('Enable Itemization of AMC Reports')
2582 'dated_reminders_max_alerts_to_show' => array(
2583 xl('Dated reminders maximum alerts to show'),
2584 'num', // data type
2585 '5', // default
2586 xl('Dated reminders maximum alerts to show')
2588 'patient_birthday_alert' => array(
2589 xl('Alert on patient birthday'),
2590 array(
2591 '0' => xl('No alert'),
2592 '1' => xl('Alert only on birthday'),
2593 '2' => xl('Alert on and after birthday'),
2594 '3' => xl('Alert on and up to 28 days after birthday')
2596 '1', // default
2597 xl('Alert on patient birthday')
2599 'patient_birthday_alert_manual_off' => array(
2600 xl('Patient birthday alert requires turning off'),
2601 'bool', // data type
2602 '0', // default
2603 xl('Patient birthday alert requires turning off')
2607 // Logging
2609 'Logging' => array(
2611 'user_debug' => array(
2612 xl('User Debugging Options'),
2613 array(
2614 '0' => xl('None'),
2615 '1' => xl('Display Window Errors Only'),
2616 '2' => xl('Display Application Errors Only'),
2617 '3' => xl('All'),
2619 '0', // default
2620 xl('User Debugging Mode.')
2623 'enable_auditlog' => array(
2624 xl('Enable Audit Logging'),
2625 'bool', // data type
2626 '1', // default
2627 xl('Enable Audit Logging')
2630 'audit_events_patient-record' => array(
2631 xl('Audit Logging Patient Record'),
2632 'bool', // data type
2633 '1', // default
2634 xl('Enable logging of patient record modifications.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2637 'audit_events_scheduling' => array(
2638 xl('Audit Logging Scheduling'),
2639 'bool', // data type
2640 '1', // default
2641 xl('Enable logging of scheduling activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2644 'audit_events_order' => array(
2645 xl('Audit Logging Order'),
2646 'bool', // data type
2647 '1', // default
2648 xl('Enable logging of ordering activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2651 'audit_events_security-administration' => array(
2652 xl('Audit Logging Security Administration'),
2653 'bool', // data type
2654 '1', // default
2655 xl('Enable logging of security and administration activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2658 'audit_events_backup' => array(
2659 xl('Audit Logging Backups'),
2660 'bool', // data type
2661 '1', // default
2662 xl('Enable logging of backup related activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2665 'audit_events_other' => array(
2666 xl('Audit Logging Miscellaneous'),
2667 'bool', // data type
2668 '1', // default
2669 xl('Enable logging of miscellaneous activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2672 'audit_events_query' => array(
2673 xl('Audit Logging SELECT Query'),
2674 'bool', // data type
2675 '0', // default
2676 xl('Enable logging of all SQL SELECT queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2679 'audit_events_cdr' => array(
2680 xl('Audit CDR Engine Queries'),
2681 'bool', // data type
2682 '0', // default
2683 xl('Enable logging of CDR Engine Queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2686 'gbl_force_log_breakglass' => array(
2687 xl('Audit all Emergency User Queries'),
2688 'bool', // data type
2689 '1', // default
2690 xl('Force logging of all Emergency User (ie. breakglass) activities.')
2693 'enable_atna_audit' => array(
2694 xl('Enable ATNA Auditing'),
2695 'bool', // data type
2696 '0', // default
2697 xl('Enable Audit Trail and Node Authentication (ATNA).')
2700 'atna_audit_host' => array(
2701 xl('ATNA audit host'),
2702 'text', // data type
2703 '', // default
2704 xl('The hostname of the ATNA audit repository machine.')
2707 'atna_audit_port' => array(
2708 xl('ATNA audit port'),
2709 'text', // data type
2710 '6514', // default
2711 xl('Listening port of the RFC 5425 TLS syslog server.')
2714 'atna_audit_localcert' => array(
2715 xl('ATNA audit local certificate'),
2716 'text', // data type
2717 '', // default
2718 xl('Certificate to send to RFC 5425 TLS syslog server.')
2721 'atna_audit_cacert' => array(
2722 xl('ATNA audit CA certificate'),
2723 'text', // data type
2724 '', // default
2725 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2728 'enable_auditlog_encryption' => array(
2729 xl('Enable Audit Log Encryption'),
2730 'bool', // data type
2731 '0', // default
2732 xl('Enable Audit Log Encryption')
2735 'api_log_option' => array(
2736 xl('API Log Option'),
2737 array(
2738 '0' => xl('No logging'),
2739 '1' => xl('Minimal Logging'),
2740 '2' => xl('Full Logging'),
2742 '2', // default
2743 xl('API Log Option (Full includes requests and responses).')
2746 'billing_log_option' => array(
2747 xl('Billing Log Option'),
2748 array(
2749 '1' => xl('Billing Log Append'),
2750 '2' => xl('Billing Log Overwrite')
2752 '1', // default
2753 xl('Billing log setting to append or overwrite the log file.')
2756 'gbl_print_log_option' => array(
2757 xl('Printing Log Option'),
2758 array(
2759 '0' => xl('No logging'),
2760 '1' => xl('Hide print feature'),
2761 '2' => xl('Log entire document'),
2763 '0', // default
2764 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2769 // Miscellaneous Tab
2771 'Miscellaneous' => array(
2773 'enable_database_connection_pooling' => array(
2774 xl('Enable Database Connection Pooling'),
2775 'bool', // data type
2776 '1', // default
2777 xl('Enable Database Connection Pooling')
2780 'mysql_bin_dir' => array(
2781 xl('Path to MySQL Binaries'),
2782 'text', // data type
2783 $mysql_bin_dir, // default
2784 xl('Full path to directory containing MySQL executables.')
2787 'perl_bin_dir' => array(
2788 xl('Path to Perl Binaries'),
2789 'text', // data type
2790 $perl_bin_dir, // default
2791 xl('Full path to directory containing Perl executables.')
2794 'temporary_files_dir' => array(
2795 xl('Path to Temporary Files'),
2796 'text', // data type
2797 $temporary_files_dir, // default
2798 xl('Full path to directory used for temporary files.')
2801 'backup_log_dir' => array(
2802 xl('Path for Event Log Backup'),
2803 'text', // data type
2804 $backup_log_dir, // default
2805 xl('Full path to directory for event log backup.')
2808 'state_data_type' => array(
2809 xl('State Data Type'),
2810 array(
2811 '2' => xl('Text field'),
2812 '1' => xl('Single-selection list'),
2813 '26' => xl('Single-selection list with ability to add to the list'),
2815 '26', // default
2816 xl('Field type to use for employer or subscriber state in demographics.')
2819 'state_list' => array(
2820 xl('State list'),
2821 'text', // data type
2822 'state', // default
2823 xl('List used by above State Data Type option.')
2826 'state_custom_addlist_widget' => array(
2827 xl('State List Widget Custom Fields'),
2828 'bool', // data type
2829 '1', // default
2830 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2833 'country_data_type' => array(
2834 xl('Country Data Type'),
2835 array(
2836 '2' => xl('Text field'),
2837 '1' => xl('Single-selection list'),
2838 '26' => xl('Single-selection list with ability to add to the list'),
2840 '26', // default
2841 xl('Field type to use for employer or subscriber country in demographics.')
2844 'country_list' => array(
2845 xl('Country list'),
2846 'text', // data type
2847 'country', // default
2848 xl('List used by above Country Data Type option.')
2851 'print_command' => array(
2852 xl('Print Command'),
2853 'text', // data type
2854 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2855 xl('Shell command for printing from the server.')
2858 'default_chief_complaint' => array(
2859 xl('Default Reason for Visit'),
2860 'text', // data type
2862 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2865 'MedicareReferrerIsRenderer' => array(
2866 xl('Medicare Referrer Is Renderer'),
2867 'bool', // data type
2868 '0', // default = true
2869 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2872 'post_to_date_benchmark' => array(
2873 xl('Financial Close Date (yyyy-mm-dd)'),
2874 'text', // data type
2875 date('Y-m-d', time() - (10 * 24 * 60 * 60)), // default
2876 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2879 'enable_hylafax' => array(
2880 xl('Enable Hylafax Support'),
2881 'bool', // data type
2882 '0', // default
2883 xl('Enable Hylafax Support')
2886 'hylafax_server' => array(
2887 xl('Hylafax Server'),
2888 'text', // data type
2889 'localhost', // default
2890 xl('Hylafax server hostname.')
2893 'hylafax_basedir' => array(
2894 xl('Hylafax Directory'),
2895 'text', // data type
2896 '/var/spool/hylafax', // default
2897 xl('Location where Hylafax stores faxes.')
2900 'hylafax_enscript' => array(
2901 xl('Hylafax Enscript Command'),
2902 'text', // data type
2903 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2904 xl('Enscript command used by Hylafax.')
2907 'enable_scanner' => array(
2908 xl('Enable Scanner Support'),
2909 'bool', // data type
2910 '0', // default
2911 xl('Enable Scanner Support')
2914 'scanner_output_directory' => array(
2915 xl('Scanner Directory'),
2916 'text', // data type
2917 '/mnt/scan_docs', // default
2918 xl('Location where scans are stored.')
2921 'unique_installation_id' => array(
2922 xl('Unique Installation ID'),
2923 'if_empty_create_random_uuid', // data type
2924 '', // default
2925 xl('Unique installation ID. Creates a random UUID if empty.')
2929 // Portal Tab
2931 'Portal' => array(
2933 'portal_onsite_two_enable' => array(
2934 xl('Enable Patient Portal'),
2935 'bool', // data type
2936 '0',
2937 xl('Enable Patient Portal')
2940 'portal_onsite_two_address' => array(
2941 xl('Patient Portal Site Address'),
2942 'text', // data type
2943 'https://your_web_site.com/openemr/portal',
2944 xl('Website link for the Patient Portal.')
2947 'portal_onsite_two_basepath' => array(
2948 xl('Portal Uses Server Base Path (internal)'),
2949 'bool',
2950 '0',
2951 xl('Use servers protocol and host in urls (portal internal only).')
2954 'enforce_signin_email' => array(
2955 xl('Enforce E-Mail in Portal Log On Dialog'),
2956 'bool', // data type
2957 '1',
2958 xl('Patient is required to enter their contact e-mail if present in Demographics Contact.')
2961 'portal_onsite_two_register' => array(
2962 xl('Allow New Patient Registration Widget'),
2963 'bool', // data type
2964 '1',
2965 xl('Enable Patient Portal new patient to self register.')
2968 'allow_portal_appointments' => array(
2969 xl('Allow Online Appointments'),
2970 'bool', // data type
2971 '1',
2972 xl('Allow Patient to make and view appointments online.')
2975 'allow_portal_chat' => array(
2976 xl('Allow Online Secure Chat'),
2977 'bool', // data type
2978 '1',
2979 xl('Allow Patient to use Secure Chat Application.')
2982 'portal_two_ledger' => array(
2983 xl('Allow Patient Ledger'),
2984 'bool', // data type
2985 '1',
2986 xl('Allow Patient to view their accounting ledger online.')
2989 'portal_two_payments' => array(
2990 xl('Allow Online Payments'),
2991 'bool', // data type
2992 '0',
2993 xl('Allow Patient to make payments online.')
2996 'portal_two_pass_reset' => array(
2997 xl('Allow Patients to Reset Credentials'),
2998 'bool', // data type
2999 '0',
3000 xl('Patient may change their logon from portal login dialog.')
3003 'portal_onsite_document_download' => array(
3004 xl('Enable Patient Portal Document Download'),
3005 'bool', // data type
3006 '1',
3007 xl('Enables the ability to download documents in the Patient Portal by the user.')
3011 // Connectors Tab
3013 'Connectors' => array(
3015 'rest_api' => array(
3016 xl('Enable OpenEMR Standard REST API'),
3017 'bool',
3018 '0',
3019 xl('Enable OpenEMR Standard RESTful API.')
3022 'rest_fhir_api' => array(
3023 xl('Enable OpenEMR Standard FHIR REST API'),
3024 'bool',
3025 '0',
3026 xl('Enable OpenEMR Standard FHIR RESTful API.')
3029 'rest_portal_api' => array(
3030 xl('Enable OpenEMR Patient Portal REST API'),
3031 'bool',
3032 '0',
3033 xl('Enable OpenEMR Patient Portal RESTful API.')
3036 'rest_portal_fhir_api' => array(
3037 xl('Enable OpenEMR Patient Portal FHIR REST API'),
3038 'bool',
3039 '0',
3040 xl('Enable OpenEMR Patient Portal FHIR RESTful API.')
3043 'fhir_enable' => array(
3044 xl('Enable FHIR Provider Client Service'),
3045 array(
3046 0 => xl('Disabled'),
3047 1 => xl('HAPI FHIR'),
3048 2 => xl('Smart on FHIR'),
3050 '0',
3051 xl('Enable FHIR Provider Client Service')
3054 'fhir_base_url' => array(
3055 xl('FHIR Server Base Address'),
3056 'text',
3057 'https://hapi.fhir.org/baseDstu3/',
3058 xl('Base URL for FHIR Server.')
3061 'payment_gateway' => array(
3062 xl('Select Credit Card Payment Gateway'),
3063 array(
3064 'InHouse' => xl('In House'),
3065 'AuthorizeNet' => xl('Authorize.Net'),
3066 'Stripe' => xl('Stripe')
3068 'InHouse',
3069 xl('Enable a Payment Gateway Service for processing credit card transactions')
3072 'gateway_mode_production' => array(
3073 xl('Set Gateway to Production Mode'),
3074 'bool', // data type
3075 '0',
3076 xl('Check this to go live. Not checked is testing mode.')
3079 'gateway_public_key' => array(
3080 xl('Gateway Publishable Key'),
3081 'encrypted',
3083 xl('The public access key for secure tokenize of credit or debit card authorization. PCI compliance')
3086 'gateway_api_key' => array(
3087 xl('Gateway API Login Auth Name or Secret'),
3088 'encrypted',
3090 xl('The Auth Name or API key for selected account. Auth Name for Authorize.Net and API Secret for Stripe.')
3093 'gateway_transaction_key' => array(
3094 xl('Gateway Transaction Key'),
3095 'encrypted',
3097 xl('Mainly Authorize.Net uses two keys')
3100 'medex_enable' => array(
3101 xl('Enable MedEx Communication Service'),
3102 'bool', // data type
3103 '0',
3104 xl('Enable MedEx Communication Service')
3107 'erx_enable' => array(
3108 xl('Enable NewCrop eRx Service'),
3109 'bool',
3110 '0',
3111 xl('Enable NewCrop eRx Service.') . ' ' .
3112 xl('Contact mi-squared at http://www.mi-squared.com/products-services/openemr/ or ZH Healthcare at https://blueehr.com/contact-us/ for subscribing to the NewCrop eRx service.')
3115 'erx_newcrop_path' => array(
3116 xl('NewCrop eRx Site Address'),
3117 'text',
3118 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
3119 xl('URL for NewCrop eRx Site Address.')
3122 'erx_newcrop_path_soap' => array(
3123 xl('NewCrop eRx Web Service Address'),
3124 'text',
3125 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
3126 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
3129 'erx_soap_ttl_allergies' => array(
3130 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
3131 'num',
3132 '21600',
3133 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
3136 'erx_soap_ttl_medications' => array(
3137 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
3138 'num',
3139 '21600',
3140 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
3143 'erx_account_partner_name' => array(
3144 xl('NewCrop eRx Partner Name'),
3145 'text',
3147 xl('Partner Name issued for NewCrop eRx service.')
3150 'erx_account_name' => array(
3151 xl('NewCrop eRx Name'),
3152 'text',
3154 xl('Account Name issued for NewCrop eRx service.')
3157 'erx_account_password' => array(
3158 xl('NewCrop eRx Password'),
3159 'encrypted',
3161 xl('Account Password issued for NewCrop eRx service.')
3164 'erx_account_id' => array(
3165 xl('NewCrop eRx Account Id'),
3166 'text',
3167 '1',
3168 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
3171 'erx_upload_active' => array(
3172 xl('Only upload active prescriptions'),
3173 'bool',
3174 '0',
3175 xl('Only upload active prescriptions to NewCrop eRx.')
3178 'erx_import_status_message' => array(
3179 xl('Enable NewCrop eRx import status message'),
3180 'bool',
3181 '0',
3182 xl('Enable import status message after visiting NewCrop eRx.')
3185 'erx_medication_display' => array(
3186 xl('Do not display NewCrop eRx Medications uploaded'),
3187 'bool',
3188 '0',
3189 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
3192 'erx_allergy_display' => array(
3193 xl('Do not display NewCrop eRx Allergy uploaded'),
3194 'bool',
3195 '0',
3196 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
3199 'erx_default_patient_country' => array(
3200 xl('NewCrop eRx Default Patient Country'),
3201 array(
3202 '' => '',
3203 'US' => xl('USA'),
3204 'CA' => xl('Canada'),
3205 'MX' => xl('Mexico'),
3208 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
3211 'erx_debug_setting' => array(
3212 xl('NewCrop eRx Debug Setting'),
3213 array(
3214 0 => xl('None'),
3215 1 => xl('Request Only'),
3216 2 => xl('Response Only'),
3217 3 => xl('Request & Response'),
3219 '0',
3220 xl('Log all NewCrop eRx Requests and / or Responses.'),
3223 'weno_rx_enable' => array(
3224 xl('Enable Weno eRx Service'),
3225 'bool',
3226 '0',
3227 xl('Enable Weno eRx Service') . ' ' . xl('Contact Open Med Practice, www.openmedpractice.com for subscribing to the Weno Free eRx service.')
3230 'weno_account_id' => array(
3231 xl('Weno eRx Account Id'),
3232 'text',
3233 '137',
3234 xl('Account Id issued for Weno eRx service.')
3237 'weno_account_pass' => array(
3238 xl('Weno eRx Account Pass'),
3239 'encrypted', // data type
3240 '7C84773D5063B20BC9E41636A091C6F17E9C1E34',
3241 xl('Account Id issued for Weno eRx service.')
3244 'weno_provider_id' => array(
3245 xl('Weno eRx Clinic ID'),
3246 'text',
3247 'C36275',
3248 xl('Account Id issued for Your clinics eRx service.')
3251 'ccda_alt_service_enable' => array(
3252 xl('Enable C-CDA Service'),
3253 array(
3254 0 => xl('Off'),
3255 1 => xl('Care Coordination Only'),
3256 2 => xl('Portal Only'),
3257 3 => xl('Both'),
3259 '0',
3260 xl('Enable C-CDA Service')
3263 'phimail_enable' => array(
3264 xl('Enable phiMail Direct Messaging Service'),
3265 'bool', // data type
3266 '0',
3267 xl('Enable phiMail Direct Messaging Service')
3270 'phimail_server_address' => array(
3271 xl('phiMail Server Address'),
3272 'text', // data type
3273 'https://phimail.example.com:32541',
3274 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
3277 'phimail_username' => array(
3278 xl('phiMail Username'),
3279 'text', // data type
3281 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
3284 'phimail_password' => array(
3285 xl('phiMail Password'),
3286 'encrypted', // data type
3288 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
3291 'phimail_notify' => array(
3292 xl('phiMail notification user'),
3293 'text', // data type
3294 'admin',
3295 xl('This user will receive notification of new incoming Direct messages')
3298 'phimail_interval' => array(
3299 xl('phiMail Message Check Interval (minutes)'),
3300 'num', // data type
3301 '5',
3302 xl('Interval between message checks (set to zero for manual checks only)')
3305 'phimail_ccd_enable' => array(
3306 xl('phiMail Allow CCD Send'),
3307 'bool', // data type
3308 '0',
3309 xl('phiMail Allow CCD Send')
3312 'phimail_ccr_enable' => array(
3313 xl('phiMail Allow CCR Send'),
3314 'bool', // data type
3315 '0',
3316 xl('phiMail Allow CCR Send')
3319 'easipro_enable' => array(
3320 xl('Enable Easipro'),
3321 'bool', // data type
3322 '0',
3323 xl('Enable Easipro. For licensing options for this feature, please contact') . ' api@assessmentcenter.net'
3326 'easipro_server' => array(
3327 xl('Easipro Server'),
3328 'text', // data type
3330 xl('Easipro Server')
3333 'easipro_name' => array(
3334 xl('Easipro Server Username'),
3335 'text', // data type
3337 xl('Easipro Server Username')
3340 'easipro_pass' => array(
3341 xl('Easipro Server Password'),
3342 'encrypted', // data type
3344 xl('Easipro Server Password')
3348 'Rx' => array(
3349 'rx_enable_DEA' => array(
3350 xl('Rx Enable DEA #'),
3351 'bool', // data type
3352 '1',
3353 xl('Rx Enable DEA #')
3355 'rx_show_DEA' => array(
3356 xl('Rx Show DEA #'),
3357 'bool', // data type
3358 '0',
3359 xl('Rx Show DEA #')
3361 'rx_enable_NPI' => array(
3362 xl('Rx Enable NPI'),
3363 'bool', // data type
3364 '0',
3365 xl('Rx Enable NPI')
3367 'rx_show_NPI' => array(
3368 xl('Rx Show NPI'),
3369 'bool', // data type
3370 '0',
3371 xl('Rx Show NPI')
3373 'rx_enable_SLN' => array(
3374 xl('Rx Enable State Lic. #'),
3375 'bool', // data type
3376 '0',
3377 xl('Rx Enable State Lic. #')
3379 'rx_show_SLN' => array(
3380 xl('Rx Show State Lic. #'),
3381 'bool', // data type
3382 '0',
3383 xl('Rx Show State Lic. #')
3385 'rx_show_drug_drug' => array(
3386 xl('Rx NLM Drug-Drug'),
3387 'bool', // data type
3388 '0',
3389 xl('Rx NLM Drug-Drug')
3391 'rx_paper_size' => array(
3392 xl('Rx Paper Size'), // descriptive name
3393 array(
3394 'LETTER' => xl('Letter Paper Size'),
3395 'LEGAL' => xl('Legal Paper Size'),
3396 'FOLIO' => xl('Folio Paper Size'),
3397 'EXECUTIVE' => xl('Executive Paper Size'),
3398 '4A0' => ('4A0' . " " . xl('Paper Size')),
3399 '2A0' => ('2A0' . " " . xl('Paper Size')),
3400 'A0' => ('A0' . " " . xl('Paper Size')),
3401 'A1' => ('A1' . " " . xl('Paper Size')),
3402 'A2' => ('A2' . " " . xl('Paper Size')),
3403 'A3' => ('A3' . " " . xl('Paper Size')),
3404 'A4' => ('A4' . " " . xl('Paper Size')),
3405 'A5' => ('A5' . " " . xl('Paper Size')),
3406 'A6' => ('A6' . " " . xl('Paper Size')),
3407 'A7' => ('A7' . " " . xl('Paper Size')),
3408 'A8' => ('A8' . " " . xl('Paper Size')),
3409 'A9' => ('A9' . " " . xl('Paper Size')),
3410 'A10' => ('A10' . " " . xl('Paper Size')),
3411 'B0' => ('B0' . " " . xl('Paper Size')),
3412 'B1' => ('B1' . " " . xl('Paper Size')),
3413 'B2' => ('B2' . " " . xl('Paper Size')),
3414 'B3' => ('B3' . " " . xl('Paper Size')),
3415 'B4' => ('B4' . " " . xl('Paper Size')),
3416 'B5' => ('B5' . " " . xl('Paper Size')),
3417 'B6' => ('B6' . " " . xl('Paper Size')),
3418 'B7' => ('B7' . " " . xl('Paper Size')),
3419 'B8' => ('B8' . " " . xl('Paper Size')),
3420 'B9' => ('B9' . " " . xl('Paper Size')),
3421 'B10' => ('B10' . " " . xl('Paper Size')),
3422 'C0' => ('C0' . " " . xl('Paper Size')),
3423 'C1' => ('C1' . " " . xl('Paper Size')),
3424 'C2' => ('C2' . " " . xl('Paper Size')),
3425 'C3' => ('C3' . " " . xl('Paper Size')),
3426 'C4' => ('C4' . " " . xl('Paper Size')),
3427 'C5' => ('C5' . " " . xl('Paper Size')),
3428 'C6' => ('C6' . " " . xl('Paper Size')),
3429 'C7' => ('C7' . " " . xl('Paper Size')),
3430 'C8' => ('C8' . " " . xl('Paper Size')),
3431 'C9' => ('C9' . " " . xl('Paper Size')),
3432 'C10' => ('C10' . " " . xl('Paper Size')),
3433 'RA0' => ('RA0' . " " . xl('Paper Size')),
3434 'RA1' => ('RA1' . " " . xl('Paper Size')),
3435 'RA2' => ('RA2' . " " . xl('Paper Size')),
3436 'RA3' => ('RA3' . " " . xl('Paper Size')),
3437 'RA4' => ('RA4' . " " . xl('Paper Size')),
3438 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3439 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3440 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3441 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3442 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3444 'LETTER', // default = tree menu
3445 xl('Rx Paper Size')
3447 'rx_left_margin' => array(
3448 xl('Rx Left Margin (px)'),
3449 'num',
3450 '30',
3451 xl('Rx Left Margin (px)')
3453 'rx_right_margin' => array(
3454 xl('Rx Right Margin (px)'),
3455 'num',
3456 '30',
3457 xl('Rx Right Margin (px)')
3459 'rx_top_margin' => array(
3460 xl('Rx Top Margin (px)'),
3461 'num',
3462 '72',
3463 xl('Rx Top Margin (px)')
3465 'rx_bottom_margin' => array(
3466 xl('Rx Bottom Margin (px)'),
3467 'num',
3468 '30',
3469 xl('Rx Bottom Margin (px)')
3471 'rx_use_fax_template' => array(
3472 xl('Show button for download fax template'),
3473 'bool', // data type
3474 '1', // default = true
3475 xl('Show button in the prescription list for download fax template')
3477 'rx_zend_html_template' => array(
3478 xl('Rx html print - zend module'),
3479 'bool', // data type
3480 '0', // default = false
3481 xl('Use an html template from zend module')
3483 'rx_zend_html_action' => array(
3484 xl('Name of zend template for html print'),
3485 'text', // data type
3486 'default',
3487 xl('Name of zend template for html print, possible to add custom template in the PrescriptionTemplate module')
3489 'rx_zend_pdf_template' => array(
3490 xl('Rx pdf - zend template'),
3491 'bool', // data type
3492 '0', // default = false
3493 xl('Use a pdf template from zend module')
3495 'rx_zend_pdf_action' => array(
3496 xl('Name of zend template for pdf export'),
3497 'text', // data type
3498 'default',
3499 xl('Name of zend template for pdf export, possible to add custom template in the PrescriptionTemplate module')
3502 'PDF' => array(
3503 'pdf_layout' => array(
3504 xl('Layout'),
3505 array(
3506 'P' => xl('Portrait'),
3507 'L' => xl('Landscape')
3509 'P', //defaut
3510 xl("Choose Layout Direction"),
3512 'pdf_language' => array(
3513 xl('PDF Language'),
3514 array(
3515 'aa' => xl('Afar'),
3516 'af' => xl('Afrikaans'),
3517 'ak' => xl('Akan'),
3518 'sq' => xl('Albanian'),
3519 'am' => xl('Amharic'),
3520 'ar' => xl('Arabic'),
3521 'an' => xl('Aragonese'),
3522 'hy' => xl('Armenian'),
3523 'as' => xl('Assamese'),
3524 'av' => xl('Avaric'),
3525 'ae' => xl('Avestan'),
3526 'ay' => xl('Aymara'),
3527 'az' => xl('Azerbaijani'),
3528 'bm' => xl('Bambara'),
3529 'ba' => xl('Bashkir'),
3530 'eu' => xl('Basque'),
3531 'be' => xl('Belarusian'),
3532 'bn' => xl('Bengali- Bangla'),
3533 'bh' => xl('Bihari'),
3534 'bi' => xl('Bislama'),
3535 'bs' => xl('Bosnian'),
3536 'br' => xl('Breton'),
3537 'bg' => xl('Bulgarian'),
3538 'my' => xl('Burmese'),
3539 'ca' => xl('Catalan- Valencian'),
3540 'ch' => xl('Chamorro'),
3541 'ce' => xl('Chechen'),
3542 'ny' => xl('Chichewa- Chewa- Nyanja'),
3543 'zh' => xl('Chinese'),
3544 'cv' => xl('Chuvash'),
3545 'kw' => xl('Cornish'),
3546 'co' => xl('Corsican'),
3547 'cr' => xl('Cree'),
3548 'hr' => xl('Croatian'),
3549 'cs' => xl('Czech'),
3550 'da' => xl('Danish'),
3551 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
3552 'nl' => xl('Dutch'),
3553 'dz' => xl('Dzongkha'),
3554 'en' => xl('English'),
3555 'eo' => xl('Esperanto'),
3556 'et' => xl('Estonian'),
3557 'ee' => xl('Ewe'),
3558 'fo' => xl('Faroese'),
3559 'fj' => xl('Fijian'),
3560 'fi' => xl('Finnish'),
3561 'fr' => xl('French'),
3562 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
3563 'gl' => xl('Galician'),
3564 'ka' => xl('Georgian'),
3565 'de' => xl('German'),
3566 'el' => xl('Greek, Modern'),
3567 'gn' => xl('Guarani'),
3568 'gu' => xl('Gujarati'),
3569 'ht' => xl('Haitian- Haitian Creole'),
3570 'ha' => xl('Hausa'),
3571 'he' => xl('Hebrew (modern)'),
3572 'hz' => xl('Herero'),
3573 'hi' => xl('Hindi'),
3574 'ho' => xl('Hiri Motu'),
3575 'hu' => xl('Hungarian'),
3576 'ia' => xl('Interlingua'),
3577 'id' => xl('Indonesian'),
3578 'ie' => xl('Interlingue'),
3579 'ga' => xl('Irish'),
3580 'ig' => xl('Igbo'),
3581 'ik' => xl('Inupiaq'),
3582 'io' => xl('Ido'),
3583 'is' => xl('Icelandic'),
3584 'it' => xl('Italian'),
3585 'iu' => xl('Inuktitut'),
3586 'ja' => xl('Japanese'),
3587 'jv' => xl('Javanese'),
3588 'kl' => xl('Kalaallisut, Greenlandic'),
3589 'kn' => xl('Kannada'),
3590 'kr' => xl('Kanuri'),
3591 'ks' => xl('Kashmiri'),
3592 'kk' => xl('Kazakh'),
3593 'km' => xl('Khmer'),
3594 'ki' => xl('Kikuyu, Gikuyu'),
3595 'rw' => xl('Kinyarwanda'),
3596 'ky' => xl('Kyrgyz'),
3597 'kv' => xl('Komi'),
3598 'kg' => xl('Kongo'),
3599 'ko' => xl('Korean'),
3600 'ku' => xl('Kurdish'),
3601 'kj' => xl('Kwanyama, Kuanyama'),
3602 'la' => xl('Latin'),
3603 'lb' => xl('Luxembourgish, Letzeburgesch'),
3604 'lg' => xl('Ganda'),
3605 'li' => xl('Limburgish, Limburgan, Limburger'),
3606 'ln' => xl('Lingala'),
3607 'lo' => xl('Lao'),
3608 'lt' => xl('Lithuanian'),
3609 'lu' => xl('Luba-Katanga'),
3610 'lv' => xl('Latvian'),
3611 'gv' => xl('Manx'),
3612 'mk' => xl('Macedonian'),
3613 'mg' => xl('Malagasy'),
3614 'ms' => xl('Malay'),
3615 'ml' => xl('Malayalam'),
3616 'mt' => xl('Maltese'),
3617 'mi' => xl('Maori'),
3618 'mr' => xl('Marathi (Marathi)'),
3619 'mh' => xl('Marshallese'),
3620 'mn' => xl('Mongolian'),
3621 'na' => xl('Nauru'),
3622 'nv' => xl('Navajo, Navaho'),
3623 'nb' => xl('Norwegian Bokmal'),
3624 'nd' => xl('North Ndebele'),
3625 'ne' => xl('Nepali'),
3626 'ng' => xl('Ndonga'),
3627 'nn' => xl('Norwegian Nynorsk'),
3628 'no' => xl('Norwegian'),
3629 'ii' => xl('Nuosu'),
3630 'nr' => xl('South Ndebele'),
3631 'oc' => xl('Occitan'),
3632 'oj' => xl('Ojibwe, Ojibwa'),
3633 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
3634 'om' => xl('Oromo'),
3635 'or' => xl('Oriya'),
3636 'os' => xl('Ossetian, Ossetic'),
3637 'pa' => xl('Panjabi, Punjabi'),
3638 'pi' => xl('Pali'),
3639 'fa' => xl('Persian (Farsi)'),
3640 'pl' => xl('Polish'),
3641 'ps' => xl('Pashto, Pushto'),
3642 'pt' => xl('Portuguese'),
3643 'qu' => xl('Quechua'),
3644 'rm' => xl('Romansh'),
3645 'rn' => xl('Kirundi'),
3646 'ro' => xl('Romanian'),
3647 'ru' => xl('Russian'),
3648 'sa' => xl('Sanskrit (Samskrta)'),
3649 'sc' => xl('Sardinian'),
3650 'sd' => xl('Sindhi'),
3651 'se' => xl('Northern Sami'),
3652 'sm' => xl('Samoan'),
3653 'sg' => xl('Sango'),
3654 'sr' => xl('Serbian'),
3655 'gd' => xl('Scottish Gaelic- Gaelic'),
3656 'sn' => xl('Shona'),
3657 'si' => xl('Sinhala, Sinhalese'),
3658 'sk' => xl('Slovak'),
3659 'sl' => xl('Slovene'),
3660 'so' => xl('Somali'),
3661 'st' => xl('Southern Sotho'),
3662 'es' => xl('Spanish- Castilian'),
3663 'su' => xl('Sundanese'),
3664 'sw' => xl('Swahili'),
3665 'ss' => xl('Swati'),
3666 'sv' => xl('Swedish'),
3667 'ta' => xl('Tamil'),
3668 'te' => xl('Telugu'),
3669 'tg' => xl('Tajik'),
3670 'th' => xl('Thai'),
3671 'ti' => xl('Tigrinya'),
3672 'bo' => xl('Tibetan Standard, Tibetan, Central'),
3673 'tk' => xl('Turkmen'),
3674 'tl' => xl('Tagalog'),
3675 'tn' => xl('Tswana'),
3676 'to' => xl('Tonga (Tonga Islands)'),
3677 'tr' => xl('Turkish'),
3678 'ts' => xl('Tsonga'),
3679 'tt' => xl('Tatar'),
3680 'tw' => xl('Twi'),
3681 'ty' => xl('Tahitian'),
3682 'ug' => xl('Uyghur, Uighur'),
3683 'uk' => xl('Ukrainian'),
3684 'ur' => xl('Urdu'),
3685 'uz' => xl('Uzbek'),
3686 've' => xl('Venda'),
3687 'vi' => xl('Vietnamese'),
3688 'vo' => xl('Volapuk'),
3689 'wa' => xl('Walloon'),
3690 'cy' => xl('Welsh'),
3691 'wo' => xl('Wolof'),
3692 'fy' => xl('Western Frisian'),
3693 'xh' => xl('Xhosa'),
3694 'yi' => xl('Yiddish'),
3695 'yo' => xl('Yoruba'),
3696 'za' => xl('Zhuang, Chuang'),
3697 'zu' => xl('Zulu'),
3699 'en', // default English
3700 xl('Choose PDF languange Preference'),
3702 'pdf_size' => array(
3703 xl('Paper Size'), // Descriptive Name
3704 array(
3705 'LETTER' => xl('Letter Paper Size'),
3706 'LEGAL' => xl('Legal Paper Size'),
3707 'FOLIO' => xl('Folio Paper Size'),
3708 'EXECUTIVE' => xl('Executive Paper Size'),
3709 '4A0' => ('4A0' . " " . xl('Paper Size')),
3710 '2A0' => ('2A0' . " " . xl('Paper Size')),
3711 'A0' => ('A0' . " " . xl('Paper Size')),
3712 'A1' => ('A1' . " " . xl('Paper Size')),
3713 'A2' => ('A2' . " " . xl('Paper Size')),
3714 'A3' => ('A3' . " " . xl('Paper Size')),
3715 'A4' => ('A4' . " " . xl('Paper Size')),
3716 'A5' => ('A5' . " " . xl('Paper Size')),
3717 'A6' => ('A6' . " " . xl('Paper Size')),
3718 'A7' => ('A7' . " " . xl('Paper Size')),
3719 'A8' => ('A8' . " " . xl('Paper Size')),
3720 'A9' => ('A9' . " " . xl('Paper Size')),
3721 'A10' => ('A10' . " " . xl('Paper Size')),
3722 'B0' => ('B0' . " " . xl('Paper Size')),
3723 'B1' => ('B1' . " " . xl('Paper Size')),
3724 'B2' => ('B2' . " " . xl('Paper Size')),
3725 'B3' => ('B3' . " " . xl('Paper Size')),
3726 'B4' => ('B4' . " " . xl('Paper Size')),
3727 'B5' => ('B5' . " " . xl('Paper Size')),
3728 'B6' => ('B6' . " " . xl('Paper Size')),
3729 'B7' => ('B7' . " " . xl('Paper Size')),
3730 'B8' => ('B8' . " " . xl('Paper Size')),
3731 'B9' => ('B9' . " " . xl('Paper Size')),
3732 'B10' => ('B10' . " " . xl('Paper Size')),
3733 'C0' => ('C0' . " " . xl('Paper Size')),
3734 'C1' => ('C1' . " " . xl('Paper Size')),
3735 'C2' => ('C2' . " " . xl('Paper Size')),
3736 'C3' => ('C3' . " " . xl('Paper Size')),
3737 'C4' => ('C4' . " " . xl('Paper Size')),
3738 'C5' => ('C5' . " " . xl('Paper Size')),
3739 'C6' => ('C6' . " " . xl('Paper Size')),
3740 'C7' => ('C7' . " " . xl('Paper Size')),
3741 'C8' => ('C8' . " " . xl('Paper Size')),
3742 'C9' => ('C9' . " " . xl('Paper Size')),
3743 'C10' => ('C10' . " " . xl('Paper Size')),
3744 'RA0' => ('RA0' . " " . xl('Paper Size')),
3745 'RA1' => ('RA1' . " " . xl('Paper Size')),
3746 'RA2' => ('RA2' . " " . xl('Paper Size')),
3747 'RA3' => ('RA3' . " " . xl('Paper Size')),
3748 'RA4' => ('RA4' . " " . xl('Paper Size')),
3749 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3750 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3751 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3752 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3753 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3755 'LETTER',
3756 xl('Choose Paper Size')
3758 'pdf_left_margin' => array(
3759 xl('Left Margin (mm)'),
3760 'num',
3761 '5',
3762 xl('Left Margin (mm)')
3764 'pdf_right_margin' => array(
3765 xl('Right Margin (mm)'),
3766 'num',
3767 '5',
3768 xl('Right Margin (mm)')
3770 'pdf_top_margin' => array(
3771 xl('Top Margin (mm)'),
3772 'num',
3773 '5',
3774 xl('Top Margin (mm)')
3776 'pdf_bottom_margin' => array(
3777 xl('Bottom Margin (px)'),
3778 'num',
3779 '8',
3780 xl('Bottom Margin (px)')
3782 'pdf_output' => array(
3783 xl('Output Type'),
3784 array(
3785 'D' => xl('Download'),
3786 'I' => xl('Inline')
3788 'D', //defaut
3789 xl("Choose Download or Display Inline"),
3792 'chart_label_type' => array(
3793 xl('Patient Label Type'),
3794 array(
3795 '0' => xl('None'),
3796 '1' => '5160',
3797 '2' => '5161',
3798 '3' => '5162'
3800 '1', // default
3801 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3804 'barcode_label_type' => array(
3805 xl('Barcode Label Type'),
3806 array(
3807 '0' => xl('None'),
3808 '1' => 'std25',
3809 '2' => 'int25',
3810 '3' => 'ean8',
3811 '4' => 'ean13',
3812 '5' => 'upc',
3813 '6' => 'code11',
3814 '7' => 'code39',
3815 '8' => 'code93',
3816 '9' => 'code128',
3817 '10' => 'codabar',
3818 '11' => 'msi',
3819 '12' => 'datamatrix'
3821 '9', // default = None
3822 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3825 'addr_label_type' => array(
3826 xl('Print Patient Address Label'),
3827 'bool', // data type
3828 '1', // default = false
3829 xl('Select to print patient address labels from popups in left nav screen.')
3832 'env_x_width' => array(
3833 xl('Envelope Width in mm'),
3834 'num', // data type
3835 '104.775',
3836 xl('In Portrait mode, determines the width of the envelope along the x-axis in mm')
3839 'env_y_height' => array(
3840 xl('Envelope Height in mm'),
3841 'num', // data type
3842 '241.3',
3843 xl('In Portrait mode, determines the height of the envelope along the y-axis in mm')
3846 'env_font_size' => array(
3847 xl('Font Size in Pt'),
3848 'num', // data type
3849 '14',
3850 xl('Sets the font of the address text on the envelope in mm')
3853 'env_x_dist' => array(
3854 xl('Envelope x-axis starting pt'),
3855 'num', // data type
3856 '65',
3857 xl('Distance from the \'top\' of the envelope in mm')
3860 'env_y_dist' => array(
3861 xl('Envelope y-axis starting pt'),
3862 'num', // data type
3863 '220',
3864 xl('Distance from the right most edge of the envelope in portrait position in mm')
3870 if (!$skipGlobalEvent) {
3871 $globalsInitEvent = new GlobalsInitializedEvent(new GlobalsService($GLOBALS_METADATA, $USER_SPECIFIC_GLOBALS, $USER_SPECIFIC_TABS));
3872 $globalsInitEvent = $GLOBALS["kernel"]->getEventDispatcher()->dispatch(GlobalsInitializedEvent::EVENT_HANDLE, $globalsInitEvent, 10);
3873 $globalsService = $globalsInitEvent->getGlobalsService()->save();