some portal work
[openemr.git] / library / globals.inc.php
blob72b531cd37ca427f7ee94db10507fd694835e457
1 <?php
2 /*
3 * This program sets the global variables.
5 * @package OpenEMR
6 * @link https://www.open-emr.org
7 * @author Rod Roark <rod@sunsetsystems.com>
8 * @author Stephen Waite <stephen.waite@cmsvt.com>
9 * @author Brady Miller <brady.g.miller@gmail.com>
10 * @copyright Copyright (c) 2015 Rod Roark <rod@sunsetsystems.com>
11 * @copyright Copyright (c) 2018 Stephen Waite <stephen.waite@cmsvt.com>
12 * @copyright Copyright (c) 2019 Brady Miller <brady.g.miller@gmail.com>
13 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
16 // $GLOBALS['print_command'] is the
17 // Print command for spooling to printers, used by statements.inc.php
18 // This is the command to be used for printing (without the filename).
19 // The word following "-P" should be the name of your printer. This
20 // example is designed for 8.5x11-inch paper with 1-inch margins,
21 // 10 CPI, 6 LPI, 65 columns, 54 lines per page.
23 // IF lpr services are installed on Windows this setting will be similar
24 // Otherwise configure it as needed (print /d:PRN) might be an option for Windows parallel printers
26 // Current supported languages: // Allow capture of term for translation:
27 // Albanian // xl('Albanian')
28 // Amharic // xl('Amharic')
29 // Arabic // xl('Arabic')
30 // Armenian // xl('Armenian')
31 // Bahasa Indonesia // xl('Bahasa Indonesia')
32 // Bengali // xl('Bengali')
33 // Bosnian // xl('Bosnian')
34 // Bulgarian // xl('Bulgarian')
35 // Chinese (Simplified) // xl('Chinese (Simplified)')
36 // Chinese (Traditional) // xl('Chinese (Traditional)')
37 // Croatian // xl('Croatian')
38 // Czech // xl('Czech')
39 // Danish // xl('Danish')
40 // Dutch // xl('Dutch')
41 // English (Indian) // xl('English (Indian)')
42 // English (Standard) // xl('English (Standard)')
43 // Estonian // xl('Estonian')
44 // Filipino // xl('Filipino')
45 // Finnish // xl('Finnish')
46 // French // xl('French (Standard)')
47 // French // xl('French (Canadian)')
48 // Georgian // xl('Georgian')
49 // German // xl('German')
50 // Greek // xl('Greek')
51 // Hebrew // xl('Hebrew')
52 // Hindi // xl('Hindi')
53 // Hungarian // xl('Hungarian')
54 // Italian // xl('Italian')
55 // Japanese // xl('Japanese')
56 // Korean // xl('Korean')
57 // Lithuanian // xl('Lithuanian')
58 // Marathi // xl('Marathi')
59 // Mongolian // xl('Mongolian')
60 // Norwegian // xl('Norwegian')
61 // Persian // xl('Persian')
62 // Polish // xl('Polish')
63 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
64 // Portuguese (European) // xl('Portuguese (European)')
65 // Romanian // xl('Romanian')
66 // Russian // xl('Russian')
67 // Serbian // xl('Serbian')
68 // Sinhala // xl('Sinhala')
69 // Slovak // xl('Slovak')
70 // Somali // xl('Somali')
71 // Spanish (Latin American) // xl('Spanish (Latin American)')
72 // Spanish (Spain) // xl('Spanish (Spain)')
73 // Swedish // xl('Swedish')
74 // Tamil // xl('Tamil')
75 // Telugu // xl('Telugu')
76 // Thai // xl('Thai')
77 // Turkish // xl('Turkish')
78 // Ukrainian // xl('Ukrainian')
79 // Urdu // xl('Urdu')
80 // Vietnamese // xl('Vietnamese')
82 use \OpenEMR\Services\Globals\GlobalsService;
83 use \OpenEMR\Events\Globals\GlobalsInitializedEvent;
85 // OS-dependent stuff.
86 if (stristr(PHP_OS, 'WIN')) {
87 // MS Windows
88 $mysql_bin_dir = 'C:/xampp/mysql/bin';
89 $perl_bin_dir = 'C:/xampp/perl/bin';
90 $temporary_files_dir = 'C:/windows/temp';
91 $backup_log_dir = 'C:/windows/temp';
92 } else {
93 // Everything else
94 $mysql_bin_dir = '/usr/bin';
95 $perl_bin_dir = '/usr/bin';
96 $temporary_files_dir = '/tmp';
97 $backup_log_dir = '/tmp';
100 // Language constant declarations:
101 // xl('Appearance')
102 // xl('Locale')
103 // xl('Features')
104 // xl('Calendar')
105 // xl('Security')
106 // xl('Notifications')
107 // xl('Miscellaneous')
109 // List of user specific tabs and globals
110 $USER_SPECIFIC_TABS = array('Appearance',
111 'Locale',
112 'Features',
113 'Billing',
114 'Report',
115 'Calendar',
116 'CDR',
117 'Connectors');
118 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
119 'default_second_tab',
120 'theme_tabs_layout',
121 'css_header',
122 'vertical_responsive_menu',
123 'menu_styling_vertical',
124 'search_any_patient',
125 'default_encounter_view',
126 'gbl_pt_list_page_size',
127 'gbl_pt_list_new_window',
128 'units_of_measurement',
129 'us_weight_format',
130 'date_display_format',
131 'time_display_format',
132 'enable_help',
133 'text_templates_enabled',
134 'posting_adj_disable',
135 'messages_due_date',
136 'expand_form',
137 'ledger_begin_date',
138 'print_next_appointment_on_ledger',
139 'calendar_view_type',
140 'event_color',
141 'pat_trkr_timer',
142 'ptkr_visit_reason',
143 'ptkr_date_range',
144 'ptkr_start_date',
145 'ptkr_end_date',
146 'checkout_roll_off',
147 'patient_birthday_alert',
148 'patient_birthday_alert_manual_off',
149 'erx_import_status_message');
151 // Gets array of time zones supported by PHP.
153 function gblTimeZones()
155 $zones = timezone_identifiers_list();
156 $arr = array('' => xl('Unassigned'));
157 foreach ($zones as $zone) {
158 $arr[$zone] = str_replace('_', ' ', $zone);
161 return $arr;
164 $GLOBALS_METADATA = array(
166 // Appearance Tab
168 'Appearance' => array(
170 'default_top_pane' => array(
171 xl('Main Top Pane Screen(Or Default First Tab)'), // descriptive name
172 array(
173 'main_info.php' => xl('Calendar Screen'),
174 '../new/new.php' => xl('Patient Search/Add Screen'),
175 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
176 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
177 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen')
179 'main_info.php', // default = calendar
180 xl('Main Top Pane Screen(Or Default First Tab)')
183 'default_second_tab' => array(
184 xl('Default Second Tab'), // descriptive name
185 array(
186 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen'),
187 'main_info.php' => xl('Calendar Screen'),
188 '../new/new.php' => xl('Patient Search/Add Screen'),
189 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
190 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
192 '../../interface/main/messages/messages.php?form_active=1', // default = messages
193 xl('Default Second Tab')
196 'theme_tabs_layout' => array(
197 xl('Tabs Layout Theme').'*',
198 'tabs_css',
199 'tabs_style_full.css',
200 xl('Theme of the tabs layout (need to logout and then login to see this new setting).')
203 'css_header' => array(
204 xl('General Theme') .'*',
205 'css',
206 'style_light.css',
207 xl('Pick a general theme (need to logout/login after changing this setting).')
210 'font-family' => array(
211 xl('Default font') .'*',
212 array(
213 '__default__' => 'Use Theme Font',
214 'Arial, Helvetica, sans-serif' => "Arial",
215 '"Arial Black", Gadget, sans-serif' => "Arial Black",
216 'Impact, Charcoal, sans-serif' => "Impact",
217 '"Lucida Sans Unicode", "Lucida Grande", sans-serif' => "Lucida Sans",
218 'Tahoma, Geneva, sans-serif' => "Tahoma",
219 '"Trebuchet MS", Helvetica, sans-serif' => "Trebuchet MS",
220 'Verdana, Geneva, sans-serif' => "Verdana",
221 'lato' => "Lato",
223 '__default__',
224 xl('Select the default font (need to logout/login after changing this setting).'),
227 'font-size' => array(
228 xl('Default font size').'*',
229 array(
230 '__default__' => 'Use Theme Font Size',
231 '10px' => '10px',
232 '12px' => '12px',
233 '14px' => '14px',
234 '16px' => '16px',
235 '18px' => '18px',
237 '__default__',
238 xl("Select the default font size (need to logout/login after changing this setting)."),
241 'vertical_responsive_menu' => array(
242 xl('Responsive Vertical Menu Style for Tabs') .'*' ,
243 array(
244 '736' => xl('iPhone 6/7/8 Plus') . " - 736 X 414" . xl('px'),
245 '740' => xl('Galaxy S9/S9 Plus') . " - 740 X 360" . xl('px'),
246 '812' => xl('iPhone X/XS') . " - 812 X 375" . xl('px'),
247 '896' => xl('iPhone XR/XS Max') . " - 896 X 414" . xl('px'),
248 '1024' => xl('iPad/iPad Mini, XGA') . " - 1024 X 768" . xl('px'),
249 '1112' => xl('iPad Pro 10.5 inches') . " - 1112 X 834" . xl('px'),
250 '1280' => xl('Kindle Fire HDX, Laptop MDPI, WXGA') . " - 1280 X 800" . xl('px'),
251 '1336' => xl('iPad Pro 12.5 inches') . " - 1336 X 1024" . xl('px'),
252 '1366' => xl('HD') . " - 1366 X 768" . xl('px'),
253 '1440' => xl('Laptop HiDPI, WXGA+') . " - 1440 X 900" . xl('px'),
254 '1600' => xl('HD+') . " - 1600 X 900" . xl('px'),
255 '1680' => xl('WSXGA+') . " - 1680 X 1050" . xl('px'),
256 '1920' => xl('FHD, WUXGA') . " - 1920 X 1080, 1920 X 1200" . xl('px'),
257 '2048' => xl('QWXGA') . " - 2048 X 1152" . xl('px'),
258 '2560' => xl('QHD') . " - 2560 X 1440" . xl('px'),
259 '3840' => xl('4K UHD') . " - 3840 X 2160" . xl('px'),
263 '1024', //default iPad/iPad mini
264 xl('Selecting the width for responsive vertical style menus in tab based layout (need to logout/login after changing this setting)')
267 'menu_styling_vertical' => array(
268 xl('Vertical Menu Style for Frames'),
269 array(
270 '0' => xl('Tree'),
271 '1' => xl('Sliding'),
273 '1',
274 xl('Vertical Menu Style for frame based layouts')
277 'search_any_patient' => array(
278 xl('Search Patient By Any Demographics'),
279 array(
280 'dual' => xl('Dual'),
281 'comprehensive' => xl('Comprehensive'),
282 'fixed' => xl('Fixed'),
283 'none' => xl('None'),
285 'dual', // default
286 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')
289 'default_encounter_view' => array(
290 xl('Default Encounter View'), // descriptive name
291 array(
292 '0' => xl('Clinical View'),
293 '1' => xl('Billing View'),
295 '0', // default = tree menu
296 xl('Choose your default encounter view')
299 'gbl_nav_area_width' => array(
300 xl('Navigation Area Width for Frames'),
301 'num',
302 '175',
303 xl('Width in pixels of the left navigation frame in frame based layout.')
306 'openemr_name' => array(
307 xl('Application Title'),
308 'text',
309 'OpenEMR',
310 xl('Application name for login page and main window title.')
313 'enable_group_therapy' => array(
314 xl('Enable Group Therapy'),
315 'bool', // data type
316 '0', // default = false
317 xl('Enables groups module in system.')
320 'full_new_patient_form' => array(
321 xl('New Patient Form'),
323 array(
324 '0' => xl('Old-style static form without search or duplication check'),
325 '1' => xl('All demographics fields, with search and duplication check'),
326 '2' => xl('Mandatory or specified fields only, search and dup check'),
327 '3' => xl('Mandatory or specified fields only, dup check, no search'),
328 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
330 '1', // default
331 xl('Style of form used for adding new patients')
334 'gbl_edit_patient_form' => array(
335 xl('Modify Patient Form'),
337 array(
338 '0' => xl('Standard check'),
339 '1' => xl('Zend Module check in addition to standard check')
341 '0', // default
342 xl('Validation mechanism for when modifying patient demographics.')
345 'patient_search_results_style' => array(
346 xl('Patient Search Results Style'),
347 array(
348 '0' => xl('Encounter statistics'),
349 '1' => xl('Mandatory and specified fields'),
351 '0', // default
352 xl('Type of columns displayed for patient search results')
355 'gbl_tall_nav_area' => array(
356 xl('Tall Navigation Area'),
357 'bool', // data type
358 '0', // default = false
359 xl('Navigation area uses full height of frameset')
362 'gbl_nav_visit_forms' => array(
363 xl('Navigation Area Visit Forms'),
364 'bool', // data type
365 '1', // default = true
366 xl('Navigation area includes encounter forms')
369 'simplified_demographics' => array(
370 xl('Simplified Demographics'),
371 'bool', // data type
372 '0', // default = false
373 xl('Omit insurance and some other things from the demographics form')
376 'simplified_prescriptions' => array(
377 xl('Simplified Prescriptions'),
378 'bool', // data type
379 '0', // default = false
380 xl('Omit form, route and interval which then become part of dosage')
383 'simplified_copay' => array(
384 xl('Simplified Co-Pay'),
385 'bool', // data type
386 '0', // default = false
387 xl('Omit method of payment from the co-pay panel')
390 'use_charges_panel' => array(
391 xl('Use Charges Panel'),
392 'bool', // data type
393 '0', // default = false
394 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
397 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
398 'enable_fees_in_left_menu' => array(
399 xl('Enable Fees Submenu'),
400 'bool', // data type
401 '1', // default = true
402 xl('Enable Fees Submenu')
404 'enable_batch_payment' => array(
405 xl('Enable Batch Payment'),
406 'bool', // data type
407 '1', // default = true
408 xl('Enable Batch Payment')
410 'enable_posting' => array(
411 xl('Enable Posting'),
412 'bool', // data type
413 '1', // default = true
414 xl('Enable Posting')
416 // EDI history 2012-09-13
417 'enable_edihistory_in_left_menu' => array(
418 xl('Enable EDI History'),
419 'bool', // data type
420 '1', // default = true
421 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
424 'online_support_link' => array(
425 xl('Online Support Link'),
426 'text', // data type
427 'http://open-emr.org/',
428 xl('URL for OpenEMR support.')
431 'support_phone_number' => array(
432 xl('Support Phone Number'),
433 'text',
435 xl('Phone Number for Vendor Support that Appears on the About Page.')
438 'encounter_page_size' => array(
439 xl('Encounter Page Size'),
440 array(
441 '0' => xl('Show All'),
442 '5' => '5',
443 '10' => '10',
444 '15' => '15',
445 '20' => '20',
446 '25' => '25',
447 '50' => '50',
449 '20',
450 xl('Number of encounters to display per page.')
453 'gbl_pt_list_page_size' => array(
454 xl('Patient List Page Size'),
455 array(
456 '10' => '10',
457 '25' => '25',
458 '50' => '50',
459 '100' => '100',
461 '10',
462 xl('Number of patients to display per page in the patient list.')
465 'gbl_pt_list_new_window' => array(
466 xl('Patient List New Window'),
467 'bool', // data type
468 '0', // default = false
469 xl('Default state of New Window checkbox in the patient list.')
472 'num_of_messages_displayed' => array(
473 xl('Number of Messages Displayed in Patient Summary'),
474 'num',
475 '3',
476 xl('This is the number of messages that will be displayed in the messages widget in the patient summary screen.')
479 'gbl_vitals_options' => array(
480 xl('Vitals Form Options'),
481 array(
482 '0' => xl('Standard'),
483 '1' => xl('Omit circumferences'),
485 '0', // default
486 xl('Special treatment for the Vitals form')
489 'insurance_information' => array(
490 xl('Show Additional Insurance Information'), // descriptive name
491 array(
492 '0' => xl('None'),
493 '1' => xl('Address Only'),
494 '2' => xl('Address and Postal Code'),
495 '3' => xl('Address and State'),
496 '4' => xl('Address, State and Postal Code'),
497 '5' => xl('Address, City, State and Postal Code'),
498 '6' => xl('Postal Code and Box Number')
500 '5', // default
501 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
504 'gb_how_sort_list' => array(
505 xl('How to sort a drop-lists'),
506 array(
507 '0' => xl('Sort by seq'),
508 '1' => xl('Sort alphabetically')
510 '0',
511 xl('What kind of sorting will be in the drop lists.')
514 'show_label_login' => array(
515 xl('Show Title on Login'),
516 'bool', // data type
517 '0', // default = false
518 xl('Show Title on Login')
521 'extra_logo_login' => array(
522 xl('Show Extra Logo on Login'),
523 'bool', // data type
524 '0', // default = false
525 xl('Show Extra Logo on Login')
528 'tiny_logo_1' => array(
529 xl('Show Mini Logo 1'),
530 'bool', // data type
531 '0', // default = false
532 xl('Show Mini Logo 1')
535 'tiny_logo_2' => array(
536 xl('Show Mini Logo 2'),
537 'bool', // data type
538 '0', // default = false
539 xl('Show Mini Logo 2')
542 'prevent_browser_refresh' => array(
543 xl('Prevent Web Browser Refresh').'*',
544 array(
545 '0' => xl('Do not warn or prevent web browser refresh'),
546 '1' => xl('Warn, but do not prevent web browser refresh'),
547 '2' => xl('Warn and prevent web browser refresh')
549 '2', // default = true
550 xl('Recommended setting is warn and prevent web browser refresh. Only use other settings if needed and use at own risk.')
555 // Locale Tab
557 'Locale' => array(
559 'language_default' => array(
560 xl('Default Language'),
561 'lang', // data type
562 'English (Standard)', // default = english
563 xl('Default language if no other is allowed or chosen.')
566 'language_menu_showall' => array(
567 xl('All Languages Allowed'),
568 'bool', // data type
569 '1', // default = true
570 xl('Allow all available languages as choices on menu at login.')
573 'language_menu_other' => array(
574 xl('Allowed Languages'),
575 'm_lang', // data type
576 '', // default = none
577 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
580 'allow_debug_language' => array(
581 xl('Allow Debugging Language'),
582 'bool', // data type
583 '1', // default = true during development and false for production releases
584 xl('This will allow selection of the debugging (\'dummy\') language.')
587 'translate_no_safe_apostrophe' => array(
588 xl('Do Not Use Safe Apostrophe'),
589 'bool', // data type
590 '0', // default = false
591 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)')
594 'translate_layout' => array(
595 xl('Translate Layouts'),
596 'bool', // data type
597 '1', // default = true
598 xl('Is text from form layouts to be translated?')
601 'translate_lists' => array(
602 xl('Translate Lists'),
603 'bool', // data type
604 '1', // default = true
605 xl('Is text from lists to be translated?')
608 'translate_gacl_groups' => array(
609 xl('Translate Access Control Groups'),
610 'bool', // data type
611 '1', // default = true
612 xl('Are access control group names to be translated?')
615 'translate_form_titles' => array(
616 xl('Translate Patient Note Titles'),
617 'bool', // data type
618 '1', // default = true
619 xl('Are patient note titles to be translated?')
622 'translate_document_categories' => array(
623 xl('Translate Document Categories'),
624 'bool', // data type
625 '1', // default = true
626 xl('Are document category names to be translated?')
629 'translate_appt_categories' => array(
630 xl('Translate Appointment Categories'),
631 'bool', // data type
632 '1', // default = true
633 xl('Are appointment category names to be translated?')
636 'units_of_measurement' => array(
637 xl('Units for Visit Forms'),
638 array(
639 '1' => xl('Show both US and metric (main unit is US)'),
640 '2' => xl('Show both US and metric (main unit is metric)'),
641 '3' => xl('Show US only'),
642 '4' => xl('Show metric only'),
644 '1', // default = Both/US
645 xl('Applies to the Vitals form and Growth Chart')
648 'us_weight_format' => array(
649 xl('Display Format for US Weights'),
650 array(
651 '1' => xl('Show pounds as decimal value'),
652 '2' => xl('Show pounds and ounces')
654 '1',
655 xl('Applies to Vitals form')
658 'phone_country_code' => array(
659 xl('Telephone Country Code'),
660 'num',
661 '1', // default = North America
662 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
665 'date_display_format' => array(
666 xl('Date Display Format'),
667 array(
668 '0' => xl('YYYY-MM-DD'),
669 '1' => xl('MM/DD/YYYY'),
670 '2' => xl('DD/MM/YYYY'),
672 '0',
673 xl('Format used to display most dates.')
676 'time_display_format' => array(
677 xl('Time Display Format'),
678 array(
679 '0' => xl('24 hr'),
680 '1' => xl('12 hr'),
682 '0',
683 xl('Format used to display most times.')
686 'gbl_time_zone' => array(
687 xl('Time Zone'),
688 gblTimeZones(),
690 xl('If unassigned will default to php.ini setting for date.timezone.')
693 'currency_decimals' => array(
694 xl('Currency Decimal Places'),
695 array(
696 '0' => xl('0'),
697 '1' => xl('1'),
698 '2' => xl('2'),
700 '2',
701 xl('Number of digits after decimal point for currency, usually 0 or 2.')
704 'currency_dec_point' => array(
705 xl('Currency Decimal Point Symbol'),
706 array(
707 '.' => xl('Period'),
708 ',' => xl('Comma'),
710 '.',
711 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
714 'currency_thousands_sep' => array(
715 xl('Currency Thousands Separator'),
716 array(
717 ',' => xl('Comma'),
718 '.' => xl('Period'),
719 ' ' => xl('Space'),
720 '' => xl('None'),
722 ',',
723 xl('Symbol used to separate thousands for currency.')
726 'gbl_currency_symbol' => array(
727 xl('Currency Designator'),
728 'text', // data type
729 '$', // default
730 xl('Code or symbol to indicate currency')
732 'age_display_format' => array(xl('Age Display Format'),
733 array(
734 '0' => xl('Years or months'),
735 '1' => xl('Years, months and days')
737 '0',
738 xl('Format for age display')
740 'age_display_limit' => array(
741 xl('Age in Years for Display Format Change'),
742 'num',
743 '3',
744 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
746 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
747 'weekend_days' => array(
748 xl('Your weekend days'),
749 array(
750 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
751 '0' => xl('Sunday'),
752 '5' => xl('Friday'),
753 '6' => xl('Saturday'),
754 '5,6' => xl('Friday') . ' - ' . xl('Saturday'),
756 '6,0'
757 , xl('which days are your weekend days?')
762 // Features Tab
764 'Features' => array(
766 'specific_application' => array(
767 xl('Specific Application'),
768 array(
769 '0' => xl('None'),
770 '2' => xl('IPPF'),
771 '3' => xl('Weight loss clinic'),
773 '0', // default
774 xl('Indicator for specialized usage')
777 'inhouse_pharmacy' => array(
778 xl('Drugs and Products'),
779 array(
780 '0' => xl('Do not inventory and sell any products'),
781 '1' => xl('Inventory and sell drugs only'),
782 '2' => xl('Inventory and sell both drugs and non-drug products'),
783 '3' => xl('Products but no prescription drugs and no templates'),
785 '0', // default
786 xl('Option to support inventory and sales of products')
789 'default_visit_category' => array(
790 xl('Default Visit Category'),
791 'default_visit_category',
792 '_blank',
793 xl('Define a default visit category'),
796 'disable_eligibility_log' => array(
797 xl('Disable Insurance Eligibility Reports Download'),
798 'bool',
799 '0',
800 xl('Do not allow insurance eligibility report log download')
803 'disable_chart_tracker' => array(
804 xl('Disable Chart Tracker'),
805 'bool', // data type
806 '0', // default = false
807 xl('Removes the Chart Tracker feature')
810 'disable_immunizations' => array(
811 xl('Disable Immunizations'),
812 'bool', // data type
813 '0', // default = false
814 xl('Removes support for immunizations')
817 'disable_prescriptions' => array(
818 xl('Disable Prescriptions'),
819 'bool', // data type
820 '0', // default = false
821 xl('Removes support for prescriptions')
824 'text_templates_enabled' => array(
825 xl('Enable Text Templates in Encounter Forms'),
826 'bool', // data type
827 '0', // default = false
828 xl('Allow Double Click to select Nation Note text template from any encounter form text area')
831 'omit_employers' => array(
832 xl('Omit Employers'),
833 'bool', // data type
834 '0', // default = false
835 xl('Omit employer information in patient demographics')
838 'select_multi_providers' => array(
839 xl('Support Multi-Provider Events'),
840 'bool', // data type
841 '0', // default = false
842 xl('Support calendar events that apply to multiple providers')
845 'disable_non_default_groups' => array(
846 xl('Disable User Groups'),
847 'bool', // data type
848 '1', // default = true
849 xl('Normally this should be checked. Not related to access control.')
852 'ignore_pnotes_authorization' => array(
853 xl('Skip Authorization of Patient Notes'),
854 'bool', // data type
855 '1', // default = true
856 xl('Do not require patient notes to be authorized')
859 'support_encounter_claims' => array(
860 xl('Allow Encounter Claims'),
861 'bool', // data type
862 '0', // default = false
863 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
866 'advance_directives_warning' => array(
867 xl('Advance Directives Warning'),
868 'bool', // data type
869 '0', // default = false
870 xl('Display advance directives in the demographics page.')
873 'configuration_import_export' => array(
874 xl('Configuration Export/Import'),
875 'bool', // data type
876 '0', // default = false
877 xl('Support export/import of configuration data via the Backup page.')
880 'restrict_user_facility' => array(
881 xl('Restrict Users to Facilities'),
882 'bool', // data type
883 '0', // default
884 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
887 'set_facility_cookie' => array(
888 xl('Remember Selected Facility'),
889 'bool', // data type
890 '0', // default
891 xl('Set a facility cookie to remember the selected facility between logins.')
894 'login_into_facility' => array(
895 xl('Login Into Facility'),
896 'bool', // data type
897 '0', // default
898 xl('Select your current facility in the login page')
901 'receipts_by_provider' => array(
902 xl('Print Receipts by Provider'),
903 'bool',
904 '0', // default
905 xl('Causes Receipts to Print Encounter/Primary Provider Info')
908 'discount_by_money' => array(
909 xl('Discounts as Monetary Amounts'),
910 'bool', // data type
911 '1', // default = true
912 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
915 'gbl_visit_referral_source' => array(
916 xl('Referral Source for Encounters'),
917 'bool', // data type
918 '0', // default = false
919 xl('A referral source may be specified for each visit.')
922 'gbl_mask_patient_id' => array(
923 xl('Mask for Patient IDs'),
924 'text', // data type
925 '', // default
926 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
929 'gbl_mask_invoice_number' => array(
930 xl('Mask for Invoice Numbers'),
931 'text', // data type
932 '', // default
933 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
936 'gbl_mask_product_id' => array(
937 xl('Mask for Product IDs'),
938 'text', // data type
939 '', // default
940 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
943 'hide_billing_widget' => array(
944 xl('Hide Billing Widget'),
945 'bool', // data type
946 '0', // default = false
947 xl('This will hide the Billing Widget in the Patient Summary screen')
950 'force_billing_widget_open' => array(
951 xl('Force Billing Widget Open'),
952 'bool', // data type
953 '0', // default = false
954 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
957 'activate_ccr_ccd_report' => array(
958 xl('Activate CCR/CCD Reporting'),
959 'bool', // data type
960 '1', // default = true
961 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
964 'drive_encryption' => array(
965 xl('Enable Encryption of Items Stored on Drive'),
966 'bool', // data type
967 '1', // default = true
968 xl('This will enable encryption of items that are stored on the drive.')
971 'hide_document_encryption' => array(
972 xl('Hide Encryption/Decryption Options In Document Management'),
973 'bool', // data type
974 '0', // default = true
975 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
978 'use_custom_immun_list' => array(
979 xl('Use Custom Immunization List'),
980 'bool', // data type
981 '0', // default = true
982 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
985 'amendments' => array(
986 xl('Amendments'),
987 'bool', // data type
988 '1', // default = true
989 xl('Enable amendments feature')
992 'allow_pat_delete' => array(
993 xl('Allow Administrators to Delete Patients'),
994 'bool', // data type
995 '0', // default = false
996 xl('Allow Administrators to Delete Patients')
1000 'observation_results_immunization' => array(
1001 xl('Immunization Observation Results'),
1002 'bool', // data type
1003 '1', // default
1004 xl('Observation Results in Immunization')
1007 'enable_help' => array(
1008 xl('Enable Help Modal'),
1009 array(
1010 '0' => xl('Hide Help Modal'),
1011 '1' => xl('Show Help Modal'),
1012 '2' => xl('Disable Help Modal'),
1013 ), // data type
1014 '1', // default = Print End of Day Report 1
1015 xl('This will allow the display of help modal on help enabled pages')
1017 'messages_due_date' => array(
1018 xl('Messages - due date'),
1019 'bool', // data type
1020 '0', // default false
1021 xl('Enables choose due date to message')
1024 'expand_form' => array(
1025 xl('Expand Form'),
1026 'bool', // data type
1027 '0', // default false
1028 xl('Open all expandable forms in expanded state')
1031 // Report Tab
1033 'Report' => array(
1035 'use_custom_daysheet' => array(
1036 xl('Use Custom End of Day Report'),
1037 array(
1038 '0' => xl('None'),
1039 '1' => xl('Print End of Day Report 1'),
1040 '2' => xl('Print End of Day Report 2'),
1041 '3' => xl('Print End of Day Report 3'),
1042 ), // data type
1043 '1', // default = Print End of Day Report 1
1044 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
1047 'daysheet_provider_totals' => array(
1048 xl('End of Day by Provider or allow Totals Only'),
1049 array(
1050 '0' => xl('Provider'),
1051 '1' => xl('Totals Only'),
1053 '1', // default
1054 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
1057 'ledger_begin_date' => array(
1058 xl('Beginning Date for Ledger Report'),
1059 array(
1060 'Y1' => xl('One Year Ago'),
1061 'Y2' => xl('Two Years Ago'),
1062 'M6' => xl('Six Months Ago'),
1063 'M3' => xl('Three Months Ago'),
1064 'M1' => xl('One Month Ago'),
1065 'D1' => xl('One Day Ago'),
1067 'Y1', // default = One Year
1068 xl('This is the Beginning date for the Ledger Report.')
1071 'print_next_appointment_on_ledger' => array(
1072 xl('Print the Next Appointment on the Bottom of the Ledger'),
1073 'bool', // data type
1074 '1', // default = true
1075 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
1078 'sales_report_invoice' => array(
1079 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
1080 array(
1081 '0' => xl('Invoice Number'),
1082 '1' => xl('Patient Name and ID'),
1083 '2' => xl('Patient Name and Invoice'),
1085 '2', // default = 2
1086 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
1089 'cash_receipts_report_invoice' => array(
1090 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
1091 array(
1092 '0' => xl('Invoice Number'),
1093 '1' => xl('Patient Name'),
1095 '0', // default = 0
1096 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
1101 // Billing Tab
1103 'Billing' => array(
1105 'ub04_support' => array(
1106 xl('Activate UB04/837I Claim Support'),
1107 'bool', // data type
1108 '0', // default = false
1109 xl('Allow institutional claims support.')
1112 'top_ubmargin_default' => array(
1113 xl('Default top print margin for UB04'),
1114 'num', // data type
1115 '14', // default
1116 xl('This is the default top print margin for UB04. It will adjust the final printed output up or down.')
1119 'left_ubmargin_default' => array(
1120 xl('Default left print margin for UB04'),
1121 'num', // data type
1122 '11', // default
1123 xl('This is the default left print margin for UB04. It will adjust the final printed output left or right.')
1126 'cms_top_margin_default' => array(
1127 xl('Default top print margin for CMS 1500'),
1128 'num', // data type
1129 '24', // default
1130 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
1133 'cms_left_margin_default' => array(
1134 xl('Default left print margin for CMS 1500'),
1135 'num', // data type
1136 '20', // default
1137 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
1140 'preprinted_cms_1500' => array(
1141 xl('Prints the CMS 1500 on the Preprinted form'),
1142 'bool', // data type
1143 '0', // default = false
1144 xl('Overlay CMS 1500 on the Preprinted form')
1147 'cms_1500_box_31_format' => array(
1148 xl('CMS 1500: Box 31 Format'),
1149 array(
1150 '0' => xl('Signature on File'),
1151 '1' => xl('Firstname Lastname'),
1152 '2' => xl('None'),
1154 '0', // default
1155 xl('This specifies whether to include date in Box 31.')
1158 'cms_1500_box_31_date' => array(
1159 xl('CMS 1500: Date in Box 31 (Signature)'),
1160 array(
1161 '0' => xl('None'),
1162 '1' => xl('Date of Service'),
1163 '2' => xl('Today'),
1165 '0', // default
1166 xl('This specifies whether to include date in Box 31.')
1169 'default_search_code_type' => array(
1170 xl('Default Search Code Type'),
1171 'all_code_types', // data type
1172 'ICD10', // default
1173 xl('The default code type to search for in the Fee Sheet.')
1176 'default_rendering_provider' => array(
1177 xl('Default Rendering Provider in Fee Sheet'),
1178 array(
1179 '0' => xl('Please Select'),
1180 '1' => xl('Current Provider'),
1181 '2' => xl('Current Logged in User'),
1183 '1',
1184 xl('Default selection for rendering provider in fee sheet.')
1187 'posting_adj_disable' => array(
1188 xl('Disable Auto Adjustment Calculations in EOB Posting'),
1189 'bool', // data type
1190 '0', // default = false
1191 xl('Turn off auto calculations of adjustments in EOB')
1194 'show_payment_history' => array(
1195 xl('Show all payment history in Patient Ledger'),
1196 'bool', // data type
1197 '1', // default = true
1198 xl('Turn on to show all payment history in Patient Ledger')
1201 'support_fee_sheet_line_item_provider' => array(
1202 xl('Support provider in line item in fee sheet'),
1203 'bool', // data type
1204 '0', // default = false
1205 xl('This Enables provider in line item in the fee sheet')
1208 'default_fee_sheet_line_item_provider' => array(
1209 xl('Default to a provider for line item in the fee sheet'),
1210 'bool', // data type
1211 '0', // default = false
1212 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1215 'replicate_justification' => array(
1216 xl('Automatically replicate justification codes in Fee Sheet'),
1217 'bool', // data type
1218 '0', // default = false
1219 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1222 'display_units_in_billing' => array(
1223 xl('Display the Units Column on the Billing Screen'),
1224 'bool', // data type
1225 '0', // default = false
1226 xl('Display the Units Column on the Billing Screen')
1229 'notes_to_display_in_Billing' => array(
1230 xl('Which notes are to be displayed in the Billing Screen'),
1231 array(
1232 '0' => xl('None'),
1233 '1' => xl('Encounter Billing Note'),
1234 '2' => xl('Patient Billing Note'),
1235 '3' => xl('All'),
1237 '3',
1238 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1241 'set_pos_code_encounter' => array(
1242 xl('Set POS code in encounter'),
1243 'bool', // data type
1244 '0', // default = false
1245 xl('This feature will allow the default POS facility code to be overridden from the encounter.')
1248 'statement_logo' => array(
1249 xl('Statement Logo GIF Filename'),
1250 'text', // data type
1251 'practice_logo.gif', // data type
1252 xl('Place your logo in sites/default/images and type the filename including gif extension here.')
1255 'use_custom_statement' => array(
1256 xl('Use Custom Statement'),
1257 'bool', // data type
1258 '0', // default = false
1259 xl('This will use the custom Statement showing the description instead of the codes.')
1262 'statement_appearance' => array(
1263 xl('Statement Appearance'),
1264 array(
1265 '0' => xl('Plain Text'),
1266 '1' => xl('Modern/images')
1267 ), // data type
1268 '1', // default = true
1269 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1272 'billing_phone_number' => array(
1273 xl('Custom Billing Phone Number'),
1274 'text', // data type
1276 xl('Phone number for billing inquiries')
1279 'show_aging_on_custom_statement' => array(
1280 xl('Show Aging on Custom Statement'),
1281 'bool', // data type
1282 '0', // default = false
1283 xl('This will Show Aging on the custom Statement.')
1286 'use_statement_print_exclusion' => array(
1287 xl('Allow Statement Exclusions from Printing'),
1288 'bool', // data type
1289 '0', // default = false
1290 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1293 'minimum_amount_to_print' => array(
1294 xl('Total Minimum Amount of Statement to Allow Printing'),
1295 'num', // data type
1296 '1.00',
1297 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1300 'statement_bill_note_print' => array(
1301 xl('Print Patient Billing Note'),
1302 'bool', // data type
1303 '0', // default = false
1304 xl('This will allow printing of the Patient Billing Note on the statements.')
1307 'number_appointments_on_statement' => array(
1308 xl('Number of Appointments on Statement'),
1309 'num', // data type
1310 '0', // default = 0
1311 xl('The Number of Future Appointments to Display on the Statement.')
1314 'statement_message_to_patient' => array(
1315 xl('Print Custom Message'),
1316 'bool', // data type
1317 '0', // default = false
1318 xl('This will allow printing of a custom Message on the statements.')
1321 'statement_msg_text' => array(
1322 xl('Custom Statement message'),
1323 'text', // data type
1325 xl('Text for Custom statement message.')
1328 'use_dunning_message' => array(
1329 xl('Use Custom Dunning Messages'),
1330 'bool', // data type
1331 '0', // default = false
1332 xl('This will allow use of the custom Dunning Messages on the statements.')
1335 'first_dun_msg_set' => array(
1336 xl('Number of days before showing first account message'),
1337 'num', // data type
1338 '30',
1339 xl('Number of days before showing first account message.')
1342 'first_dun_msg_text' => array(
1343 xl('First account message'),
1344 'text', // data type
1346 xl('Text for first account message.')
1349 'second_dun_msg_set' => array(
1350 xl('Number of days before showing second account message'),
1351 'num', // data type
1352 '60',
1353 xl('Number of days before showing second account message')
1356 'second_dun_msg_text' => array(
1357 xl('Second account message'),
1358 'text', // data type
1360 xl('Text for second account message.')
1363 'third_dun_msg_set' => array(
1364 xl('Number of days before showing third account message'),
1365 'num', // data type
1366 '90',
1367 xl('Number of days before showing third account message')
1370 'third_dun_msg_text' => array(
1371 xl('Third account message'),
1372 'text', // data type
1374 xl('Text for third account message.')
1377 'fourth_dun_msg_set' => array(
1378 xl('Number of days before showing fourth account message'),
1379 'num', // data type
1380 '120',
1381 xl('Number of days before showing fourth account message')
1384 'fourth_dun_msg_text' => array(
1385 xl('Fourth account message'),
1386 'text', // data type
1388 xl('Text for fourth account message.')
1391 'fifth_dun_msg_set' => array(
1392 xl('Number of days before showing fifth account message'),
1393 'num', // data type
1394 '150',
1395 xl('Number of days before showing fifth account message')
1398 'fifth_dun_msg_text' => array(
1399 xl('Fifth account message'),
1400 'text', // data type
1402 xl('Text for fifth account message.')
1405 'save_codes_history' => array(
1406 xl('Save codes history'),
1407 'bool', // data type
1408 '1', // default
1409 xl('Save codes history')
1412 'update_mbi' => array(
1413 xl('Update policy number from ERA'),
1414 'bool', // data type
1415 '0', // default
1416 xl('Update policy number from ERA')
1419 'enable_percent_pricing' => array(
1420 xl('Enable percent-based price levels'),
1421 'bool', // data type
1422 '0', // default
1423 xl('Enable percent-based price levels')
1427 // E-Sign Tab
1429 'E-Sign' => array(
1431 'esign_all' => array(
1432 xl('Allows E-Sign on the entire encounter'),
1433 'bool', // data type
1434 '0', // default = false
1435 xl('This will enable signing an entire encounter, rather than individual forms')
1438 'lock_esign_all' => array(
1439 xl('Lock e-signed encounters and their forms'),
1440 'bool', // data type
1441 '0', // default = false
1442 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1445 'esign_individual' => array(
1446 xl('Allows E-Signing Individual Forms'),
1447 'bool', // data type
1448 '1', // default = false
1449 xl('This will enable signing individual forms separately')
1452 'lock_esign_individual' => array(
1453 xl('Lock an e-signed form individually'),
1454 'bool', // data type
1455 '1', // default = false
1456 xl('This will disable the Edit button on any form that is e-signed')
1459 'esign_lock_toggle' => array(
1460 xl('Enable lock toggle'),
1461 'bool', // data type
1462 '0', // default = false
1463 xl('This will give the user the option to lock (separate locking and signing)')
1466 'esign_report_hide_empty_sig' => array(
1467 xl('Hide Empty E-Sign Logs On Report'),
1468 'bool', // data type
1469 '1', // default = false
1470 xl('This will hide empty e-sign logs on the patient report')
1474 //Documents Tab
1475 'Documents' => array(
1477 'document_storage_method' => array(
1478 xl('Document Storage Method'),
1479 array(
1480 '0' => xl('Hard Disk'),
1481 '1' => xl('CouchDB')
1483 '0', // default
1484 xl('Option to save method of document storage.')
1487 'couchdb_host' => array(
1488 xl('CouchDB HostName'),
1489 'text',
1490 'localhost',
1491 xl('CouchDB host'),
1493 'couchdb_user' => array(
1494 xl('CouchDB UserName'),
1495 'text',
1497 xl('Username to connect to CouchDB'),
1499 'couchdb_pass' => array(
1500 xl('CouchDB Password'),
1501 'encrypted', // data type
1503 xl('Password to connect to CouchDB'),
1505 'couchdb_port' => array(
1506 xl('CouchDB Port'),
1507 'text',
1508 '5984',
1509 xl('CouchDB port'),
1511 'couchdb_dbase' => array(
1512 xl('CouchDB Database'),
1513 'text',
1515 xl('CouchDB database name'),
1517 'couchdb_log' => array(
1518 xl('CouchDB Log Enable'),
1519 'bool',
1520 '0',
1521 xl('Enable log for document uploads/downloads to CouchDB'),
1524 'expand_document_tree' => array(
1525 xl('Expand All Document Categories'),
1526 'bool', // data type
1527 '0', // default = false
1528 xl('Expand All Document Categories by Default')
1531 'patient_id_category_name' => array(
1532 xl('Patient ID Category Name'),
1533 'text', // data type
1534 'Patient ID card', // default
1535 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1538 'patient_photo_category_name' => array(
1539 xl('Patient Photo Category Name'),
1540 'text', // data type
1541 'Patient Photograph', // default
1542 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1545 'lab_results_category_name' => array(
1546 xl('Lab Results Category Name'),
1547 'text', // data type
1548 'Lab Report', // default
1549 xl('Document category name for storage of electronically received lab results.')
1552 'gbl_mdm_category_name' => array(
1553 xl('MDM Document Category Name'),
1554 'text', // data type
1555 'Lab Report', // default
1556 xl('Document category name for storage of electronically received MDM documents.')
1558 'generate_doc_thumb' => array(
1559 xl('Generate thumbnail'),
1560 'bool',
1561 '0',
1562 xl('Generate thumbnail images'),
1564 'thumb_doc_max_size' => array(
1565 xl('Thumbnail size'),
1566 'text', // data type
1567 '100', // default
1568 xl('Maximum size of thumbnail file')
1572 // Calendar Tab
1574 'Calendar' => array(
1576 'disable_calendar' => array(
1577 xl('Disable Calendar'),
1578 'bool', // data type
1579 '0', // default
1580 xl('Do not display the calendar.')
1583 'schedule_start' => array(
1584 xl('Calendar Starting Hour'),
1585 'hour',
1586 '8', // default
1587 xl('Beginning hour of day for calendar events.')
1590 'schedule_end' => array(
1591 xl('Calendar Ending Hour'),
1592 'hour',
1593 '17', // default
1594 xl('Ending hour of day for calendar events.')
1597 'calendar_interval' => array(
1598 xl('Calendar Interval'),
1599 array(
1600 '5' => '5',
1601 '10' => '10',
1602 '15' => '15',
1603 '20' => '20',
1604 '30' => '30',
1605 '60' => '60',
1607 '15', // default
1608 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1611 'calendar_view_type' => array(
1612 xl('Default Calendar View'),
1613 array(
1614 'day' => xl('Day'),
1615 'week' => xl('Week'),
1616 'month' => xl('Month'),
1618 'day', // default
1619 xl('This sets the Default Calendar View, Default is Day.')
1622 'first_day_week' => array(
1623 xl('First day in the week'),
1624 array(
1625 '1' => xl('Monday'),
1626 '0' => xl('Sunday'),
1627 '6' => xl('Saturday')
1629 '1',
1630 xl('Your first day of the week.')
1633 'calendar_appt_style' => array(
1634 xl('Appointment Display Style'),
1635 array(
1636 '1' => xl('Last name'),
1637 '2' => xl('Last name, first name'),
1638 '3' => xl('Last name, first name (title)'),
1639 '4' => xl('Last name, first name (title: comments)'),
1641 '2', // default
1642 xl('This determines how appointments display on the calendar.')
1645 'event_color' => array(
1646 xl('Appointment/Event Color'),
1647 array(
1648 '1' => xl('Category Color Schema'),
1649 '2' => xl('Facility Color Schema'),
1650 ), // data type
1651 '1', // default
1652 xl('This determines which color schema used for appointment')
1655 'number_of_appts_to_show' => array(
1656 xl('Appointments - Patient Summary - Number to Display'),
1657 'num',
1658 '10',
1659 xl('Number of Appointments to display in the Patient Summary')
1662 'number_of_group_appts_to_show' => array(
1663 xl('Appointments - Group Summary - Number to Display'),
1664 'num',
1665 '10',
1666 xl('Number of Appointments to display in the Group Summary')
1669 'number_of_ex_appts_to_show' => array(
1670 xl('Excluded Appointments - Tooltip - Number to Display'),
1671 'num',
1672 '15',
1673 xl('Number of Excluded Appointments to display in the Tooltip')
1676 'appt_display_sets_option' => array(
1677 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1678 'bool', // data type
1679 '1', // default
1680 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1683 'appt_display_sets_color_1' => array(
1684 xl('Appointment Display Sets - Color 1'),
1685 'color_code',
1686 '#FFFFFF',
1687 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).')
1690 'appt_display_sets_color_2' => array(
1691 xl('Appointment Display Sets - Color 2'),
1692 'color_code',
1693 '#E6E6FF',
1694 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).')
1697 'appt_display_sets_color_3' => array(
1698 xl('Appointment Display Sets - Color 3'),
1699 'color_code',
1700 '#E6FFE6',
1701 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1704 'appt_display_sets_color_4' => array(
1705 xl('Appointment Display Sets - Color 4'),
1706 'color_code',
1707 '#FFE6FF',
1708 xl('Color for the last set when not all member appointments are displayed.')
1711 'appt_recurrences_widget' => array(
1712 xl('Recurrent Appointment Display Widget'),
1713 'bool', // data type
1714 '1', // default
1715 xl('Display the recurrent appointment widget in the patient summary.')
1718 'num_past_appointments_to_show' => array(
1719 xl('Past Appointment Display Widget'),
1720 'num', // data type
1721 '0', // default = false
1722 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)')
1725 'docs_see_entire_calendar' => array(
1726 xl('Providers See Entire Calendar'),
1727 'bool', // data type
1728 '0', // default
1729 xl('Check this if you want providers to see all appointments by default and not just their own.')
1732 'auto_create_new_encounters' => array(
1733 xl('Auto-Create New Encounters'),
1734 array(
1735 '0' => xl('Off'),
1736 '1' => xl('One Encounter Per Day'),
1737 '2' => xl('Allow Encounter For Each Appointment')
1739 '1',
1740 xl('Automatically create a new encounter when an appointment check in status is selected.') . " " .
1741 xl('The Each Appointment option will allow a new encounter regardless of same day visit.') . " " .
1742 xl('The appointment status changes and encounter creations are managed through the Patient Tracker.')
1745 'allow_early_check_in' => array(
1746 xl('Allow Early Check In'),
1747 'bool', // data type
1748 '1', // default
1749 xl("Allow Check In before the appointment's time.")
1752 'submit_changes_for_all_appts_at_once' => array(
1753 xl('Submit Changes For All Appts At Once'),
1754 'bool', // data type
1755 '1', // default
1756 xl('Enables to submit changes for all appointments of a recurrence at once.')
1759 'disable_pat_trkr' => array(
1760 xl('Flow Board: Disable'),
1761 'bool', // data type
1762 '0', // default
1763 xl('Completely remove the ability to display the Patient Flow Board.')
1766 'ptkr_visit_reason' => array(
1767 xl('Flow Board: Show Visit Reason'),
1768 'bool', // data type
1769 '0', // default = false
1770 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1773 'ptkr_show_pid' => array(
1774 xl('Flow Board: Show Patient ID'),
1775 'bool', // data type
1776 '1', // default = true
1777 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1780 'ptkr_show_encounter' => array(
1781 xl('Flow Board: Show Encounter Number'),
1782 'bool', // data type
1783 '1', // default = true
1784 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1787 'ptkr_show_staff' => array(
1788 xl('Flow Board: Show Staff Action'),
1789 'bool', // data type
1790 '1', // default = true
1791 xl('When Checked, Last Staff to Update Board Will Show in Patient Flow Board.')
1794 'ptkr_date_range' => array(
1795 xl('Flow Board: Allow Date Range'),
1796 'bool', // data type
1797 '1', // default = true
1798 xl('This Allows a Date Range to be Selected in Patient Flow Board.')
1801 'ptkr_start_date'=> array(
1802 xl('Flow Board: Default Starting Date'),
1803 array(
1804 'D0' => xl('Current Day'),
1805 'B0' => xl('Beginning of Current Work Week'),
1807 'D0', // default = Current Day
1808 xl('This is the default Beginning date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1811 'ptkr_end_date' => array(
1812 xl('Flow Board: Default Ending Date'),
1813 array(
1814 'Y1' => xl('One Year Ahead'),
1815 'Y2' => xl('Two Years Ahead'),
1816 'M6' => xl('Six Months Ahead'),
1817 'M3' => xl('Three Months Ahead'),
1818 'M1' => xl('One Month Ahead'),
1819 'D7' => xl('One Week Ahead'),
1820 'D1' => xl('One Day Ahead'),
1821 'D0' => xl('Current Day'),
1823 'D0', // default = One Day Ahead
1824 xl('This is the default Ending date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1827 'pat_trkr_timer' => array(
1828 xl('Flow Board: Timer Refresh Interval'),
1829 array(
1830 '0' => xl('No automatic refresh'),
1831 '0:10' => '10',
1832 '0:20' => '20',
1833 '0:30' => '30',
1834 '0:40' => '40',
1835 '0:50' => '50',
1836 '0:59' => '60',
1838 '0:20', // default
1839 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1842 'checkout_roll_off' => array(
1843 xl('Flow Board: display completed checkouts (minutes)'),
1844 'num',
1845 '0', // default
1846 xl('Flow Board will only display completed checkouts for this many minutes. Zero is continuous display.')
1849 'drug_screen' => array(
1850 xl('Flow Board: Enable Random Drug Testing'),
1851 'bool', // data type
1852 '0', // default
1853 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1856 'drug_testing_percentage' => array(
1857 xl('Flow Board: Percentage of Patients to Drug Test'),
1858 'num',
1859 '33', // default
1860 xl('Percentage of Patients to select for Random Drug Testing.')
1863 'maximum_drug_test_yearly' => array(
1864 xl('Flow Board: Max tests per Patient per year'),
1865 'num',
1866 '0', // default
1867 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1870 'disable_rcb' => array(
1871 xl('Recall Board: Disable'),
1872 'bool', // data type
1873 '0', // default
1874 xl('Do not display the Recall Board.')
1882 // Security Tab
1884 'Security' => array(
1885 'sql_string_no_show_screen' => array(
1886 xl('Mode - Do Not Show SQL Queries'),
1887 'bool', // data type
1888 '0', // default
1889 xl('Do not allow SQL queries to be outputted to screen.')
1891 'timeout' => array(
1892 xl('Idle Session Timeout Seconds'),
1893 'num', // data type
1894 '7200', // default
1895 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1897 'secure_upload' => array(
1898 xl('Secure Upload Files with White List'),
1899 'bool', // data type
1900 '1', // default
1901 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1903 'secure_password' => array(
1904 xl('Require Strong Passwords'),
1905 'bool', // data type
1906 '1', // default
1907 xl('Strong password means at least one of each: a number, a lowercase letter, an uppercase letter, a special character.')
1910 'gbl_minimum_password_length' => array(
1911 xl('Minimum Password Length'),
1912 array(
1913 '0' => xl('No Minimum'),
1914 '4' => '4',
1915 '5' => '5',
1916 '6' => '6',
1917 '7' => '7',
1918 '8' => '8',
1919 '9' => '9',
1920 '10' => '10',
1921 '11' => '11',
1922 '12' => '12',
1923 '13' => '13',
1924 '14' => '14',
1925 '15' => '15',
1926 '16' => '16',
1927 '17' => '17',
1928 '18' => '18',
1929 '19' => '19',
1930 '20' => '20',
1932 '9', // default
1933 xl('Minimum length of password.')
1936 'password_history' => array(
1937 xl('Require Unique Passwords'),
1938 array(
1939 '0' => xl('No'),
1940 '1' => '1',
1941 '2' => '2',
1942 '3' => '3',
1943 '4' => '4',
1944 '5' => '5',
1946 '5', // default
1947 xl('Set to the number of prior passwords that are not allowed to use when changing a password.')
1950 'password_expiration_days' => array(
1951 xl('Default Password Expiration Days'),
1952 'num', // data type
1953 '180', // default
1954 xl('Default password expiration period in days. 0 means this feature is disabled.')
1957 'password_grace_time' => array(
1958 xl('Password Expiration Grace Period'),
1959 'num', // data type
1960 '30', // default
1961 xl('Period in days where a user may login with an expired password.')
1964 'password_max_failed_logins' => array(
1965 xl('Maximum Failed Login Attempts'),
1966 'num', // data type
1967 '0', // default
1968 xl('Maximum Failed Login Attempts (0 for no maximum).')
1971 'is_client_ssl_enabled' => array(
1972 xl('Enable Client SSL'),
1973 'bool', // data type
1974 '0', // default
1975 xl('Enable client SSL certificate authentication.')
1978 'certificate_authority_crt' => array(
1979 xl('Path to CA Certificate File'),
1980 'text', // data type
1981 '', // default
1982 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1985 'certificate_authority_key' => array(
1986 xl('Path to CA Key File'),
1987 'text', // data type
1988 '', // default
1989 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1992 'client_certificate_valid_in_days' => array(
1993 xl('Client Certificate Expiration Days'),
1994 'num', // data type
1995 '365', // default
1996 xl('Number of days that the client certificate is valid.')
1999 'Emergency_Login_email_id' => array(
2000 xl('Emergency Login Email Address'),
2001 'text', // data type
2002 '', // default
2003 xl('Email address, if any, to receive emergency login user activation messages.')
2006 'new_validate' => array(
2007 xl('New form validation'),
2008 'bool',
2009 '1',
2010 xl('New form validation')
2013 'allow_multiple_databases' => array(
2014 xl('Allow multiple databases'),
2015 'bool',
2016 '0',
2017 xl('Allow to use with multiple database')
2020 'safe_key_database' => array(
2021 xl('Safe key database'),
2022 'text', // data type
2023 '', // default
2024 xl('Key for multiple database credentials encryption')
2027 'gbl_ldap_enabled' => array(
2028 xl('Use LDAP for Authentication'),
2029 'bool',
2030 '0',
2031 xl('If enabled, use LDAP for login and authentication.')
2033 'gbl_ldap_host' => array(
2034 xl('LDAP - Server Name or URI'),
2035 'text',
2037 xl('The hostname or URI of your LDAP or Active Directory server.')
2039 'gbl_ldap_dn' => array(
2040 xl('LDAP - Distinguished Name of User'),
2041 'text',
2043 xl('Embed {login} where the OpenEMR login name of the user is to be; for example: uid={login},dc=example,dc=com')
2045 'gbl_ldap_exclusions' => array(
2046 xl('LDAP - Login Exclusions'),
2047 'text',
2049 xl('Comma-separated list of login names to use normal authentication instead of LDAP; useful for setup and debugging.')
2052 'gbl_debug_hash_verify_execution_time' => array(
2053 xl('Debug Hash Verification Time'),
2054 'bool',
2055 '0',
2056 xl('If enabled, this will send the execution time it took to verify hash to the php error log.')
2059 'gbl_auth_hash_algo' => array(
2060 xl('Hash Algorithm for Authentication'),
2061 array(
2062 'DEFAULT' => xl('PHP Default'),
2063 'BCRYPT' => xl('Bcrypt'),
2064 'ARGON2I' => xl('Argon2I') . ' (PHP 7.3 or greater)',
2065 'ARGON2ID' => xl('Argon2ID') . ' (PHP 7.3 or greater)',
2067 'DEFAULT', // default
2068 xl('Hashing algorithm for authentication. Suggest PHP Default unless you know what you are doing.')
2071 'gbl_auth_bcrypt_hash_cost' => array(
2072 xl('Authentication Token Bcrypt Hash Cost'),
2073 array(
2074 'DEFAULT' => xl('PHP Default'),
2075 '5' => '5',
2076 '6' => '6',
2077 '7' => '7',
2078 '8' => '8',
2079 '9' => '9',
2080 '10' => '10',
2081 '11' => '11',
2082 '12' => '12',
2083 '13' => '13',
2084 '14' => '14',
2085 '15' => '15',
2086 '16' => '16',
2087 '17' => '17',
2088 '18' => '18',
2089 '19' => '19',
2090 '20' => '20',
2092 'DEFAULT', // default
2093 xl('Authentication bcrypt hash cost. Suggest PHP Default unless you know what you are doing.')
2096 'gbl_auth_argon_hash_memory_cost' => array(
2097 xl('Authentication Argon Hash Memory Cost'),
2098 array(
2099 'DEFAULT' => xl('PHP Default'),
2100 '512' => '512',
2101 '1024' => '1024',
2102 '2048' => '2048',
2103 '4096' => '4096',
2104 '8192' => '8192',
2105 '16384' => '16384',
2106 '32768' => '32768',
2107 '65536' => '65536',
2108 '131072' => '131072',
2109 '262144' => '262144',
2110 '524288' => '524288',
2111 '1048576' => '1048576',
2112 '2097152' => '2097152',
2114 'DEFAULT', // default
2115 xl('Authentication argon hash memory cost. Suggest PHP Default unless you know what you are doing.')
2118 'gbl_auth_argon_hash_time_cost' => array(
2119 xl('Authentication Argon Hash Time Cost'),
2120 array(
2121 'DEFAULT' => xl('PHP Default'),
2122 '1' => '1',
2123 '2' => '2',
2124 '3' => '3',
2125 '4' => '4',
2126 '5' => '5',
2127 '6' => '6',
2128 '7' => '7',
2129 '8' => '8',
2130 '9' => '9',
2131 '10' => '10',
2132 '11' => '11',
2133 '12' => '12',
2134 '13' => '13',
2135 '14' => '14',
2136 '15' => '15',
2137 '16' => '16',
2138 '17' => '17',
2139 '18' => '18',
2140 '19' => '19',
2141 '20' => '20',
2143 'DEFAULT', // default
2144 xl('Authentication argon hash time cost. Suggest PHP Default unless you know what you are doing.')
2147 'gbl_auth_argon_hash_thread_cost' => array(
2148 xl('Authentication Argon Hash Thread Number'),
2149 array(
2150 'DEFAULT' => xl('PHP Default'),
2151 '1' => '1',
2152 '2' => '2',
2153 '3' => '3',
2154 '4' => '4',
2155 '5' => '5',
2156 '6' => '6',
2157 '7' => '7',
2158 '8' => '8',
2159 '9' => '9',
2160 '10' => '10',
2161 '11' => '11',
2162 '12' => '12',
2163 '13' => '13',
2164 '14' => '14',
2165 '15' => '15',
2166 '16' => '16',
2167 '17' => '17',
2168 '18' => '18',
2169 '19' => '19',
2170 '20' => '20',
2172 'DEFAULT', // default
2173 xl('Authentication argon hash thread number. Suggest PHP Default unless you know what you are doing.')
2176 'gbl_token_hash_algo' => array(
2177 xl('Hash Algorithm for Token'),
2178 array(
2179 'DEFAULT' => xl('PHP Default'),
2180 'BCRYPT' => xl('Bcrypt'),
2181 'ARGON2I' => xl('Argon2I') . ' (PHP 7.3 or greater)',
2182 'ARGON2ID' => xl('Argon2ID') . ' (PHP 7.3 or greater)',
2184 'DEFAULT', // default
2185 xl('Hashing algorithm for token. Suggest PHP Default unless you know what you are doing.')
2188 'gbl_token_bcrypt_hash_cost' => array(
2189 xl('Token Bcrypt Hash Cost'),
2190 array(
2191 'DEFAULT' => xl('PHP Default'),
2192 '5' => '5',
2193 '6' => '6',
2194 '7' => '7',
2195 '8' => '8',
2196 '9' => '9',
2197 '10' => '10',
2198 '11' => '11',
2199 '12' => '12',
2200 '13' => '13',
2201 '14' => '14',
2202 '15' => '15',
2203 '16' => '16',
2204 '17' => '17',
2205 '18' => '18',
2206 '19' => '19',
2207 '20' => '20',
2209 'DEFAULT', // default
2210 xl('Token bcrypt hash cost. Suggest PHP Default unless you know what you are doing.')
2213 'gbl_token_argon_hash_memory_cost' => array(
2214 xl('Token Argon Hash Memory Cost'),
2215 array(
2216 'DEFAULT' => xl('PHP Default'),
2217 '512' => '512',
2218 '1024' => '1024',
2219 '2048' => '2048',
2220 '4096' => '4096',
2221 '8192' => '8192',
2222 '16384' => '16384',
2223 '32768' => '32768',
2224 '65536' => '65536',
2225 '131072' => '131072',
2226 '262144' => '262144',
2227 '524288' => '524288',
2228 '1048576' => '1048576',
2229 '2097152' => '2097152',
2231 'DEFAULT', // default
2232 xl('Token argon hash memory cost. Suggest PHP Default unless you know what you are doing.')
2235 'gbl_token_argon_hash_time_cost' => array(
2236 xl('Token Argon Hash Time Cost'),
2237 array(
2238 'DEFAULT' => xl('PHP Default'),
2239 '1' => '1',
2240 '2' => '2',
2241 '3' => '3',
2242 '4' => '4',
2243 '5' => '5',
2244 '6' => '6',
2245 '7' => '7',
2246 '8' => '8',
2247 '9' => '9',
2248 '10' => '10',
2249 '11' => '11',
2250 '12' => '12',
2251 '13' => '13',
2252 '14' => '14',
2253 '15' => '15',
2254 '16' => '16',
2255 '17' => '17',
2256 '18' => '18',
2257 '19' => '19',
2258 '20' => '20',
2260 'DEFAULT', // default
2261 xl('Token argon hash time cost. Suggest PHP Default unless you know what you are doing.')
2264 'gbl_token_argon_hash_thread_cost' => array(
2265 xl('Token Argon Hash Thread Number'),
2266 array(
2267 'DEFAULT' => xl('PHP Default'),
2268 '1' => '1',
2269 '2' => '2',
2270 '3' => '3',
2271 '4' => '4',
2272 '5' => '5',
2273 '6' => '6',
2274 '7' => '7',
2275 '8' => '8',
2276 '9' => '9',
2277 '10' => '10',
2278 '11' => '11',
2279 '12' => '12',
2280 '13' => '13',
2281 '14' => '14',
2282 '15' => '15',
2283 '16' => '16',
2284 '17' => '17',
2285 '18' => '18',
2286 '19' => '19',
2287 '20' => '20',
2289 'DEFAULT', // default
2290 xl('Token argon hash thread number. Suggest PHP Default unless you know what you are doing.')
2294 // Notifications Tab
2296 'Notifications' => array(
2298 'patient_reminder_sender_name' => array(
2299 xl('Patient Reminder Sender Name'),
2300 'text', // data type
2301 '', // default
2302 xl('Name of the sender for patient reminders.')
2305 'patient_reminder_sender_email' => array(
2306 xl('Patient Reminder Sender Email'),
2307 'text', // data type
2308 '', // default
2309 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.')
2312 'practice_return_email_path' => array(
2313 xl('Notification Email Address'),
2314 'text', // data type
2315 '', // default
2316 xl('Email address, if any, to receive administrative notifications.')
2319 'EMAIL_METHOD' => array(
2320 xl('Email Transport Method'),
2321 array(
2322 'PHPMAIL' => 'PHPMAIL',
2323 'SENDMAIL' => 'SENDMAIL',
2324 'SMTP' => 'SMTP',
2326 'SMTP', // default
2327 xl('Method for sending outgoing email.')
2330 'SMTP_HOST' => array(
2331 xl('SMTP Server Hostname'),
2332 'text', // data type
2333 'localhost', // default
2334 xl('If SMTP is used, the server`s hostname or IP address.')
2337 'SMTP_PORT' => array(
2338 xl('SMTP Server Port Number'),
2339 'num', // data type
2340 '25', // default
2341 xl('If SMTP is used, the server`s TCP port number (usually 25).')
2344 'SMTP_USER' => array(
2345 xl('SMTP User for Authentication'),
2346 'text', // data type
2347 '', // default
2348 xl('Must be empty if SMTP authentication is not used.')
2351 'SMTP_PASS' => array(
2352 xl('SMTP Password for Authentication'),
2353 'encrypted', // data type
2354 '', // default
2355 xl('Must be empty if SMTP authentication is not used.')
2358 'SMTP_SECURE' => array(
2359 xl('SMTP Security Protocol'),
2360 array(
2361 '' => xl('None'),
2362 'ssl' => 'SSL',
2363 'tls' => 'TLS'
2366 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
2369 'EMAIL_NOTIFICATION_HOUR' => array(
2370 xl('Email Notification Hours'),
2371 'num', // data type
2372 '50', // default
2373 xl('Number of hours in advance to send email notifications.')
2376 'SMS_NOTIFICATION_HOUR' => array(
2377 xl('SMS Notification Hours'),
2378 'num', // data type
2379 '50', // default
2380 xl('Number of hours in advance to send SMS notifications.')
2383 'SMS_GATEWAY_USENAME' => array(
2384 xl('SMS Gateway Username'),
2385 'text', // data type
2386 '', // default
2387 xl('Username for SMS Gateway.')
2390 'SMS_GATEWAY_PASSWORD' => array(
2391 xl('SMS Gateway Password'),
2392 'text', // data type
2393 '', // default
2394 xl('Password for SMS Gateway.')
2397 'SMS_GATEWAY_APIKEY' => array(
2398 xl('SMS Gateway API Key'),
2399 'text', // data type
2400 '', // default
2401 xl('API key for SMS Gateway.')
2404 'phone_notification_hour' => array(
2405 xl('Phone Notification Hour'),
2406 'num', // data type
2407 '50', // default
2408 xl('Number of hours in advance to send Phone notification.')
2411 'phone_gateway_username' => array(
2412 xl('Phone Gateway Username'),
2413 'text', // data type
2414 '', // default
2415 xl('Username for Phone Gateway.')
2418 'phone_gateway_password' => array(
2419 xl('Phone Gateway Password'),
2420 'encrypted', // data type
2421 '', // default
2422 xl('Password for Phone Gateway.')
2425 'phone_gateway_url' => array(
2426 xl('Phone Gateway URL'),
2427 'text', // data type
2428 '', // default
2429 xl('URL for Phone Gateway.')
2434 // CDR (Clinical Decision Rules)
2436 'CDR' => array(
2438 'enable_cdr' => array(
2439 xl('Enable Clinical Decisions Rules (CDR)'),
2440 'bool', // data type
2441 '1', // default
2442 xl('Enable Clinical Decisions Rules (CDR)')
2445 'enable_allergy_check' => array(
2446 xl('Enable Allergy Check'),
2447 'bool', // data type
2448 '1', // default
2449 xl('Enable Allergy Check Against Medications and Prescriptions')
2452 'enable_alert_log' => array(
2453 xl('Enable Alert Log'),
2454 'bool', // data type
2455 '1', // default
2456 xl('Enable Alert Logging')
2459 'enable_cdr_new_crp' => array(
2460 xl('Enable Clinical Passive New Reminder(s) Popup'),
2461 'bool', // data type
2462 '1', // default
2463 xl('Enable Clinical Passive New Reminder(s) Popup')
2466 'enable_cdr_crw' => array(
2467 xl('Enable Clinical Passive Reminder Widget'),
2468 'bool', // data type
2469 '1', // default
2470 xl('Enable Clinical Passive Reminder Widget')
2473 'enable_cdr_crp' => array(
2474 xl('Enable Clinical Active Reminder Popup'),
2475 'bool', // data type
2476 '1', // default
2477 xl('Enable Clinical Active Reminder Popup')
2480 'enable_cdr_prw' => array(
2481 xl('Enable Patient Reminder Widget'),
2482 'bool', // data type
2483 '1', // default
2484 xl('Enable Patient Reminder Widget')
2487 'enable_cqm' => array(
2488 xl('Enable CQM Reporting'),
2489 'bool', // data type
2490 '1', // default
2491 xl('Enable Clinical Quality Measure (CQM) Reporting')
2494 'pqri_registry_name' => array(
2495 xl('PQRI Registry Name'),
2496 'text', // data type
2497 'Model Registry', // default
2498 xl('PQRI Registry Name')
2501 'pqri_registry_id' => array(
2502 xl('PQRI Registry ID'),
2503 'text', // data type
2504 '125789123', // default
2505 xl('PQRI Registry ID')
2508 'enable_amc' => array(
2509 xl('Enable AMC Reporting'),
2510 'bool', // data type
2511 '1', // default
2512 xl('Enable Automated Measure Calculations (AMC) Reporting')
2515 'enable_amc_prompting' => array(
2516 xl('Enable AMC Prompting'),
2517 'bool', // data type
2518 '1', // default
2519 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
2522 'enable_amc_tracking' => array(
2523 xl('Enable AMC Tracking'),
2524 'bool', // data type
2525 '1', // default
2526 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
2529 'cdr_report_nice' => array(
2530 xl('CDR Reports Processing Priority'),
2531 array(
2532 '' => xl('Default Priority'),
2533 '5' => xl('Moderate Priority'),
2534 '10' => xl('Moderate/Low Priority'),
2535 '15' => xl('Low Priority'),
2536 '20' => xl('Lowest Priority')
2538 '', // default
2539 xl('Set processing priority for CDR engine based reports.')
2542 'pat_rem_clin_nice' => array(
2543 xl('Patient Reminder Creation Processing Priority'),
2544 array(
2545 '' => xl('Default Priority'),
2546 '5' => xl('Moderate Priority'),
2547 '10' => xl('Moderate/Low Priority'),
2548 '15' => xl('Low Priority'),
2549 '20' => xl('Lowest Priority')
2551 '', // default
2552 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2555 'report_itemizing_standard' => array(
2556 xl('Enable Standard Report Itemization'),
2557 'bool', // data type
2558 '1', // default
2559 xl('Enable Itemization of Standard Clinical Rules Reports')
2562 'report_itemizing_cqm' => array(
2563 xl('Enable CQM Report Itemization'),
2564 'bool', // data type
2565 '1', // default
2566 xl('Enable Itemization of CQM Reports')
2569 'report_itemizing_amc' => array(
2570 xl('Enable AMC Report Itemization'),
2571 'bool', // data type
2572 '1', // default
2573 xl('Enable Itemization of AMC Reports')
2575 'dated_reminders_max_alerts_to_show' => array(
2576 xl('Dated reminders maximum alerts to show'),
2577 'num', // data type
2578 '5', // default
2579 xl('Dated reminders maximum alerts to show')
2581 'patient_birthday_alert' => array(
2582 xl('Alert on patient birthday'),
2583 array(
2584 '0' => xl('No alert'),
2585 '1' => xl('Alert only on birthday'),
2586 '2' => xl('Alert on and after birthday'),
2587 '3' => xl('Alert on and up to 28 days after birthday')
2589 '1', // default
2590 xl('Alert on patient birthday')
2592 'patient_birthday_alert_manual_off' => array(
2593 xl('Patient birthday alert requires turning off'),
2594 'bool', // data type
2595 '0', // default
2596 xl('Patient birthday alert requires turning off')
2600 // Logging
2602 'Logging' => array(
2604 'user_debug' => array(
2605 xl('User Debugging Options'),
2606 array(
2607 '0' => xl('None'),
2608 '1' => xl('Display Window Errors Only'),
2609 '2' => xl('Display Application Errors Only'),
2610 '3' => xl('All'),
2612 '0', // default
2613 xl('User Debugging Mode.')
2616 'enable_auditlog' => array(
2617 xl('Enable Audit Logging'),
2618 'bool', // data type
2619 '1', // default
2620 xl('Enable Audit Logging')
2623 'audit_events_patient-record' => array(
2624 xl('Audit Logging Patient Record'),
2625 'bool', // data type
2626 '1', // default
2627 xl('Enable logging of patient record modifications.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2630 'audit_events_scheduling' => array(
2631 xl('Audit Logging Scheduling'),
2632 'bool', // data type
2633 '1', // default
2634 xl('Enable logging of scheduling activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2637 'audit_events_order' => array(
2638 xl('Audit Logging Order'),
2639 'bool', // data type
2640 '1', // default
2641 xl('Enable logging of ordering activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2644 'audit_events_security-administration' => array(
2645 xl('Audit Logging Security Administration'),
2646 'bool', // data type
2647 '1', // default
2648 xl('Enable logging of security and administration activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2651 'audit_events_backup' => array(
2652 xl('Audit Logging Backups'),
2653 'bool', // data type
2654 '1', // default
2655 xl('Enable logging of backup related activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2658 'audit_events_other' => array(
2659 xl('Audit Logging Miscellaneous'),
2660 'bool', // data type
2661 '1', // default
2662 xl('Enable logging of miscellaneous activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2665 'audit_events_query' => array(
2666 xl('Audit Logging SELECT Query'),
2667 'bool', // data type
2668 '0', // default
2669 xl('Enable logging of all SQL SELECT queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2672 'audit_events_cdr' => array(
2673 xl('Audit CDR Engine Queries'),
2674 'bool', // data type
2675 '0', // default
2676 xl('Enable logging of CDR Engine Queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2679 'gbl_force_log_breakglass' => array(
2680 xl('Audit all Emergency User Queries'),
2681 'bool', // data type
2682 '1', // default
2683 xl('Force logging of all Emergency User (ie. breakglass) activities.')
2686 'enable_atna_audit' => array(
2687 xl('Enable ATNA Auditing'),
2688 'bool', // data type
2689 '0', // default
2690 xl('Enable Audit Trail and Node Authentication (ATNA).')
2693 'atna_audit_host' => array(
2694 xl('ATNA audit host'),
2695 'text', // data type
2696 '', // default
2697 xl('The hostname of the ATNA audit repository machine.')
2700 'atna_audit_port' => array(
2701 xl('ATNA audit port'),
2702 'text', // data type
2703 '6514', // default
2704 xl('Listening port of the RFC 5425 TLS syslog server.')
2707 'atna_audit_localcert' => array(
2708 xl('ATNA audit local certificate'),
2709 'text', // data type
2710 '', // default
2711 xl('Certificate to send to RFC 5425 TLS syslog server.')
2714 'atna_audit_cacert' => array(
2715 xl('ATNA audit CA certificate'),
2716 'text', // data type
2717 '', // default
2718 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2721 'enable_auditlog_encryption' => array(
2722 xl('Enable Audit Log Encryption'),
2723 'bool', // data type
2724 '0', // default
2725 xl('Enable Audit Log Encryption')
2728 'billing_log_option' => array(
2729 xl('Billing Log Option'),
2730 array(
2731 '1' => xl('Billing Log Append'),
2732 '2' => xl('Billing Log Overwrite')
2734 '1', // default
2735 xl('Billing log setting to append or overwrite the log file.')
2738 'gbl_print_log_option' => array(
2739 xl('Printing Log Option'),
2740 array(
2741 '0' => xl('No logging'),
2742 '1' => xl('Hide print feature'),
2743 '2' => xl('Log entire document'),
2745 '0', // default
2746 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2751 // Miscellaneous Tab
2753 'Miscellaneous' => array(
2755 'mysql_bin_dir' => array(
2756 xl('Path to MySQL Binaries'),
2757 'text', // data type
2758 $mysql_bin_dir, // default
2759 xl('Full path to directory containing MySQL executables.')
2762 'perl_bin_dir' => array(
2763 xl('Path to Perl Binaries'),
2764 'text', // data type
2765 $perl_bin_dir, // default
2766 xl('Full path to directory containing Perl executables.')
2769 'temporary_files_dir' => array(
2770 xl('Path to Temporary Files'),
2771 'text', // data type
2772 $temporary_files_dir, // default
2773 xl('Full path to directory used for temporary files.')
2776 'backup_log_dir' => array(
2777 xl('Path for Event Log Backup'),
2778 'text', // data type
2779 $backup_log_dir, // default
2780 xl('Full path to directory for event log backup.')
2783 'state_data_type' => array(
2784 xl('State Data Type'),
2785 array(
2786 '2' => xl('Text field'),
2787 '1' => xl('Single-selection list'),
2788 '26' => xl('Single-selection list with ability to add to the list'),
2790 '26', // default
2791 xl('Field type to use for employer or subscriber state in demographics.')
2794 'state_list' => array(
2795 xl('State list'),
2796 'text', // data type
2797 'state', // default
2798 xl('List used by above State Data Type option.')
2801 'state_custom_addlist_widget' => array(
2802 xl('State List Widget Custom Fields'),
2803 'bool', // data type
2804 '1', // default
2805 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2808 'country_data_type' => array(
2809 xl('Country 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 country in demographics.')
2819 'country_list' => array(
2820 xl('Country list'),
2821 'text', // data type
2822 'country', // default
2823 xl('List used by above Country Data Type option.')
2826 'print_command' => array(
2827 xl('Print Command'),
2828 'text', // data type
2829 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2830 xl('Shell command for printing from the server.')
2833 'default_chief_complaint' => array(
2834 xl('Default Reason for Visit'),
2835 'text', // data type
2837 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2840 'MedicareReferrerIsRenderer' => array(
2841 xl('Medicare Referrer Is Renderer'),
2842 'bool', // data type
2843 '0', // default = true
2844 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2847 'post_to_date_benchmark' => array(
2848 xl('Financial Close Date (yyyy-mm-dd)'),
2849 'text', // data type
2850 date('Y-m-d', time() - (10 * 24 * 60 * 60)), // default
2851 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2854 'enable_hylafax' => array(
2855 xl('Enable Hylafax Support'),
2856 'bool', // data type
2857 '0', // default
2858 xl('Enable Hylafax Support')
2861 'hylafax_server' => array(
2862 xl('Hylafax Server'),
2863 'text', // data type
2864 'localhost', // default
2865 xl('Hylafax server hostname.')
2868 'hylafax_basedir' => array(
2869 xl('Hylafax Directory'),
2870 'text', // data type
2871 '/var/spool/hylafax', // default
2872 xl('Location where Hylafax stores faxes.')
2875 'hylafax_enscript' => array(
2876 xl('Hylafax Enscript Command'),
2877 'text', // data type
2878 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2879 xl('Enscript command used by Hylafax.')
2882 'enable_scanner' => array(
2883 xl('Enable Scanner Support'),
2884 'bool', // data type
2885 '0', // default
2886 xl('Enable Scanner Support')
2889 'scanner_output_directory' => array(
2890 xl('Scanner Directory'),
2891 'text', // data type
2892 '/mnt/scan_docs', // default
2893 xl('Location where scans are stored.')
2896 'unique_installation_id' => array(
2897 xl('Unique Installation ID'),
2898 'if_empty_create_random_uuid', // data type
2899 '', // default
2900 xl('Unique installation ID. Creates a random UUID if empty.')
2904 // Portal Tab
2906 'Portal' => array(
2908 'portal_onsite_two_enable' => array(
2909 xl('Enable Onsite Patient Portal'),
2910 'bool', // data type
2911 '0',
2912 xl('Enable Onsite Patient Portal')
2915 'portal_onsite_two_address' => array(
2916 xl('Onsite Patient Portal Site Address'),
2917 'text', // data type
2918 'https://your_web_site.com/openemr/portal',
2919 xl('Website link for the Onsite Patient Portal.')
2922 'portal_onsite_two_basepath' => array(
2923 xl('Portal Uses Server Base Path (internal)'),
2924 'bool',
2925 '0',
2926 xl('Use servers protocol and host in urls (portal internal only).')
2929 'enforce_signin_email' => array(
2930 xl('Enforce E-Mail in Portal Log On Dialog'),
2931 'bool', // data type
2932 '1',
2933 xl('Patient is required to enter their contact e-mail if present in Demographics Contact.')
2936 'portal_onsite_two_register' => array(
2937 xl('Allow Onsite New Patient Registration Widget'),
2938 'bool', // data type
2939 '1',
2940 xl('Enable Onsite Patient Portal new patient to self register.')
2943 'allow_portal_appointments' => array(
2944 xl('Allow Onsite Online Appointments'),
2945 'bool', // data type
2946 '1',
2947 xl('Allow Onsite Patient to make and view appointments online.')
2950 'allow_portal_chat' => array(
2951 xl('Allow Onsite Online Secure Chat'),
2952 'bool', // data type
2953 '1',
2954 xl('Allow Onsite Patient to use Secure Chat Application.')
2957 'portal_two_ledger' => array(
2958 xl('Allow Onsite Patient Ledger'),
2959 'bool', // data type
2960 '1',
2961 xl('Allow Onsite Patient to view their accounting ledger online.')
2964 'portal_two_payments' => array(
2965 xl('Allow Onsite Online Payments'),
2966 'bool', // data type
2967 '0',
2968 xl('Allow Onsite Patient to make payments online.')
2971 'portal_two_pass_reset' => array(
2972 xl('Allow Onsite Patients to Reset Credentials'),
2973 'bool', // data type
2974 '0',
2975 xl('Patient may change their logon from portal login dialog.')
2978 'portal_onsite_document_download' => array(
2979 xl('Enable Onsite Patient Portal Document Download'),
2980 'bool', // data type
2981 '1',
2982 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2985 'portal_offsite_enable' => array(
2986 xl('Enable Offsite Patient Portal'),
2987 'bool', // data type
2988 '0',
2989 xl('Enable Offsite Patient Portal.')
2991 'portal_offsite_providerid' => array(
2992 xl('Offsite Patient Portal Provider ID'),
2993 'text', // data type
2995 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2998 'portal_offsite_username' => array(
2999 xl('Offsite Patient Portal Username'),
3000 'text', // data type
3002 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
3005 'portal_offsite_password' => array(
3006 xl('Offsite Patient Portal Password'),
3007 'pwd', // data type
3009 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
3012 'portal_offsite_address' => array(
3013 xl('Offsite Patient Portal Site Address'),
3014 'text', // data type
3015 'https://ssh.mydocsportal.com/provider.php',
3016 xl('Offsite Https link for the Patient Portal.')
3019 'portal_offsite_address_patient_link' => array(
3020 xl('Offsite Patient Portal Site Address (Patient Link)'),
3021 'text', // data type
3022 'https://ssh.mydocsportal.com',
3023 xl('Offsite Https link for the Patient Portal.(Patient Link)')
3026 // Currently the "CMS Portal" supports WordPress. Other Content Management
3027 // Systems may be supported in the future.
3029 'gbl_portal_cms_enable' => array(
3030 xl('Enable CMS Portal'),
3031 'bool', // data type
3032 '0',
3033 xl('Enable support for the open source WordPress Portal by Sunset Systems')
3036 'gbl_portal_cms_address' => array(
3037 xl('CMS Portal Site Address'),
3038 'text', // data type
3039 'https://your_cms_site.com/',
3040 xl('URL for the WordPress site that supports the portal')
3043 'gbl_portal_cms_username' => array(
3044 xl('CMS Portal Username'),
3045 'text', // data type
3047 xl('Login name of WordPress user for portal access')
3050 'gbl_portal_cms_password' => array(
3051 xl('CMS Portal Password'),
3052 'encrypted', // data type
3054 xl('Password for the above user')
3059 // Connectors Tab
3061 'Connectors' => array(
3063 'fhir_enable' => array(
3064 xl('Enable FHIR Provider Client Service'),
3065 array(
3066 0 => xl('Disabled'),
3067 1 => xl('HAPI FHIR'),
3068 2 => xl('Smart on FHIR'),
3070 '0',
3071 xl('Enable FHIR Provider Client Service')
3074 'fhir_base_url' => array(
3075 xl('FHIR Server Base Address'),
3076 'text',
3077 'https://hapi.fhir.org/baseDstu3/',
3078 xl('Base URL for FHIR Server.')
3081 'rest_api' => array(
3082 xl('Enable OpenEMR REST API'),
3083 'bool',
3084 '0',
3085 xl('Enable OpenEMR RESTful API. SSL Required')
3088 'enable_oa' => array(
3089 xl('Enable Office Ally Insurance Eligibility'),
3090 'bool',
3091 '0',
3092 xl('Allow insurance eligibility checks using Office Ally')
3095 'payment_gateway' => array(
3096 xl('Select Credit Card Payment Gateway'),
3097 array(
3098 'InHouse' => xl('In House'),
3099 'AuthorizeNet' => xl('Authorize.Net'),
3100 'Stripe' => xl('Stripe')
3102 'InHouse',
3103 xl('Enable a Payment Gateway Service for processing credit card transactions')
3106 'gateway_mode_production' => array(
3107 xl('Set Gateway to Production Mode'),
3108 'bool', // data type
3109 '0',
3110 xl('Check this to go live. Not checked is testing mode.')
3113 'gateway_public_key' => array(
3114 xl('Gateway Publishable Key'),
3115 'encrypted',
3117 xl('The public access key for secure tokenize of credit or debit card authorization. PCI compliance')
3120 'gateway_api_key' => array(
3121 xl('Gateway API Login Auth Name or Secret'),
3122 'encrypted',
3124 xl('The Auth Name or API key for selected account. Auth Name for Authorize.Net and API Secret for Stripe.')
3127 'gateway_transaction_key' => array(
3128 xl('Gateway Transaction Key'),
3129 'encrypted',
3131 xl('Mainly Authorize.Net uses two keys')
3134 'medex_enable' => array(
3135 xl('Enable MedEx Communication Service'),
3136 'bool', // data type
3137 '0',
3138 xl('Enable MedEx Communication Service')
3141 'erx_enable' => array(
3142 xl('Enable NewCrop eRx Service'),
3143 'bool',
3144 '0',
3145 xl('Enable NewCrop eRx Service.') . ' ' .
3146 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.')
3149 'erx_newcrop_path' => array(
3150 xl('NewCrop eRx Site Address'),
3151 'text',
3152 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
3153 xl('URL for NewCrop eRx Site Address.')
3156 'erx_newcrop_path_soap' => array(
3157 xl('NewCrop eRx Web Service Address'),
3158 'text',
3159 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
3160 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
3163 'erx_soap_ttl_allergies' => array(
3164 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
3165 'num',
3166 '21600',
3167 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
3170 'erx_soap_ttl_medications' => array(
3171 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
3172 'num',
3173 '21600',
3174 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
3177 'erx_account_partner_name' => array(
3178 xl('NewCrop eRx Partner Name'),
3179 'text',
3181 xl('Partner Name issued for NewCrop eRx service.')
3184 'erx_account_name' => array(
3185 xl('NewCrop eRx Name'),
3186 'text',
3188 xl('Account Name issued for NewCrop eRx service.')
3191 'erx_account_password' => array(
3192 xl('NewCrop eRx Password'),
3193 'encrypted',
3195 xl('Account Password issued for NewCrop eRx service.')
3198 'erx_account_id' => array(
3199 xl('NewCrop eRx Account Id'),
3200 'text',
3201 '1',
3202 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
3205 'erx_upload_active' => array(
3206 xl('Only upload active prescriptions'),
3207 'bool',
3208 '0',
3209 xl('Only upload active prescriptions to NewCrop eRx.')
3212 'erx_import_status_message' => array(
3213 xl('Enable NewCrop eRx import status message'),
3214 'bool',
3215 '0',
3216 xl('Enable import status message after visiting NewCrop eRx.')
3219 'erx_medication_display' => array(
3220 xl('Do not display NewCrop eRx Medications uploaded'),
3221 'bool',
3222 '0',
3223 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
3226 'erx_allergy_display' => array(
3227 xl('Do not display NewCrop eRx Allergy uploaded'),
3228 'bool',
3229 '0',
3230 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
3233 'erx_default_patient_country' => array(
3234 xl('NewCrop eRx Default Patient Country'),
3235 array(
3236 '' => '',
3237 'US' => xl('USA'),
3238 'CA' => xl('Canada'),
3239 'MX' => xl('Mexico'),
3242 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
3245 'erx_debug_setting' => array(
3246 xl('NewCrop eRx Debug Setting'),
3247 array(
3248 0 => xl('None'),
3249 1 => xl('Request Only'),
3250 2 => xl('Response Only'),
3251 3 => xl('Request & Response'),
3253 '0',
3254 xl('Log all NewCrop eRx Requests and / or Responses.'),
3257 'weno_rx_enable' => array(
3258 xl('Enable Weno eRx Service'),
3259 'bool',
3260 '0',
3261 xl('Enable Weno eRx Service') . ' ' . xl('Contact Open Med Practice, www.openmedpractice.com for subscribing to the Weno Free eRx service.')
3264 'weno_account_id' => array(
3265 xl('Weno eRx Account Id'),
3266 'text',
3267 '137',
3268 xl('Account Id issued for Weno eRx service.')
3271 'weno_account_pass' => array(
3272 xl('Weno eRx Account Pass'),
3273 'encrypted', // data type
3274 '7C84773D5063B20BC9E41636A091C6F17E9C1E34',
3275 xl('Account Id issued for Weno eRx service.')
3278 'weno_provider_id' => array(
3279 xl('Weno eRx Clinic ID'),
3280 'text',
3281 'C36275',
3282 xl('Account Id issued for Your clinics eRx service.')
3285 'ccda_alt_service_enable' => array(
3286 xl('Enable C-CDA Alternate Service'),
3287 array(
3288 0 => xl('Off'),
3289 1 => xl('Care Coordination Only'),
3290 2 => xl('Portal Only'),
3291 3 => xl('Both'),
3293 '0',
3294 xl('Enable C-CDA Alternate Service')
3297 'phimail_enable' => array(
3298 xl('Enable phiMail Direct Messaging Service'),
3299 'bool', // data type
3300 '0',
3301 xl('Enable phiMail Direct Messaging Service')
3304 'phimail_server_address' => array(
3305 xl('phiMail Server Address'),
3306 'text', // data type
3307 'https://phimail.example.com:32541',
3308 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
3311 'phimail_username' => array(
3312 xl('phiMail Username'),
3313 'text', // data type
3315 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
3318 'phimail_password' => array(
3319 xl('phiMail Password'),
3320 'encrypted', // data type
3322 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
3325 'phimail_notify' => array(
3326 xl('phiMail notification user'),
3327 'text', // data type
3328 'admin',
3329 xl('This user will receive notification of new incoming Direct messages')
3332 'phimail_interval' => array(
3333 xl('phiMail Message Check Interval (minutes)'),
3334 'num', // data type
3335 '5',
3336 xl('Interval between message checks (set to zero for manual checks only)')
3339 'phimail_ccd_enable' => array(
3340 xl('phiMail Allow CCD Send'),
3341 'bool', // data type
3342 '0',
3343 xl('phiMail Allow CCD Send')
3346 'phimail_ccr_enable' => array(
3347 xl('phiMail Allow CCR Send'),
3348 'bool', // data type
3349 '0',
3350 xl('phiMail Allow CCR Send')
3354 'Rx' => array(
3355 'rx_enable_DEA' => array(
3356 xl('Rx Enable DEA #'),
3357 'bool', // data type
3358 '1',
3359 xl('Rx Enable DEA #')
3361 'rx_show_DEA' => array(
3362 xl('Rx Show DEA #'),
3363 'bool', // data type
3364 '0',
3365 xl('Rx Show DEA #')
3367 'rx_enable_NPI' => array(
3368 xl('Rx Enable NPI'),
3369 'bool', // data type
3370 '0',
3371 xl('Rx Enable NPI')
3373 'rx_show_NPI' => array(
3374 xl('Rx Show NPI'),
3375 'bool', // data type
3376 '0',
3377 xl('Rx Show NPI')
3379 'rx_enable_SLN' => array(
3380 xl('Rx Enable State Lic. #'),
3381 'bool', // data type
3382 '0',
3383 xl('Rx Enable State Lic. #')
3385 'rx_show_SLN' => array(
3386 xl('Rx Show State Lic. #'),
3387 'bool', // data type
3388 '0',
3389 xl('Rx Show State Lic. #')
3391 'rx_show_drug_drug' => array(
3392 xl('Rx NLM Drug-Drug'),
3393 'bool', // data type
3394 '0',
3395 xl('Rx NLM Drug-Drug')
3397 'rx_paper_size' => array(
3398 xl('Rx Paper Size'), // descriptive name
3399 array(
3400 'LETTER' => xl('Letter Paper Size'),
3401 'LEGAL' => xl('Legal Paper Size'),
3402 'FOLIO' => xl('Folio Paper Size'),
3403 'EXECUTIVE' => xl('Executive Paper Size'),
3404 '4A0' => ('4A0' . " " . xl('Paper Size')),
3405 '2A0' => ('2A0' . " " . xl('Paper Size')),
3406 'A0' => ('A0' . " " . xl('Paper Size')),
3407 'A1' => ('A1' . " " . xl('Paper Size')),
3408 'A2' => ('A2' . " " . xl('Paper Size')),
3409 'A3' => ('A3' . " " . xl('Paper Size')),
3410 'A4' => ('A4' . " " . xl('Paper Size')),
3411 'A5' => ('A5' . " " . xl('Paper Size')),
3412 'A6' => ('A6' . " " . xl('Paper Size')),
3413 'A7' => ('A7' . " " . xl('Paper Size')),
3414 'A8' => ('A8' . " " . xl('Paper Size')),
3415 'A9' => ('A9' . " " . xl('Paper Size')),
3416 'A10' => ('A10' . " " . xl('Paper Size')),
3417 'B0' => ('B0' . " " . xl('Paper Size')),
3418 'B1' => ('B1' . " " . xl('Paper Size')),
3419 'B2' => ('B2' . " " . xl('Paper Size')),
3420 'B3' => ('B3' . " " . xl('Paper Size')),
3421 'B4' => ('B4' . " " . xl('Paper Size')),
3422 'B5' => ('B5' . " " . xl('Paper Size')),
3423 'B6' => ('B6' . " " . xl('Paper Size')),
3424 'B7' => ('B7' . " " . xl('Paper Size')),
3425 'B8' => ('B8' . " " . xl('Paper Size')),
3426 'B9' => ('B9' . " " . xl('Paper Size')),
3427 'B10' => ('B10' . " " . xl('Paper Size')),
3428 'C0' => ('C0' . " " . xl('Paper Size')),
3429 'C1' => ('C1' . " " . xl('Paper Size')),
3430 'C2' => ('C2' . " " . xl('Paper Size')),
3431 'C3' => ('C3' . " " . xl('Paper Size')),
3432 'C4' => ('C4' . " " . xl('Paper Size')),
3433 'C5' => ('C5' . " " . xl('Paper Size')),
3434 'C6' => ('C6' . " " . xl('Paper Size')),
3435 'C7' => ('C7' . " " . xl('Paper Size')),
3436 'C8' => ('C8' . " " . xl('Paper Size')),
3437 'C9' => ('C9' . " " . xl('Paper Size')),
3438 'C10' => ('C10' . " " . xl('Paper Size')),
3439 'RA0' => ('RA0' . " " . xl('Paper Size')),
3440 'RA1' => ('RA1' . " " . xl('Paper Size')),
3441 'RA2' => ('RA2' . " " . xl('Paper Size')),
3442 'RA3' => ('RA3' . " " . xl('Paper Size')),
3443 'RA4' => ('RA4' . " " . xl('Paper Size')),
3444 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3445 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3446 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3447 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3448 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3450 'LETTER', // default = tree menu
3451 xl('Rx Paper Size')
3453 'rx_left_margin' => array(
3454 xl('Rx Left Margin (px)'),
3455 'num',
3456 '30',
3457 xl('Rx Left Margin (px)')
3459 'rx_right_margin' => array(
3460 xl('Rx Right Margin (px)'),
3461 'num',
3462 '30',
3463 xl('Rx Right Margin (px)')
3465 'rx_top_margin' => array(
3466 xl('Rx Top Margin (px)'),
3467 'num',
3468 '72',
3469 xl('Rx Top Margin (px)')
3471 'rx_bottom_margin' => array(
3472 xl('Rx Bottom Margin (px)'),
3473 'num',
3474 '30',
3475 xl('Rx Bottom Margin (px)')
3477 'rx_use_fax_template' => array(
3478 xl('Show button for download fax template'),
3479 'bool', // data type
3480 '1', // default = true
3481 xl('Show button in the prescription list for download fax template')
3483 'rx_zend_html_template' => array(
3484 xl('Rx html print - zend module'),
3485 'bool', // data type
3486 '0', // default = false
3487 xl('Use an html template from zend module')
3489 'rx_zend_html_action' => array(
3490 xl('Name of zend template for html print'),
3491 'text', // data type
3492 'default',
3493 xl('Name of zend template for html print, possible to add custom template in the PrescriptionTemplate module')
3495 'rx_zend_pdf_template' => array(
3496 xl('Rx pdf - zend template'),
3497 'bool', // data type
3498 '0', // default = false
3499 xl('Use a pdf template from zend module')
3501 'rx_zend_pdf_action' => array(
3502 xl('Name of zend template for pdf export'),
3503 'text', // data type
3504 'default',
3505 xl('Name of zend template for pdf export, possible to add custom template in the PrescriptionTemplate module')
3508 'PDF' => array(
3509 'pdf_layout' => array(
3510 xl('Layout'),
3511 array(
3512 'P' => xl('Portrait'),
3513 'L' => xl('Landscape')
3515 'P', //defaut
3516 xl("Choose Layout Direction"),
3518 'pdf_language' => array(
3519 xl('PDF Language'),
3520 array(
3521 'aa' => xl('Afar'),
3522 'af' => xl('Afrikaans'),
3523 'ak' => xl('Akan'),
3524 'sq' => xl('Albanian'),
3525 'am' => xl('Amharic'),
3526 'ar' => xl('Arabic'),
3527 'an' => xl('Aragonese'),
3528 'hy' => xl('Armenian'),
3529 'as' => xl('Assamese'),
3530 'av' => xl('Avaric'),
3531 'ae' => xl('Avestan'),
3532 'ay' => xl('Aymara'),
3533 'az' => xl('Azerbaijani'),
3534 'bm' => xl('Bambara'),
3535 'ba' => xl('Bashkir'),
3536 'eu' => xl('Basque'),
3537 'be' => xl('Belarusian'),
3538 'bn' => xl('Bengali- Bangla'),
3539 'bh' => xl('Bihari'),
3540 'bi' => xl('Bislama'),
3541 'bs' => xl('Bosnian'),
3542 'br' => xl('Breton'),
3543 'bg' => xl('Bulgarian'),
3544 'my' => xl('Burmese'),
3545 'ca' => xl('Catalan- Valencian'),
3546 'ch' => xl('Chamorro'),
3547 'ce' => xl('Chechen'),
3548 'ny' => xl('Chichewa- Chewa- Nyanja'),
3549 'zh' => xl('Chinese'),
3550 'cv' => xl('Chuvash'),
3551 'kw' => xl('Cornish'),
3552 'co' => xl('Corsican'),
3553 'cr' => xl('Cree'),
3554 'hr' => xl('Croatian'),
3555 'cs' => xl('Czech'),
3556 'da' => xl('Danish'),
3557 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
3558 'nl' => xl('Dutch'),
3559 'dz' => xl('Dzongkha'),
3560 'en' => xl('English'),
3561 'eo' => xl('Esperanto'),
3562 'et' => xl('Estonian'),
3563 'ee' => xl('Ewe'),
3564 'fo' => xl('Faroese'),
3565 'fj' => xl('Fijian'),
3566 'fi' => xl('Finnish'),
3567 'fr' => xl('French'),
3568 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
3569 'gl' => xl('Galician'),
3570 'ka' => xl('Georgian'),
3571 'de' => xl('German'),
3572 'el' => xl('Greek, Modern'),
3573 'gn' => xl('Guarani'),
3574 'gu' => xl('Gujarati'),
3575 'ht' => xl('Haitian- Haitian Creole'),
3576 'ha' => xl('Hausa'),
3577 'he' => xl('Hebrew (modern)'),
3578 'hz' => xl('Herero'),
3579 'hi' => xl('Hindi'),
3580 'ho' => xl('Hiri Motu'),
3581 'hu' => xl('Hungarian'),
3582 'ia' => xl('Interlingua'),
3583 'id' => xl('Indonesian'),
3584 'ie' => xl('Interlingue'),
3585 'ga' => xl('Irish'),
3586 'ig' => xl('Igbo'),
3587 'ik' => xl('Inupiaq'),
3588 'io' => xl('Ido'),
3589 'is' => xl('Icelandic'),
3590 'it' => xl('Italian'),
3591 'iu' => xl('Inuktitut'),
3592 'ja' => xl('Japanese'),
3593 'jv' => xl('Javanese'),
3594 'kl' => xl('Kalaallisut, Greenlandic'),
3595 'kn' => xl('Kannada'),
3596 'kr' => xl('Kanuri'),
3597 'ks' => xl('Kashmiri'),
3598 'kk' => xl('Kazakh'),
3599 'km' => xl('Khmer'),
3600 'ki' => xl('Kikuyu, Gikuyu'),
3601 'rw' => xl('Kinyarwanda'),
3602 'ky' => xl('Kyrgyz'),
3603 'kv' => xl('Komi'),
3604 'kg' => xl('Kongo'),
3605 'ko' => xl('Korean'),
3606 'ku' => xl('Kurdish'),
3607 'kj' => xl('Kwanyama, Kuanyama'),
3608 'la' => xl('Latin'),
3609 'lb' => xl('Luxembourgish, Letzeburgesch'),
3610 'lg' => xl('Ganda'),
3611 'li' => xl('Limburgish, Limburgan, Limburger'),
3612 'ln' => xl('Lingala'),
3613 'lo' => xl('Lao'),
3614 'lt' => xl('Lithuanian'),
3615 'lu' => xl('Luba-Katanga'),
3616 'lv' => xl('Latvian'),
3617 'gv' => xl('Manx'),
3618 'mk' => xl('Macedonian'),
3619 'mg' => xl('Malagasy'),
3620 'ms' => xl('Malay'),
3621 'ml' => xl('Malayalam'),
3622 'mt' => xl('Maltese'),
3623 'mi' => xl('Maori'),
3624 'mr' => xl('Marathi (Marathi)'),
3625 'mh' => xl('Marshallese'),
3626 'mn' => xl('Mongolian'),
3627 'na' => xl('Nauru'),
3628 'nv' => xl('Navajo, Navaho'),
3629 'nb' => xl('Norwegian Bokmal'),
3630 'nd' => xl('North Ndebele'),
3631 'ne' => xl('Nepali'),
3632 'ng' => xl('Ndonga'),
3633 'nn' => xl('Norwegian Nynorsk'),
3634 'no' => xl('Norwegian'),
3635 'ii' => xl('Nuosu'),
3636 'nr' => xl('South Ndebele'),
3637 'oc' => xl('Occitan'),
3638 'oj' => xl('Ojibwe, Ojibwa'),
3639 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
3640 'om' => xl('Oromo'),
3641 'or' => xl('Oriya'),
3642 'os' => xl('Ossetian, Ossetic'),
3643 'pa' => xl('Panjabi, Punjabi'),
3644 'pi' => xl('Pali'),
3645 'fa' => xl('Persian (Farsi)'),
3646 'pl' => xl('Polish'),
3647 'ps' => xl('Pashto, Pushto'),
3648 'pt' => xl('Portuguese'),
3649 'qu' => xl('Quechua'),
3650 'rm' => xl('Romansh'),
3651 'rn' => xl('Kirundi'),
3652 'ro' => xl('Romanian'),
3653 'ru' => xl('Russian'),
3654 'sa' => xl('Sanskrit (Samskrta)'),
3655 'sc' => xl('Sardinian'),
3656 'sd' => xl('Sindhi'),
3657 'se' => xl('Northern Sami'),
3658 'sm' => xl('Samoan'),
3659 'sg' => xl('Sango'),
3660 'sr' => xl('Serbian'),
3661 'gd' => xl('Scottish Gaelic- Gaelic'),
3662 'sn' => xl('Shona'),
3663 'si' => xl('Sinhala, Sinhalese'),
3664 'sk' => xl('Slovak'),
3665 'sl' => xl('Slovene'),
3666 'so' => xl('Somali'),
3667 'st' => xl('Southern Sotho'),
3668 'es' => xl('Spanish- Castilian'),
3669 'su' => xl('Sundanese'),
3670 'sw' => xl('Swahili'),
3671 'ss' => xl('Swati'),
3672 'sv' => xl('Swedish'),
3673 'ta' => xl('Tamil'),
3674 'te' => xl('Telugu'),
3675 'tg' => xl('Tajik'),
3676 'th' => xl('Thai'),
3677 'ti' => xl('Tigrinya'),
3678 'bo' => xl('Tibetan Standard, Tibetan, Central'),
3679 'tk' => xl('Turkmen'),
3680 'tl' => xl('Tagalog'),
3681 'tn' => xl('Tswana'),
3682 'to' => xl('Tonga (Tonga Islands)'),
3683 'tr' => xl('Turkish'),
3684 'ts' => xl('Tsonga'),
3685 'tt' => xl('Tatar'),
3686 'tw' => xl('Twi'),
3687 'ty' => xl('Tahitian'),
3688 'ug' => xl('Uyghur, Uighur'),
3689 'uk' => xl('Ukrainian'),
3690 'ur' => xl('Urdu'),
3691 'uz' => xl('Uzbek'),
3692 've' => xl('Venda'),
3693 'vi' => xl('Vietnamese'),
3694 'vo' => xl('Volapuk'),
3695 'wa' => xl('Walloon'),
3696 'cy' => xl('Welsh'),
3697 'wo' => xl('Wolof'),
3698 'fy' => xl('Western Frisian'),
3699 'xh' => xl('Xhosa'),
3700 'yi' => xl('Yiddish'),
3701 'yo' => xl('Yoruba'),
3702 'za' => xl('Zhuang, Chuang'),
3703 'zu' => xl('Zulu'),
3705 'en', // default English
3706 xl('Choose PDF languange Preference'),
3708 'pdf_size' => array(
3709 xl('Paper Size'), // Descriptive Name
3710 array(
3711 'LETTER' => xl('Letter Paper Size'),
3712 'LEGAL' => xl('Legal Paper Size'),
3713 'FOLIO' => xl('Folio Paper Size'),
3714 'EXECUTIVE' => xl('Executive Paper Size'),
3715 '4A0' => ('4A0' . " " . xl('Paper Size')),
3716 '2A0' => ('2A0' . " " . xl('Paper Size')),
3717 'A0' => ('A0' . " " . xl('Paper Size')),
3718 'A1' => ('A1' . " " . xl('Paper Size')),
3719 'A2' => ('A2' . " " . xl('Paper Size')),
3720 'A3' => ('A3' . " " . xl('Paper Size')),
3721 'A4' => ('A4' . " " . xl('Paper Size')),
3722 'A5' => ('A5' . " " . xl('Paper Size')),
3723 'A6' => ('A6' . " " . xl('Paper Size')),
3724 'A7' => ('A7' . " " . xl('Paper Size')),
3725 'A8' => ('A8' . " " . xl('Paper Size')),
3726 'A9' => ('A9' . " " . xl('Paper Size')),
3727 'A10' => ('A10' . " " . xl('Paper Size')),
3728 'B0' => ('B0' . " " . xl('Paper Size')),
3729 'B1' => ('B1' . " " . xl('Paper Size')),
3730 'B2' => ('B2' . " " . xl('Paper Size')),
3731 'B3' => ('B3' . " " . xl('Paper Size')),
3732 'B4' => ('B4' . " " . xl('Paper Size')),
3733 'B5' => ('B5' . " " . xl('Paper Size')),
3734 'B6' => ('B6' . " " . xl('Paper Size')),
3735 'B7' => ('B7' . " " . xl('Paper Size')),
3736 'B8' => ('B8' . " " . xl('Paper Size')),
3737 'B9' => ('B9' . " " . xl('Paper Size')),
3738 'B10' => ('B10' . " " . xl('Paper Size')),
3739 'C0' => ('C0' . " " . xl('Paper Size')),
3740 'C1' => ('C1' . " " . xl('Paper Size')),
3741 'C2' => ('C2' . " " . xl('Paper Size')),
3742 'C3' => ('C3' . " " . xl('Paper Size')),
3743 'C4' => ('C4' . " " . xl('Paper Size')),
3744 'C5' => ('C5' . " " . xl('Paper Size')),
3745 'C6' => ('C6' . " " . xl('Paper Size')),
3746 'C7' => ('C7' . " " . xl('Paper Size')),
3747 'C8' => ('C8' . " " . xl('Paper Size')),
3748 'C9' => ('C9' . " " . xl('Paper Size')),
3749 'C10' => ('C10' . " " . xl('Paper Size')),
3750 'RA0' => ('RA0' . " " . xl('Paper Size')),
3751 'RA1' => ('RA1' . " " . xl('Paper Size')),
3752 'RA2' => ('RA2' . " " . xl('Paper Size')),
3753 'RA3' => ('RA3' . " " . xl('Paper Size')),
3754 'RA4' => ('RA4' . " " . xl('Paper Size')),
3755 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3756 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3757 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3758 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3759 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3761 'LETTER',
3762 xl('Choose Paper Size')
3764 'pdf_left_margin' => array(
3765 xl('Left Margin (mm)'),
3766 'num',
3767 '5',
3768 xl('Left Margin (mm)')
3770 'pdf_right_margin' => array(
3771 xl('Right Margin (mm)'),
3772 'num',
3773 '5',
3774 xl('Right Margin (mm)')
3776 'pdf_top_margin' => array(
3777 xl('Top Margin (mm)'),
3778 'num',
3779 '5',
3780 xl('Top Margin (mm)')
3782 'pdf_bottom_margin' => array(
3783 xl('Bottom Margin (px)'),
3784 'num',
3785 '8',
3786 xl('Bottom Margin (px)')
3788 'pdf_output' => array(
3789 xl('Output Type'),
3790 array(
3791 'D' => xl('Download'),
3792 'I' => xl('Inline')
3794 'D', //defaut
3795 xl("Choose Download or Display Inline"),
3798 'chart_label_type' => array(
3799 xl('Patient Label Type'),
3800 array(
3801 '0' => xl('None'),
3802 '1' => '5160',
3803 '2' => '5161',
3804 '3' => '5162'
3806 '1', // default
3807 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3810 'barcode_label_type' => array(
3811 xl('Barcode Label Type'),
3812 array(
3813 '0' => xl('None'),
3814 '1' => 'std25',
3815 '2' => 'int25',
3816 '3' => 'ean8',
3817 '4' => 'ean13',
3818 '5' => 'upc',
3819 '6' => 'code11',
3820 '7' => 'code39',
3821 '8' => 'code93',
3822 '9' => 'code128',
3823 '10' => 'codabar',
3824 '11' => 'msi',
3825 '12' => 'datamatrix'
3827 '9', // default = None
3828 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3831 'addr_label_type' => array(
3832 xl('Print Patient Address Label'),
3833 'bool', // data type
3834 '1', // default = false
3835 xl('Select to print patient address labels from popups in left nav screen.')
3838 'env_x_width' => array(
3839 xl('Envelope Width in mm'),
3840 'num', // data type
3841 '104.775',
3842 xl('In Portrait mode, determines the width of the envelope along the x-axis in mm')
3845 'env_y_height' => array(
3846 xl('Envelope Height in mm'),
3847 'num', // data type
3848 '241.3',
3849 xl('In Portrait mode, determines the height of the envelope along the y-axis in mm')
3852 'env_font_size' => array(
3853 xl('Font Size in Pt'),
3854 'num', // data type
3855 '14',
3856 xl('Sets the font of the address text on the envelope in mm')
3859 'env_x_dist' => array(
3860 xl('Envelope x-axis starting pt'),
3861 'num', // data type
3862 '65',
3863 xl('Distance from the \'top\' of the envelope in mm')
3866 'env_y_dist' => array(
3867 xl('Envelope y-axis starting pt'),
3868 'num', // data type
3869 '220',
3870 xl('Distance from the right most edge of the envelope in portrait position in mm')
3876 if (!$skipGlobalEvent) {
3877 $globalsInitEvent = new GlobalsInitializedEvent(new GlobalsService($GLOBALS_METADATA, $USER_SPECIFIC_GLOBALS, $USER_SPECIFIC_TABS));
3878 $globalsInitEvent = $GLOBALS["kernel"]->getEventDispatcher()->dispatch(GlobalsInitializedEvent::EVENT_HANDLE, $globalsInitEvent, 10);
3879 $globalsService = $globalsInitEvent->getGlobalsService()->save();