prepping docker setting for care coordination module autoconfiguration (#4447)
[openemr.git] / library / globals.inc.php
blob7f17ac673482a76521681ceedb727ee13a186f05
1 <?php
3 /*
4 * This program sets the global variables.
6 * @package OpenEMR
7 * @link https://www.open-emr.org
8 * @author Rod Roark <rod@sunsetsystems.com>
9 * @author Stephen Waite <stephen.waite@cmsvt.com>
10 * @author Brady Miller <brady.g.miller@gmail.com>
11 * @copyright Copyright (c) 2010-2021 Rod Roark <rod@sunsetsystems.com>
12 * @copyright Copyright (c) 2018 Stephen Waite <stephen.waite@cmsvt.com>
13 * @copyright Copyright (c) 2019 Brady Miller <brady.g.miller@gmail.com>
14 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
17 // Current supported languages: // Allow capture of term for translation:
18 // Albanian // xl('Albanian')
19 // Amharic // xl('Amharic')
20 // Arabic // xl('Arabic')
21 // Armenian // xl('Armenian')
22 // Bahasa Indonesia // xl('Bahasa Indonesia')
23 // Bengali // xl('Bengali')
24 // Bosnian // xl('Bosnian')
25 // Bulgarian // xl('Bulgarian')
26 // Chinese (Simplified) // xl('Chinese (Simplified)')
27 // Chinese (Traditional) // xl('Chinese (Traditional)')
28 // Croatian // xl('Croatian')
29 // Czech // xl('Czech')
30 // Danish // xl('Danish')
31 // Dutch // xl('Dutch')
32 // English (Indian) // xl('English (Indian)')
33 // English (Standard) // xl('English (Standard)')
34 // Estonian // xl('Estonian')
35 // Filipino // xl('Filipino')
36 // Finnish // xl('Finnish')
37 // French // xl('French (Standard)')
38 // French // xl('French (Canadian)')
39 // Georgian // xl('Georgian')
40 // German // xl('German')
41 // Greek // xl('Greek')
42 // Gujarati // xl('Gujarati')
43 // Hebrew // xl('Hebrew')
44 // Hindi // xl('Hindi')
45 // Hungarian // xl('Hungarian')
46 // Italian // xl('Italian')
47 // Japanese // xl('Japanese')
48 // Korean // xl('Korean')
49 // Lao // xl('Lao')
50 // Lithuanian // xl('Lithuanian')
51 // Marathi // xl('Marathi')
52 // Mongolian // xl('Mongolian')
53 // Norwegian // xl('Norwegian')
54 // Persian // xl('Persian')
55 // Polish // xl('Polish')
56 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
57 // Portuguese (European) // xl('Portuguese (European)')
58 // Portuguese (European) // xl('Portuguese (Angolan)')
59 // Romanian // xl('Romanian')
60 // Russian // xl('Russian')
61 // Serbian // xl('Serbian')
62 // Sinhala // xl('Sinhala')
63 // Slovak // xl('Slovak')
64 // Somali // xl('Somali')
65 // Spanish (Latin American) // xl('Spanish (Latin American)')
66 // Spanish (Spain) // xl('Spanish (Spain)')
67 // Swedish // xl('Swedish')
68 // Tamil // xl('Tamil')
69 // Telugu // xl('Telugu')
70 // Thai // xl('Thai')
71 // Turkish // xl('Turkish')
72 // Ukrainian // xl('Ukrainian')
73 // Urdu // xl('Urdu')
74 // Vietnamese // xl('Vietnamese')
76 use OpenEMR\Services\Globals\GlobalsService;
77 use OpenEMR\Events\Globals\GlobalsInitializedEvent;
79 // OS-dependent stuff.
80 if (stristr(PHP_OS, 'WIN')) {
81 // MS Windows
82 $mysql_bin_dir = 'C:/xampp/mysql/bin';
83 $perl_bin_dir = 'C:/xampp/perl/bin';
84 $temporary_files_dir = 'C:/windows/temp';
85 $backup_log_dir = 'C:/windows/temp';
86 } else {
87 // Everything else
88 $mysql_bin_dir = '/usr/bin';
89 $perl_bin_dir = '/usr/bin';
90 $temporary_files_dir = '/tmp';
91 $backup_log_dir = '/tmp';
94 // Language constant declarations:
95 // xl('Appearance')
96 // xl('Locale')
97 // xl('Features')
98 // xl('Calendar')
99 // xl('Security')
100 // xl('Notifications')
101 // xl('Miscellaneous')
103 // List of user specific tabs and globals
104 $USER_SPECIFIC_TABS = array('Appearance',
105 'Locale',
106 'Features',
107 'Billing',
108 'Report',
109 'Calendar',
110 'CDR',
111 'Connectors');
112 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
113 'default_second_tab',
114 'theme_tabs_layout',
115 'css_header',
116 'enable_compact_mode',
117 'vertical_responsive_menu',
118 'menu_styling_vertical',
119 'search_any_patient',
120 'default_encounter_view',
121 'gbl_pt_list_page_size',
122 'gbl_pt_list_new_window',
123 'units_of_measurement',
124 'us_weight_format',
125 'date_display_format',
126 'time_display_format',
127 'enable_help',
128 'text_templates_enabled',
129 'posting_adj_disable',
130 'messages_due_date',
131 'expand_form',
132 'ledger_begin_date',
133 'print_next_appointment_on_ledger',
134 'calendar_view_type',
135 'event_color',
136 'pat_trkr_timer',
137 'ptkr_visit_reason',
138 'ptkr_date_range',
139 'ptkr_start_date',
140 'ptkr_end_date',
141 'checkout_roll_off',
142 'patient_birthday_alert',
143 'patient_birthday_alert_manual_off',
144 'erx_import_status_message',
145 'weno_provider_password');
147 // Gets array of time zones supported by PHP.
149 function gblTimeZones()
151 $zones = timezone_identifiers_list();
152 $arr = array('' => xl('Unassigned'));
153 foreach ($zones as $zone) {
154 $arr[$zone] = str_replace('_', ' ', $zone);
157 return $arr;
160 $GLOBALS_METADATA = array(
162 // Appearance Tab
164 'Appearance' => array(
166 'default_top_pane' => array(
167 xl('Main Top Pane Screen(Or Default First Tab)'), // descriptive name
168 array(
169 'main_info.php' => xl('Calendar Screen'),
170 '../new/new.php' => xl('Patient Search/Add Screen'),
171 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
172 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
173 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen')
175 'main_info.php', // default = calendar
176 xl('Main Top Pane Screen(Or Default First Tab)')
179 'default_second_tab' => array(
180 xl('Default Second Tab'), // descriptive name
181 array(
182 '' => xl('None'),
183 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen'),
184 'main_info.php' => xl('Calendar Screen'),
185 '../new/new.php' => xl('Patient Search/Add Screen'),
186 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
187 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
189 '../../interface/main/messages/messages.php?form_active=1', // default = messages
190 xl('Default Second Tab')
193 'theme_tabs_layout' => array(
194 xl('Tabs Layout Theme') . '*',
195 'tabs_css',
196 'tabs_style_full.css',
197 xl('Theme of the tabs layout (need to logout and then login to see this new setting).')
200 'login_page_layout' => array(
201 xl('Login Page Layout') . '*',
202 array(
203 'center' => xl("Centered Layout"),
204 'left' => xl("Left-Form Layout"),
205 'right' => xl("Right-Form Layout"),
207 'center',
208 xl('Changes the layout of the login page.')
211 'css_header' => array(
212 // Note: Do not change this as it is only for theme defaults and adding themes here does nothing
213 xl('General Theme') . '*',
214 'css',
215 'style_light.css',
216 xl('Pick a general theme (need to logout/login after changing this setting).')
219 'enable_compact_mode' => array(
220 xl('Enable Compact Mode'),
221 'bool', // data type
222 '0', // default = false
223 xl('Changes the current theme to be more compact.')
226 'menu_styling_vertical' => array(
227 xl('Vertical Menu Style for Frames'),
228 array(
229 '0' => xl('Tree'),
230 '1' => xl('Sliding'),
232 '1',
233 xl('Vertical Menu Style for frame based layouts')
236 'search_any_patient' => array(
237 xl('Search Patient By Any Demographics'),
238 array(
239 'dual' => xl('Dual'),
240 'comprehensive' => xl('Comprehensive'),
241 'fixed' => xl('Fixed'),
242 'none' => xl('None'),
244 'dual', // default
245 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')
248 'default_encounter_view' => array(
249 xl('Default Encounter View'), // descriptive name
250 array(
251 '0' => xl('Clinical View'),
252 '1' => xl('Billing View'),
254 '0', // default = tree menu
255 xl('Choose your default encounter view')
258 'gbl_nav_area_width' => array(
259 xl('Navigation Area Width for Frames'),
260 'num',
261 '175',
262 xl('Width in pixels of the left navigation frame in frame based layout.')
265 'openemr_name' => array(
266 xl('Application Title'),
267 'text',
268 'OpenEMR',
269 xl('Application name for login page and main window title.')
272 'enable_group_therapy' => array(
273 xl('Enable Group Therapy'),
274 'bool', // data type
275 '0', // default = false
276 xl('Enables groups module in system.')
279 'full_new_patient_form' => array(
280 xl('New Patient Form'),
282 array(
283 '0' => xl('Old-style static form without search or duplication check'),
284 '1' => xl('All demographics fields, with search and duplication check'),
285 '2' => xl('Mandatory or specified fields only, search and dup check'),
286 '3' => xl('Mandatory or specified fields only, dup check, no search'),
287 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
289 '1', // default
290 xl('Style of form used for adding new patients')
293 'gbl_edit_patient_form' => array(
294 xl('Modify Patient Form'),
296 array(
297 '0' => xl('Standard check'),
298 '1' => xl('Zend Module check in addition to standard check')
300 '0', // default
301 xl('Validation mechanism for when modifying patient demographics.')
304 'patient_search_results_style' => array(
305 xl('Patient Search Results Style'),
306 array(
307 '0' => xl('Encounter statistics'),
308 '1' => xl('Mandatory and specified fields'),
310 '0', // default
311 xl('Type of columns displayed for patient search results')
314 'gbl_tall_nav_area' => array(
315 xl('Tall Navigation Area'),
316 'bool', // data type
317 '0', // default = false
318 xl('Navigation area uses full height of frameset')
321 'gbl_nav_visit_forms' => array(
322 xl('Navigation Area Visit Forms'),
323 'bool', // data type
324 '1', // default = true
325 xl('Navigation area includes encounter forms')
328 'simplified_prescriptions' => array(
329 xl('Simplified Prescriptions'),
330 'bool', // data type
331 '0', // default = false
332 xl('Omit form, route and interval which then become part of dosage')
335 'simplified_copay' => array(
336 xl('Simplified Co-Pay'),
337 'bool', // data type
338 '0', // default = false
339 xl('Omit method of payment from the co-pay panel')
342 'use_charges_panel' => array(
343 xl('Use Charges Panel'),
344 'bool', // data type
345 '0', // default = false
346 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
349 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
350 'enable_fees_in_left_menu' => array(
351 xl('Enable Fees Submenu'),
352 'bool', // data type
353 '1', // default = true
354 xl('Enable Fees Submenu')
356 'enable_batch_payment' => array(
357 xl('Enable Batch Payment'),
358 'bool', // data type
359 '1', // default = true
360 xl('Enable Batch Payment')
362 'enable_posting' => array(
363 xl('Enable Posting'),
364 'bool', // data type
365 '1', // default = true
366 xl('Enable Posting')
368 // EDI history 2012-09-13
369 'enable_edihistory_in_left_menu' => array(
370 xl('Enable EDI History'),
371 'bool', // data type
372 '1', // default = true
373 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
376 'online_support_link' => array(
377 xl('Online Support Link'),
378 'text', // data type
379 'http://open-emr.org/',
380 xl('URL for OpenEMR support.')
383 'support_phone_number' => array(
384 xl('Support Phone Number'),
385 'text',
387 xl('Phone Number for Vendor Support that Appears on the About Page.')
390 'encounter_page_size' => array(
391 xl('Encounter Page Size'),
392 array(
393 '0' => xl('Show All'),
394 '5' => '5',
395 '10' => '10',
396 '15' => '15',
397 '20' => '20',
398 '25' => '25',
399 '50' => '50',
401 '20',
402 xl('Number of encounters to display per page.')
405 'gbl_pt_list_page_size' => array(
406 xl('Patient List Page Size'),
407 array(
408 '10' => '10',
409 '25' => '25',
410 '50' => '50',
411 '100' => '100',
413 '10',
414 xl('Number of patients to display per page in the patient list.')
417 'gbl_pt_list_new_window' => array(
418 xl('Patient List New Window'),
419 'bool', // data type
420 '0', // default = false
421 xl('Default state of New Window checkbox in the patient list.')
424 'num_of_messages_displayed' => array(
425 xl('Number of Messages Displayed in Patient Summary'),
426 'num',
427 '3',
428 xl('This is the number of messages that will be displayed in the messages widget in the patient summary screen.')
431 'gbl_vitals_options' => array(
432 xl('Vitals Form Options'),
433 array(
434 '0' => xl('Standard'),
435 '1' => xl('Omit circumferences'),
437 '0', // default
438 xl('Special treatment for the Vitals form')
441 'gb_how_sort_list' => array(
442 xl('How to sort a drop-lists'),
443 array(
444 '0' => xl('Sort by seq'),
445 '1' => xl('Sort alphabetically')
447 '0',
448 xl('What kind of sorting will be in the drop lists.')
451 'show_label_login' => array(
452 xl('Show Title on Login'),
453 'bool', // data type
454 '0', // default = false
455 xl('Show Title on Login')
458 'extra_logo_login' => array(
459 xl('Show Extra Logo on Login'),
460 'bool', // data type
461 '0', // default = false
462 xl('Show Extra Logo on Login')
465 'tiny_logo_1' => array(
466 xl('Show Mini Logo 1'),
467 'bool', // data type
468 '0', // default = false
469 xl('Show Mini Logo 1')
472 'tiny_logo_2' => array(
473 xl('Show Mini Logo 2'),
474 'bool', // data type
475 '0', // default = false
476 xl('Show Mini Logo 2')
479 'prevent_browser_refresh' => array(
480 xl('Prevent Web Browser Refresh') . '*',
481 array(
482 '0' => xl('Do not warn or prevent web browser refresh'),
483 '1' => xl('Warn, but do not prevent web browser refresh'),
484 '2' => xl('Warn and prevent web browser refresh')
486 '2', // default = true
487 xl('Recommended setting is warn and prevent web browser refresh. Only use other settings if needed and use at own risk.')
492 // Locale Tab
494 'Locale' => array(
496 'language_default' => array(
497 xl('Default Language'),
498 'lang', // data type
499 'English (Standard)', // default = english
500 xl('Default language if no other is allowed or chosen.')
503 'language_menu_showall' => array(
504 xl('All Languages Allowed'),
505 'bool', // data type
506 '1', // default = true
507 xl('Allow all available languages as choices on menu at login.')
510 'language_menu_other' => array(
511 xl('Allowed Languages'),
512 'm_lang', // data type
513 '', // default = none
514 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
517 'allow_debug_language' => array(
518 xl('Allow Debugging Language'),
519 'bool', // data type
520 '1', // default = true during development and false for production releases
521 xl('This will allow selection of the debugging (\'dummy\') language.')
524 'translate_no_safe_apostrophe' => array(
525 xl('Do Not Use Safe Apostrophe'),
526 'bool', // data type
527 '0', // default = false
528 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)')
531 'translate_layout' => array(
532 xl('Translate Layouts'),
533 'bool', // data type
534 '1', // default = true
535 xl('Is text from form layouts to be translated?')
538 'translate_lists' => array(
539 xl('Translate Lists'),
540 'bool', // data type
541 '1', // default = true
542 xl('Is text from lists to be translated?')
545 'translate_gacl_groups' => array(
546 xl('Translate Access Control Groups'),
547 'bool', // data type
548 '1', // default = true
549 xl('Are access control group names to be translated?')
552 'translate_form_titles' => array(
553 xl('Translate Patient Note Titles'),
554 'bool', // data type
555 '1', // default = true
556 xl('Are patient note titles to be translated?')
559 'translate_document_categories' => array(
560 xl('Translate Document Categories'),
561 'bool', // data type
562 '1', // default = true
563 xl('Are document category names to be translated?')
566 'translate_appt_categories' => array(
567 xl('Translate Appointment Categories'),
568 'bool', // data type
569 '1', // default = true
570 xl('Are appointment category names to be translated?')
573 'units_of_measurement' => array(
574 xl('Units for Visit Forms'),
575 array(
576 '1' => xl('Show both US and metric (main unit is US)'),
577 '2' => xl('Show both US and metric (main unit is metric)'),
578 '3' => xl('Show US only'),
579 '4' => xl('Show metric only'),
581 '1', // default = Both/US
582 xl('Applies to the Vitals form and Growth Chart')
585 'us_weight_format' => array(
586 xl('Display Format for US Weights'),
587 array(
588 '1' => xl('Show pounds as decimal value'),
589 '2' => xl('Show pounds and ounces')
591 '1',
592 xl('Applies to Vitals form')
595 'phone_country_code' => array(
596 xl('Telephone Country Code'),
597 'num',
598 '1', // default = North America
599 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
602 'date_display_format' => array(
603 xl('Date Display Format'),
604 array(
605 '0' => xl('YYYY-MM-DD'),
606 '1' => xl('MM/DD/YYYY'),
607 '2' => xl('DD/MM/YYYY'),
609 '0',
610 xl('Format used to display most dates.')
613 'time_display_format' => array(
614 xl('Time Display Format'),
615 array(
616 '0' => xl('24 hr'),
617 '1' => xl('12 hr'),
619 '0',
620 xl('Format used to display most times.')
623 'gbl_time_zone' => array(
624 xl('Time Zone'),
625 gblTimeZones(),
627 xl('If unassigned will default to php.ini setting for date.timezone.')
630 'currency_decimals' => array(
631 xl('Currency Decimal Places'),
632 array(
633 '0' => xl('0'),
634 '1' => xl('1'),
635 '2' => xl('2'),
637 '2',
638 xl('Number of digits after decimal point for currency, usually 0 or 2.')
641 'currency_dec_point' => array(
642 xl('Currency Decimal Point Symbol'),
643 array(
644 '.' => xl('Period'),
645 ',' => xl('Comma'),
647 '.',
648 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
651 'currency_thousands_sep' => array(
652 xl('Currency Thousands Separator'),
653 array(
654 ',' => xl('Comma'),
655 '.' => xl('Period'),
656 ' ' => xl('Space'),
657 '' => xl('None'),
659 ',',
660 xl('Symbol used to separate thousands for currency.')
663 'gbl_currency_symbol' => array(
664 xl('Currency Designator'),
665 'text', // data type
666 '$', // default
667 xl('Code or symbol to indicate currency')
669 'age_display_format' => array(xl('Age Display Format'),
670 array(
671 '0' => xl('Years or months'),
672 '1' => xl('Years, months and days')
674 '0',
675 xl('Format for age display')
677 'age_display_limit' => array(
678 xl('Age in Years for Display Format Change'),
679 'num',
680 '3',
681 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
683 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
684 'weekend_days' => array(
685 xl('Your weekend days'),
686 array(
687 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
688 '0' => xl('Sunday'),
689 '5' => xl('Friday'),
690 '6' => xl('Saturday'),
691 '5,6' => xl('Friday') . ' - ' . xl('Saturday'),
693 '6,0'
694 , xl('which days are your weekend days?')
699 // Features Tab
701 'Features' => array(
703 'specific_application' => array(
704 xl('Specific Application'),
705 array(
706 '0' => xl('None'),
707 '2' => xl('IPPF'),
708 '3' => xl('Weight loss clinic'),
710 '0', // default
711 xl('Indicator for specialized usage')
714 'inhouse_pharmacy' => array(
715 xl('Drugs and Products'),
716 array(
717 '0' => xl('Do not inventory and sell any products'),
718 '1' => xl('Inventory and sell drugs only'),
719 '2' => xl('Inventory and sell both drugs and non-drug products'),
720 '3' => xl('Products but no prescription drugs and no templates'),
722 '0', // default
723 xl('Option to support inventory and sales of products')
726 'default_visit_category' => array(
727 xl('Default Visit Category'),
728 'default_visit_category',
729 '_blank',
730 xl('Define a default visit category'),
733 'enable_follow_up_encounters' => array(
734 xl('Enable follow-up encounters'),
735 'bool',
736 '0',
737 xl('Enable follow-up encounters feature')
740 'disable_chart_tracker' => array(
741 xl('Disable Chart Tracker'),
742 'bool', // data type
743 '0', // default = false
744 xl('Removes the Chart Tracker feature')
747 'disable_immunizations' => array(
748 xl('Disable Immunizations'),
749 'bool', // data type
750 '0', // default = false
751 xl('Removes support for immunizations')
754 'disable_prescriptions' => array(
755 xl('Disable Prescriptions'),
756 'bool', // data type
757 '0', // default = false
758 xl('Removes support for prescriptions')
761 'text_templates_enabled' => array(
762 xl('Enable Text Templates in Encounter Forms'),
763 'bool', // data type
764 '0', // default = false
765 xl('Allow Double Click to select Nation Note text template from any encounter form text area')
768 'omit_employers' => array(
769 xl('Omit Employers'),
770 'bool', // data type
771 '0', // default = false
772 xl('Omit employer information in patient demographics')
775 'select_multi_providers' => array(
776 xl('Support Multi-Provider Events'),
777 'bool', // data type
778 '0', // default = false
779 xl('Support calendar events that apply to multiple providers')
782 'disable_non_default_groups' => array(
783 xl('Disable User Groups'),
784 'bool', // data type
785 '1', // default = true
786 xl('Normally this should be checked. Not related to access control.')
789 'ignore_pnotes_authorization' => array(
790 xl('Skip Authorization of Patient Notes'),
791 'bool', // data type
792 '1', // default = true
793 xl('Do not require patient notes to be authorized')
796 'support_encounter_claims' => array(
797 xl('Allow Encounter Claims'),
798 'bool', // data type
799 '0', // default = false
800 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
803 'advance_directives_warning' => array(
804 xl('Advance Directives Warning'),
805 'bool', // data type
806 '0', // default = false
807 xl('Display advance directives in the demographics page.')
810 'configuration_import_export' => array(
811 xl('Configuration Export/Import'),
812 'bool', // data type
813 '0', // default = false
814 xl('Support export/import of configuration data via the Backup page.')
817 'restrict_user_facility' => array(
818 xl('Restrict Users to Facilities'),
819 'bool', // data type
820 '0', // default
821 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
824 'set_facility_cookie' => array(
825 xl('Remember Selected Facility'),
826 'bool', // data type
827 '0', // default
828 xl('Set a facility cookie to remember the selected facility between logins.')
831 'login_into_facility' => array(
832 xl('Login Into Facility'),
833 'bool', // data type
834 '0', // default
835 xl('Select your current facility in the login page')
838 'receipts_by_provider' => array(
839 xl('Print Receipts by Provider'),
840 'bool',
841 '0', // default
842 xl('Causes Receipts to Print Encounter/Primary Provider Info')
845 'discount_by_money' => array(
846 xl('Discounts as Monetary Amounts'),
847 'bool', // data type
848 '1', // default = true
849 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
852 'gbl_visit_referral_source' => array(
853 xl('Referral Source for Encounters'),
854 'bool', // data type
855 '0', // default = false
856 xl('A referral source may be specified for each visit.')
859 'gbl_form_save_close' => array(
860 xl('Display Save and Close Visit button in LBFs'),
861 'bool', // data type
862 '0', // default = false
863 xl('This is helpful if visits usually do not have charges.')
866 'gbl_mask_patient_id' => array(
867 xl('Mask for Patient IDs'),
868 'text', // data type
869 '', // default
870 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
873 'gbl_mask_invoice_number' => array(
874 xl('Mask for Invoice Numbers'),
875 'text', // data type
876 '', // default
877 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
880 'gbl_mask_product_id' => array(
881 xl('Mask for Product IDs'),
882 'text', // data type
883 '', // default
884 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
887 'hide_billing_widget' => array(
888 xl('Hide Billing Widget'),
889 'bool', // data type
890 '0', // default = false
891 xl('This will hide the Billing Widget in the Patient Summary screen')
894 'force_billing_widget_open' => array(
895 xl('Force Billing Widget Open'),
896 'bool', // data type
897 '0', // default = false
898 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
901 'activate_ccr_ccd_report' => array(
902 xl('Activate CCR/CCD Reporting'),
903 'bool', // data type
904 '1', // default = true
905 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
908 'drive_encryption' => array(
909 xl('Enable Encryption of Items Stored on Drive'),
910 'bool', // data type
911 '1', // default = true
912 xl('This will enable encryption of items that are stored on the drive.')
915 'couchdb_encryption' => array(
916 xl('Enable Encryption of Items Stored on CouchDB'),
917 'bool', // data type
918 '1', // default = true
919 xl('This will enable encryption of items that are stored on CouchDB.')
922 'hide_document_encryption' => array(
923 xl('Hide Encryption/Decryption Options In Document Management'),
924 'bool', // data type
925 '0', // default = true
926 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
929 'use_custom_immun_list' => array(
930 xl('Use Custom Immunization List'),
931 'bool', // data type
932 '0', // default = true
933 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
936 'amendments' => array(
937 xl('Amendments'),
938 'bool', // data type
939 '1', // default = true
940 xl('Enable amendments feature')
943 'allow_pat_delete' => array(
944 xl('Allow Administrators to Delete Patients'),
945 'bool', // data type
946 '0', // default = false
947 xl('Allow Administrators to Delete Patients')
951 'observation_results_immunization' => array(
952 xl('Immunization Observation Results'),
953 'bool', // data type
954 '1', // default
955 xl('Observation Results in Immunization')
958 'enable_help' => array(
959 xl('Enable Help Modal'),
960 array(
961 '0' => xl('Hide Help Modal'),
962 '1' => xl('Show Help Modal'),
963 '2' => xl('Disable Help Modal'),
964 ), // data type
965 '1', // default = Print End of Day Report 1
966 xl('This will allow the display of help modal on help enabled pages')
968 'messages_due_date' => array(
969 xl('Messages - due date'),
970 'bool', // data type
971 '0', // default false
972 xl('Enables choose due date to message')
975 'expand_form' => array(
976 xl('Expand Form'),
977 'bool', // data type
978 '1', // default false
979 xl('Open all expandable forms in expanded state')
983 // Report Tab
985 'Report' => array(
987 'use_custom_daysheet' => array(
988 xl('Use Custom End of Day Report'),
989 array(
990 '0' => xl('None'),
991 '1' => xl('Print End of Day Report 1'),
992 '2' => xl('Print End of Day Report 2'),
993 '3' => xl('Print End of Day Report 3'),
994 ), // data type
995 '1', // default = Print End of Day Report 1
996 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
999 'daysheet_provider_totals' => array(
1000 xl('End of Day by Provider or allow Totals Only'),
1001 array(
1002 '0' => xl('Provider'),
1003 '1' => xl('Totals Only'),
1005 '1', // default
1006 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
1009 'ledger_begin_date' => array(
1010 xl('Beginning Date for Ledger Report'),
1011 array(
1012 'Y1' => xl('One Year Ago'),
1013 'Y2' => xl('Two Years Ago'),
1014 'M6' => xl('Six Months Ago'),
1015 'M3' => xl('Three Months Ago'),
1016 'M1' => xl('One Month Ago'),
1017 'D1' => xl('One Day Ago'),
1019 'Y1', // default = One Year
1020 xl('This is the Beginning date for the Ledger Report.')
1023 'print_next_appointment_on_ledger' => array(
1024 xl('Print the Next Appointment on the Bottom of the Ledger'),
1025 'bool', // data type
1026 '1', // default = true
1027 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
1030 'sales_report_invoice' => array(
1031 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
1032 array(
1033 '0' => xl('Invoice Number'),
1034 '1' => xl('Patient Name and ID'),
1035 '2' => xl('Patient Name and Invoice'),
1037 '2', // default = 2
1038 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
1041 'cash_receipts_report_invoice' => array(
1042 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
1043 array(
1044 '0' => xl('Invoice Number'),
1045 '1' => xl('Patient Name'),
1047 '0', // default = 0
1048 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
1053 // Billing Tab
1055 'Billing' => array(
1057 'ub04_support' => array(
1058 xl('Activate UB04/837I Claim Support'),
1059 'bool', // data type
1060 '0', // default = false
1061 xl('Allow institutional claims support.')
1064 'top_ubmargin_default' => array(
1065 xl('Default top print margin for UB04'),
1066 'num', // data type
1067 '14', // default
1068 xl('This is the default top print margin for UB04. It will adjust the final printed output up or down.')
1071 'left_ubmargin_default' => array(
1072 xl('Default left print margin for UB04'),
1073 'num', // data type
1074 '11', // default
1075 xl('This is the default left print margin for UB04. It will adjust the final printed output left or right.')
1078 'cms_top_margin_default' => array(
1079 xl('Default top print margin for CMS 1500'),
1080 'num', // data type
1081 '24', // default
1082 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
1085 'cms_left_margin_default' => array(
1086 xl('Default left print margin for CMS 1500'),
1087 'num', // data type
1088 '20', // default
1089 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
1092 'preprinted_cms_1500' => array(
1093 xl('Prints the CMS 1500 on the Preprinted form'),
1094 'bool', // data type
1095 '0', // default = false
1096 xl('Overlay CMS 1500 on the Preprinted form')
1099 'cms_1500_box_31_format' => array(
1100 xl('CMS 1500: Box 31 Format'),
1101 array(
1102 '0' => xl('Signature on File'),
1103 '1' => xl('Firstname Lastname'),
1104 '2' => xl('None'),
1106 '0', // default
1107 xl('This specifies whether to include date in Box 31.')
1110 'cms_1500_box_31_date' => array(
1111 xl('CMS 1500: Date in Box 31 (Signature)'),
1112 array(
1113 '0' => xl('None'),
1114 '1' => xl('Date of Service'),
1115 '2' => xl('Today'),
1117 '0', // default
1118 xl('This specifies whether to include date in Box 31.')
1121 'default_search_code_type' => array(
1122 xl('Default Search Code Type'),
1123 'all_code_types', // data type
1124 'ICD10', // default
1125 xl('The default code type to search for in the Fee Sheet.')
1128 'default_rendering_provider' => array(
1129 xl('Default Rendering Provider in Fee Sheet'),
1130 array(
1131 '0' => xl('Logged in User if provider, otherwise Current Provider'),
1132 '1' => xl('Current Provider'),
1133 '2' => xl('Current Logged in User'),
1135 '1',
1136 xl('Default selection for rendering provider in fee sheet.')
1139 'posting_adj_disable' => array(
1140 xl('Disable Auto Adjustment Calculations in EOB Posting'),
1141 'bool', // data type
1142 '0', // default = false
1143 xl('Turn off auto calculations of adjustments in EOB')
1146 'show_payment_history' => array(
1147 xl('Show all payment history in Patient Ledger'),
1148 'bool', // data type
1149 '1', // default = true
1150 xl('Turn on to show all payment history in Patient Ledger')
1153 'support_fee_sheet_line_item_provider' => array(
1154 xl('Support provider in line item in fee sheet'),
1155 'bool', // data type
1156 '0', // default = false
1157 xl('This Enables provider in line item in the fee sheet')
1160 'default_fee_sheet_line_item_provider' => array(
1161 xl('Default to a provider for line item in the fee sheet'),
1162 'bool', // data type
1163 '0', // default = false
1164 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1167 'replicate_justification' => array(
1168 xl('Automatically replicate justification codes in Fee Sheet'),
1169 'bool', // data type
1170 '0', // default = false
1171 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1174 'display_units_in_billing' => array(
1175 xl('Display the Units Column on the Billing Screen'),
1176 'bool', // data type
1177 '0', // default = false
1178 xl('Display the Units Column on the Billing Screen')
1181 'notes_to_display_in_Billing' => array(
1182 xl('Which notes are to be displayed in the Billing Screen'),
1183 array(
1184 '0' => xl('None'),
1185 '1' => xl('Encounter Billing Note'),
1186 '2' => xl('Patient Billing Note'),
1187 '3' => xl('All'),
1189 '3',
1190 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1193 'set_pos_code_encounter' => array(
1194 xl('Set POS code in encounter'),
1195 'bool', // data type
1196 '0', // default = false
1197 xl('This feature will allow the default POS facility code to be overridden from the encounter.')
1200 'statement_logo' => array(
1201 xl('Statement Logo GIF Filename'),
1202 'text', // data type
1203 'practice_logo.gif', // data type
1204 xl('Place your logo in sites/default/images and type the filename including gif extension here.')
1207 'use_custom_statement' => array(
1208 xl('Use Custom Statement'),
1209 'bool', // data type
1210 '0', // default = false
1211 xl('This will use the custom Statement showing the description instead of the codes.')
1214 'statement_appearance' => array(
1215 xl('Statement Appearance'),
1216 array(
1217 '0' => xl('Plain Text'),
1218 '1' => xl('Modern/images')
1219 ), // data type
1220 '1', // default = true
1221 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1224 'billing_phone_number' => array(
1225 xl('Custom Billing Phone Number'),
1226 'text', // data type
1228 xl('Phone number for billing inquiries')
1231 'show_aging_on_custom_statement' => array(
1232 xl('Show Aging on Custom Statement'),
1233 'bool', // data type
1234 '0', // default = false
1235 xl('This will Show Aging on the custom Statement.')
1238 'use_statement_print_exclusion' => array(
1239 xl('Allow Statement Exclusions from Printing'),
1240 'bool', // data type
1241 '0', // default = false
1242 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1245 'minimum_amount_to_print' => array(
1246 xl('Total Minimum Amount of Statement to Allow Printing'),
1247 'num', // data type
1248 '1.00',
1249 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1252 'statement_bill_note_print' => array(
1253 xl('Print Patient Billing Note'),
1254 'bool', // data type
1255 '0', // default = false
1256 xl('This will allow printing of the Patient Billing Note on the statements.')
1259 'number_appointments_on_statement' => array(
1260 xl('Number of Appointments on Statement'),
1261 'num', // data type
1262 '0', // default = 0
1263 xl('The Number of Future Appointments to Display on the Statement.')
1266 'statement_message_to_patient' => array(
1267 xl('Print Custom Message'),
1268 'bool', // data type
1269 '0', // default = false
1270 xl('This will allow printing of a custom Message on the statements.')
1273 'statement_msg_text' => array(
1274 xl('Custom Statement message'),
1275 'text', // data type
1277 xl('Text for Custom statement message.')
1280 'use_dunning_message' => array(
1281 xl('Use Custom Dunning Messages'),
1282 'bool', // data type
1283 '0', // default = false
1284 xl('This will allow use of the custom Dunning Messages on the statements.')
1287 'first_dun_msg_set' => array(
1288 xl('Number of days before showing first account message'),
1289 'num', // data type
1290 '30',
1291 xl('Number of days before showing first account message.')
1294 'first_dun_msg_text' => array(
1295 xl('First account message'),
1296 'text', // data type
1298 xl('Text for first account message.')
1301 'second_dun_msg_set' => array(
1302 xl('Number of days before showing second account message'),
1303 'num', // data type
1304 '60',
1305 xl('Number of days before showing second account message')
1308 'second_dun_msg_text' => array(
1309 xl('Second account message'),
1310 'text', // data type
1312 xl('Text for second account message.')
1315 'third_dun_msg_set' => array(
1316 xl('Number of days before showing third account message'),
1317 'num', // data type
1318 '90',
1319 xl('Number of days before showing third account message')
1322 'third_dun_msg_text' => array(
1323 xl('Third account message'),
1324 'text', // data type
1326 xl('Text for third account message.')
1329 'fourth_dun_msg_set' => array(
1330 xl('Number of days before showing fourth account message'),
1331 'num', // data type
1332 '120',
1333 xl('Number of days before showing fourth account message')
1336 'fourth_dun_msg_text' => array(
1337 xl('Fourth account message'),
1338 'text', // data type
1340 xl('Text for fourth account message.')
1343 'fifth_dun_msg_set' => array(
1344 xl('Number of days before showing fifth account message'),
1345 'num', // data type
1346 '150',
1347 xl('Number of days before showing fifth account message')
1350 'fifth_dun_msg_text' => array(
1351 xl('Fifth account message'),
1352 'text', // data type
1354 xl('Text for fifth account message.')
1357 'save_codes_history' => array(
1358 xl('Save codes history'),
1359 'bool', // data type
1360 '1', // default
1361 xl('Save codes history')
1364 'enable_percent_pricing' => array(
1365 xl('Enable percent-based price levels'),
1366 'bool', // data type
1367 '0', // default
1368 xl('Enable percent-based price levels')
1371 'gen_x12_based_on_ins_co' => array(
1372 xl('Generate X-12 Based On Insurance Company'),
1373 'bool', // data type
1374 '0', // default = false
1375 xl('For sending claims directly to insurance company, based on X12 Partner Settings')
1378 'auto_sftp_claims_to_x12_partner' => array(
1379 xl('Automatically SFTP Claims To X12 Partner'),
1380 'bool', // data type
1381 '0', // default = false
1382 xl('For automatically sending claims that are generated in EDI directory to the X12 partner using SFTP credentials X12 Partner Settings')
1387 // E-Sign Tab
1389 'E-Sign' => array(
1391 'esign_all' => array(
1392 xl('Allows E-Sign on the entire encounter'),
1393 'bool', // data type
1394 '0', // default = false
1395 xl('This will enable signing an entire encounter, rather than individual forms')
1398 'lock_esign_all' => array(
1399 xl('Lock e-signed encounters and their forms'),
1400 'bool', // data type
1401 '0', // default = false
1402 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1405 'esign_individual' => array(
1406 xl('Allows E-Signing Individual Forms'),
1407 'bool', // data type
1408 '1', // default = false
1409 xl('This will enable signing individual forms separately')
1412 'lock_esign_individual' => array(
1413 xl('Lock an e-signed form individually'),
1414 'bool', // data type
1415 '1', // default = false
1416 xl('This will disable the Edit button on any form that is e-signed')
1419 'esign_lock_toggle' => array(
1420 xl('Enable lock toggle'),
1421 'bool', // data type
1422 '0', // default = false
1423 xl('This will give the user the option to lock (separate locking and signing)')
1426 'esign_report_hide_empty_sig' => array(
1427 xl('Hide Empty E-Sign Logs On Report'),
1428 'bool', // data type
1429 '1', // default = false
1430 xl('This will hide empty e-sign logs on the patient report')
1434 //Documents Tab
1435 'Documents' => array(
1437 'document_storage_method' => array(
1438 xl('Document Storage Method'),
1439 array(
1440 '0' => xl('Hard Disk'),
1441 '1' => xl('CouchDB')
1443 '0', // default
1444 xl('Option to save method of document storage.')
1447 'couchdb_host' => array(
1448 xl('CouchDB HostName'),
1449 'text',
1450 'localhost',
1451 xl('CouchDB host'),
1453 'couchdb_user' => array(
1454 xl('CouchDB UserName'),
1455 'text',
1457 xl('Username to connect to CouchDB'),
1459 'couchdb_pass' => array(
1460 xl('CouchDB Password'),
1461 'encrypted', // data type
1463 xl('Password to connect to CouchDB'),
1465 'couchdb_port' => array(
1466 xl('CouchDB Port'),
1467 'text',
1468 '6984',
1469 xl('CouchDB port'),
1471 'couchdb_dbase' => array(
1472 xl('CouchDB Database'),
1473 'text',
1475 xl('CouchDB database name'),
1477 'couchdb_connection_ssl' => array(
1478 xl('CouchDB Connection SSL'),
1479 'bool',
1480 '1',
1481 xl('Use SSL (encrypted) connection to CouchDB'),
1483 'couchdb_ssl_allow_selfsigned' => array(
1484 xl('CouchDB SSL Allow Selfsigned Certificate'),
1485 'bool',
1486 '0',
1487 xl('Allow self-signed certificate for SSL (encrypted) connection to CouchDB'),
1489 'couchdb_log' => array(
1490 xl('CouchDB Log Enable'),
1491 'bool',
1492 '0',
1493 xl('Enable log for document uploads/downloads to CouchDB'),
1496 'expand_document_tree' => array(
1497 xl('Expand All Document Categories'),
1498 'bool', // data type
1499 '0', // default = false
1500 xl('Expand All Document Categories by Default')
1503 'patient_id_category_name' => array(
1504 xl('Patient ID Category Name'),
1505 'text', // data type
1506 'Patient ID card', // default
1507 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1510 'patient_photo_category_name' => array(
1511 xl('Patient Photo Category Name'),
1512 'text', // data type
1513 'Patient Photograph', // default
1514 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1517 'lab_results_category_name' => array(
1518 xl('Lab Results Category Name'),
1519 'text', // data type
1520 'Lab Report', // default
1521 xl('Document category name for storage of electronically received lab results.')
1524 'gbl_mdm_category_name' => array(
1525 xl('MDM Document Category Name'),
1526 'text', // data type
1527 'Lab Report', // default
1528 xl('Document category name for storage of electronically received MDM documents.')
1530 'generate_doc_thumb' => array(
1531 xl('Generate thumbnail'),
1532 'bool',
1533 '0',
1534 xl('Generate thumbnail images'),
1536 'thumb_doc_max_size' => array(
1537 xl('Thumbnail size'),
1538 'text', // data type
1539 '100', // default
1540 xl('Maximum size of thumbnail file')
1544 // Calendar Tab
1546 'Calendar' => array(
1548 'disable_calendar' => array(
1549 xl('Disable Calendar'),
1550 'bool', // data type
1551 '0', // default
1552 xl('Do not display the calendar.')
1555 'schedule_start' => array(
1556 xl('Calendar Starting Hour'),
1557 'hour',
1558 '8', // default
1559 xl('Beginning hour of day for calendar events.')
1562 'schedule_end' => array(
1563 xl('Calendar Ending Hour'),
1564 'hour',
1565 '17', // default
1566 xl('Ending hour of day for calendar events.')
1569 'calendar_interval' => array(
1570 xl('Calendar Interval'),
1571 array(
1572 '5' => '5',
1573 '10' => '10',
1574 '15' => '15',
1575 '20' => '20',
1576 '30' => '30',
1577 '60' => '60',
1579 '15', // default
1580 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1583 'calendar_view_type' => array(
1584 xl('Default Calendar View'),
1585 array(
1586 'day' => xl('Day'),
1587 'week' => xl('Week'),
1588 'month' => xl('Month'),
1590 'day', // default
1591 xl('This sets the Default Calendar View, Default is Day.')
1594 'first_day_week' => array(
1595 xl('First day in the week'),
1596 array(
1597 '1' => xl('Monday'),
1598 '0' => xl('Sunday'),
1599 '6' => xl('Saturday')
1601 '1',
1602 xl('Your first day of the week.')
1605 'calendar_appt_style' => array(
1606 xl('Appointment Display Style'),
1607 array(
1608 '1' => xl('Last name'),
1609 '2' => xl('Last name, first name'),
1610 '3' => xl('Last name, first name (title)'),
1611 '4' => xl('Last name, first name (title: comments)'),
1613 '2', // default
1614 xl('This determines how appointments display on the calendar.')
1617 'event_color' => array(
1618 xl('Appointment/Event Color'),
1619 array(
1620 '1' => xl('Category Color Schema'),
1621 '2' => xl('Facility Color Schema'),
1622 ), // data type
1623 '1', // default
1624 xl('This determines which color schema used for appointment')
1627 'number_of_appts_to_show' => array(
1628 xl('Appointments - Patient Summary - Number to Display'),
1629 'num',
1630 '10',
1631 xl('Number of Appointments to display in the Patient Summary')
1634 'number_of_group_appts_to_show' => array(
1635 xl('Appointments - Group Summary - Number to Display'),
1636 'num',
1637 '10',
1638 xl('Number of Appointments to display in the Group Summary')
1641 'number_of_ex_appts_to_show' => array(
1642 xl('Excluded Appointments - Tooltip - Number to Display'),
1643 'num',
1644 '15',
1645 xl('Number of Excluded Appointments to display in the Tooltip')
1648 'appt_display_sets_option' => array(
1649 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1650 'bool', // data type
1651 '1', // default
1652 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1655 'appt_display_sets_color_1' => array(
1656 xl('Appointment Display Sets - Color 1'),
1657 'color_code',
1658 '#FFFFFF',
1659 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).')
1662 'appt_display_sets_color_2' => array(
1663 xl('Appointment Display Sets - Color 2'),
1664 'color_code',
1665 '#E6E6FF',
1666 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).')
1669 'appt_display_sets_color_3' => array(
1670 xl('Appointment Display Sets - Color 3'),
1671 'color_code',
1672 '#E6FFE6',
1673 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1676 'appt_display_sets_color_4' => array(
1677 xl('Appointment Display Sets - Color 4'),
1678 'color_code',
1679 '#FFE6FF',
1680 xl('Color for the last set when not all member appointments are displayed.')
1683 'appt_recurrences_widget' => array(
1684 xl('Recurrent Appointment Display Widget'),
1685 'bool', // data type
1686 '1', // default
1687 xl('Display the recurrent appointment widget in the patient summary.')
1690 'num_past_appointments_to_show' => array(
1691 xl('Past Appointment Display Widget'),
1692 'num', // data type
1693 '0', // default = false
1694 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)')
1697 'docs_see_entire_calendar' => array(
1698 xl('Providers See Entire Calendar'),
1699 'bool', // data type
1700 '0', // default
1701 xl('Check this if you want providers to see all appointments by default and not just their own.')
1704 'auto_create_new_encounters' => array(
1705 xl('Auto-Create New Encounters'),
1706 array(
1707 '0' => xl('Off'),
1708 '1' => xl('One Encounter Per Day'),
1709 '2' => xl('Allow Encounter For Each Appointment')
1711 '1',
1712 xl('Automatically create a new encounter when an appointment check in status is selected.') . " " .
1713 xl('The Each Appointment option will allow a new encounter regardless of same day visit.') . " " .
1714 xl('The appointment status changes and encounter creations are managed through the Patient Tracker.')
1717 'allow_early_check_in' => array(
1718 xl('Allow Early Check In'),
1719 'bool', // data type
1720 '1', // default
1721 xl("Allow Check In before the appointment's time.")
1724 'submit_changes_for_all_appts_at_once' => array(
1725 xl('Submit Changes For All Appts At Once'),
1726 'bool', // data type
1727 '1', // default
1728 xl('Enables to submit changes for all appointments of a recurrence at once.')
1731 'disable_pat_trkr' => array(
1732 xl('Flow Board: Disable'),
1733 'bool', // data type
1734 '0', // default
1735 xl('Completely remove the ability to display the Patient Flow Board.')
1738 'ptkr_visit_reason' => array(
1739 xl('Flow Board: Show Visit Reason'),
1740 'bool', // data type
1741 '0', // default = false
1742 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1745 'ptkr_show_pid' => array(
1746 xl('Flow Board: Show Patient ID'),
1747 'bool', // data type
1748 '1', // default = true
1749 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1752 'ptkr_show_encounter' => array(
1753 xl('Flow Board: Show Encounter Number'),
1754 'bool', // data type
1755 '1', // default = true
1756 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1759 'ptkr_show_staff' => array(
1760 xl('Flow Board: Show Staff Action'),
1761 'bool', // data type
1762 '1', // default = true
1763 xl('When Checked, Last Staff to Update Board Will Show in Patient Flow Board.')
1766 'ptkr_date_range' => array(
1767 xl('Flow Board: Allow Date Range'),
1768 'bool', // data type
1769 '1', // default = true
1770 xl('This Allows a Date Range to be Selected in Patient Flow Board.')
1773 'ptkr_start_date' => array(
1774 xl('Flow Board: Default Starting Date'),
1775 array(
1776 'D0' => xl('Current Day'),
1777 'B0' => xl('Beginning of Current Work Week'),
1779 'D0', // default = Current Day
1780 xl('This is the default Beginning date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1783 'ptkr_end_date' => array(
1784 xl('Flow Board: Default Ending Date'),
1785 array(
1786 'Y1' => xl('One Year Ahead'),
1787 'Y2' => xl('Two Years Ahead'),
1788 'M6' => xl('Six Months Ahead'),
1789 'M3' => xl('Three Months Ahead'),
1790 'M1' => xl('One Month Ahead'),
1791 'D7' => xl('One Week Ahead'),
1792 'D1' => xl('One Day Ahead'),
1793 'D0' => xl('Current Day'),
1795 'D0', // default = One Day Ahead
1796 xl('This is the default Ending date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1799 'pat_trkr_timer' => array(
1800 xl('Flow Board: Timer Refresh Interval'),
1801 array(
1802 '0' => xl('No automatic refresh'),
1803 '0:10' => '10',
1804 '0:20' => '20',
1805 '0:30' => '30',
1806 '0:40' => '40',
1807 '0:50' => '50',
1808 '0:59' => '60',
1810 '0:20', // default
1811 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1814 'checkout_roll_off' => array(
1815 xl('Flow Board: display completed checkouts (minutes)'),
1816 'num',
1817 '0', // default
1818 xl('Flow Board will only display completed checkouts for this many minutes. Zero is continuous display.')
1821 'drug_screen' => array(
1822 xl('Flow Board: Enable Random Drug Testing'),
1823 'bool', // data type
1824 '0', // default
1825 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1828 'drug_testing_percentage' => array(
1829 xl('Flow Board: Percentage of Patients to Drug Test'),
1830 'num',
1831 '33', // default
1832 xl('Percentage of Patients to select for Random Drug Testing.')
1835 'maximum_drug_test_yearly' => array(
1836 xl('Flow Board: Max tests per Patient per year'),
1837 'num',
1838 '0', // default
1839 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1842 'disable_rcb' => array(
1843 xl('Recall Board: Disable'),
1844 'bool', // data type
1845 '0', // default
1846 xl('Do not display the Recall Board.')
1853 // Insurance Tab
1854 'Insurance' => array(
1855 'enable_oa' => array(
1856 xl('Enable Office Ally Insurance Eligibility'),
1857 'bool',
1858 '0',
1859 xl('Allow insurance eligibility checks using Office Ally')
1862 'simplified_demographics' => array(
1863 xl('Simplified Demographics'),
1864 'bool', // data type
1865 '0', // default = false
1866 xl('Omit insurance and some other things from the demographics form')
1869 'insurance_information' => array(
1870 xl('Show Additional Insurance Information'), // descriptive name
1871 array(
1872 '0' => xl('None'),
1873 '1' => xl('Address Only'),
1874 '2' => xl('Address and Postal Code'),
1875 '3' => xl('Address and State'),
1876 '4' => xl('Address, State and Postal Code'),
1877 '5' => xl('Address, City, State and Postal Code'),
1878 '6' => xl('Address, City, State, Postal Code, Payer ID'),
1879 '7' => xl('Postal Code and Box Number')
1881 '6', // default
1882 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
1885 'disable_eligibility_log' => array(
1886 xl('Disable Insurance Eligibility Reports Download'),
1887 'bool',
1888 '0',
1889 xl('Do not allow insurance eligibility report log download')
1892 'insurance_only_one' => array(
1893 xl('Allow only one insurance'),
1894 'bool', // data type
1895 '0', // default = false
1896 xl('Allow more than one insurance')
1899 // Security Tab
1901 'Security' => array(
1902 'sql_string_no_show_screen' => array(
1903 xl('Mode - Do Not Show SQL Queries'),
1904 'bool', // data type
1905 '0', // default
1906 xl('Do not allow SQL queries to be outputted to screen.')
1908 'timeout' => array(
1909 xl('Idle Session Timeout Seconds'),
1910 'num', // data type
1911 '7200', // default
1912 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1914 'secure_upload' => array(
1915 xl('Secure Upload Files with White List'),
1916 'bool', // data type
1917 '1', // default
1918 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1920 'secure_password' => array(
1921 xl('Require Strong Passwords'),
1922 'bool', // data type
1923 '1', // default
1924 xl('Strong password means at least one of each: a number, a lowercase letter, an uppercase letter, a special character.')
1927 'gbl_minimum_password_length' => array(
1928 xl('Minimum Password Length'),
1929 array(
1930 '0' => xl('No Minimum'),
1931 '4' => '4',
1932 '5' => '5',
1933 '6' => '6',
1934 '7' => '7',
1935 '8' => '8',
1936 '9' => '9',
1937 '10' => '10',
1938 '11' => '11',
1939 '12' => '12',
1940 '13' => '13',
1941 '14' => '14',
1942 '15' => '15',
1943 '16' => '16',
1944 '17' => '17',
1945 '18' => '18',
1946 '19' => '19',
1947 '20' => '20',
1949 '9', // default
1950 xl('Minimum length of password.')
1953 'gbl_maximum_password_length' => array(
1954 xl('Maximum Password Length'),
1955 array(
1956 '0' => xl('No Maximum'),
1957 '72' => '72',
1959 '72', // default
1960 xl('Maximum length of password (Recommend using the default value of 72 unless you know what you are doing).')
1963 'password_history' => array(
1964 xl('Require Unique Passwords'),
1965 array(
1966 '0' => xl('No'),
1967 '1' => '1',
1968 '2' => '2',
1969 '3' => '3',
1970 '4' => '4',
1971 '5' => '5',
1973 '5', // default
1974 xl('Set to the number of prior passwords that are not allowed to use when changing a password.')
1977 'password_expiration_days' => array(
1978 xl('Default Password Expiration Days'),
1979 'num', // data type
1980 '180', // default
1981 xl('Default password expiration period in days. 0 means this feature is disabled.')
1984 'password_grace_time' => array(
1985 xl('Password Expiration Grace Period'),
1986 'num', // data type
1987 '30', // default
1988 xl('Period in days where a user may login with an expired password.')
1991 'password_max_failed_logins' => array(
1992 xl('Maximum Failed Login Attempts'),
1993 'num', // data type
1994 '0', // default
1995 xl('Maximum Failed Login Attempts (0 for no maximum).')
1998 'gbl_fac_warehouse_restrictions' => array(
1999 xl('Enable Facility/Warehouse Permissions'),
2000 'bool', // data type
2001 '0', // default
2002 xl('Enable facility/warehouse restrictions in the user administration form.')
2005 'is_client_ssl_enabled' => array(
2006 xl('Enable Client SSL'),
2007 'bool', // data type
2008 '0', // default
2009 xl('Enable client SSL certificate authentication.')
2012 'certificate_authority_crt' => array(
2013 xl('Path to CA Certificate File'),
2014 'text', // data type
2015 '', // default
2016 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
2019 'certificate_authority_key' => array(
2020 xl('Path to CA Key File'),
2021 'text', // data type
2022 '', // default
2023 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
2026 'client_certificate_valid_in_days' => array(
2027 xl('Client Certificate Expiration Days'),
2028 'num', // data type
2029 '365', // default
2030 xl('Number of days that the client certificate is valid.')
2033 'Emergency_Login_email_id' => array(
2034 xl('Emergency Login Email Address'),
2035 'text', // data type
2036 '', // default
2037 xl('Email address, if any, to receive emergency login user activation messages.')
2040 'new_validate' => array(
2041 xl('New form validation'),
2042 'bool',
2043 '1',
2044 xl('New form validation')
2047 'allow_multiple_databases' => array(
2048 xl('Allow multiple databases'),
2049 'bool',
2050 '0',
2051 xl('Allow to use with multiple database')
2054 'safe_key_database' => array(
2055 xl('Safe key database'),
2056 'text', // data type
2057 '', // default
2058 xl('Key for multiple database credentials encryption')
2061 'google_signin_enabled' => array(
2062 xl('Enable Google Sign-In'),
2063 'bool',
2064 '0',
2065 xl('Enable Authentication Using Google Sign-in')
2068 'google_signin_client_id' => array(
2069 xl('Google Sign-In Client ID'),
2070 'text',
2072 xl('This Client ID Is Provided By Google For Your App (Required For Google Sign-in)')
2075 'gbl_ldap_enabled' => array(
2076 xl('Use LDAP for Authentication'),
2077 'bool',
2078 '0',
2079 xl('If enabled, use LDAP for login and authentication.')
2081 'gbl_ldap_host' => array(
2082 xl('LDAP - Server Name or URI'),
2083 'text',
2085 xl('The hostname or URI of your LDAP or Active Directory server.')
2087 'gbl_ldap_dn' => array(
2088 xl('LDAP - Distinguished Name of User'),
2089 'text',
2091 xl('Embed {login} where the OpenEMR login name of the user is to be; for example: uid={login},dc=example,dc=com')
2093 'gbl_ldap_exclusions' => array(
2094 xl('LDAP - Login Exclusions'),
2095 'text',
2097 xl('Comma-separated list of login names to use normal authentication instead of LDAP; useful for setup and debugging.')
2100 'gbl_debug_hash_verify_execution_time' => array(
2101 xl('Debug Hash Verification Time'),
2102 'bool',
2103 '0',
2104 xl('If enabled, this will send the execution time it took to verify hash to the php error log.')
2107 'gbl_auth_hash_algo' => array(
2108 xl('Hash Algorithm for Authentication'),
2109 array(
2110 'DEFAULT' => xl('PHP Default'),
2111 'BCRYPT' => 'Bcrypt',
2112 'ARGON2I' => 'Argon2I',
2113 'ARGON2ID' => 'Argon2ID',
2114 'SHA512HASH' => 'SHA512 (ONC 2015)',
2116 'DEFAULT', // default
2117 xl('Hashing algorithm for authentication. Suggest PHP Default unless you know what you are doing.')
2120 'gbl_auth_bcrypt_hash_cost' => array(
2121 xl('Authentication Bcrypt Hash Cost'),
2122 array(
2123 'DEFAULT' => xl('PHP Default'),
2124 '5' => '5',
2125 '6' => '6',
2126 '7' => '7',
2127 '8' => '8',
2128 '9' => '9',
2129 '10' => '10',
2130 '11' => '11',
2131 '12' => '12',
2132 '13' => '13',
2133 '14' => '14',
2134 '15' => '15',
2135 '16' => '16',
2136 '17' => '17',
2137 '18' => '18',
2138 '19' => '19',
2139 '20' => '20',
2141 'DEFAULT', // default
2142 xl('Authentication bcrypt hash cost. Suggest PHP Default unless you know what you are doing.')
2145 'gbl_auth_argon_hash_memory_cost' => array(
2146 xl('Authentication Argon Hash Memory Cost'),
2147 array(
2148 'DEFAULT' => xl('PHP Default'),
2149 '512' => '512',
2150 '1024' => '1024',
2151 '2048' => '2048',
2152 '4096' => '4096',
2153 '8192' => '8192',
2154 '16384' => '16384',
2155 '32768' => '32768',
2156 '65536' => '65536',
2157 '131072' => '131072',
2158 '262144' => '262144',
2159 '524288' => '524288',
2160 '1048576' => '1048576',
2161 '2097152' => '2097152',
2163 'DEFAULT', // default
2164 xl('Authentication argon hash memory cost. Suggest PHP Default unless you know what you are doing.')
2167 'gbl_auth_argon_hash_time_cost' => array(
2168 xl('Authentication Argon Hash Time Cost'),
2169 array(
2170 'DEFAULT' => xl('PHP Default'),
2171 '1' => '1',
2172 '2' => '2',
2173 '3' => '3',
2174 '4' => '4',
2175 '5' => '5',
2176 '6' => '6',
2177 '7' => '7',
2178 '8' => '8',
2179 '9' => '9',
2180 '10' => '10',
2181 '11' => '11',
2182 '12' => '12',
2183 '13' => '13',
2184 '14' => '14',
2185 '15' => '15',
2186 '16' => '16',
2187 '17' => '17',
2188 '18' => '18',
2189 '19' => '19',
2190 '20' => '20',
2192 'DEFAULT', // default
2193 xl('Authentication argon hash time cost. Suggest PHP Default unless you know what you are doing.')
2196 'gbl_auth_argon_hash_thread_cost' => array(
2197 xl('Authentication Argon Hash Thread Number'),
2198 array(
2199 'DEFAULT' => xl('PHP Default'),
2200 '1' => '1',
2201 '2' => '2',
2202 '3' => '3',
2203 '4' => '4',
2204 '5' => '5',
2205 '6' => '6',
2206 '7' => '7',
2207 '8' => '8',
2208 '9' => '9',
2209 '10' => '10',
2210 '11' => '11',
2211 '12' => '12',
2212 '13' => '13',
2213 '14' => '14',
2214 '15' => '15',
2215 '16' => '16',
2216 '17' => '17',
2217 '18' => '18',
2218 '19' => '19',
2219 '20' => '20',
2221 'DEFAULT', // default
2222 xl('Authentication argon hash thread number. Suggest PHP Default unless you know what you are doing.')
2225 'gbl_auth_sha512_rounds' => array(
2226 xl('Authentication SHA512 Hash Rounds Number'),
2227 array(
2228 '1000' => '1000',
2229 '5000' => '5000',
2230 '10000' => '10000',
2231 '15000' => '15000',
2232 '20000' => '20000',
2233 '30000' => '30000',
2234 '40000' => '40000',
2235 '50000' => '50000',
2236 '75000' => '75000',
2237 '100000' => '100000',
2238 '200000' => '200000',
2239 '300000' => '300000',
2240 '400000' => '400000',
2241 '500000' => '500000',
2242 '750000' => '750000',
2243 '1000000' => '1000000',
2244 '2000000' => '2000000',
2245 '3000000' => '3000000',
2246 '4000000' => '4000000',
2247 '5000000' => '5000000',
2248 '6000000' => '6000000',
2249 '7000000' => '7000000',
2250 '8000000' => '8000000',
2251 '9000000' => '9000000',
2253 '100000', // default
2254 xl('Authentication SHA512 hash rounds number.')
2259 // Notifications Tab
2261 'Notifications' => array(
2263 'patient_reminder_sender_name' => array(
2264 xl('Patient Reminder Sender Name'),
2265 'text', // data type
2266 '', // default
2267 xl('Name of the sender for patient reminders.')
2270 'patient_reminder_sender_email' => array(
2271 xl('Patient Reminder Sender Email'),
2272 'text', // data type
2273 '', // default
2274 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.')
2277 'practice_return_email_path' => array(
2278 xl('Notification Email Address'),
2279 'text', // data type
2280 '', // default
2281 xl('Email address, if any, to receive administrative notifications.')
2284 'EMAIL_METHOD' => array(
2285 xl('Email Transport Method'),
2286 array(
2287 'PHPMAIL' => 'PHPMAIL',
2288 'SENDMAIL' => 'SENDMAIL',
2289 'SMTP' => 'SMTP',
2291 'SMTP', // default
2292 xl('Method for sending outgoing email.')
2295 'SMTP_HOST' => array(
2296 xl('SMTP Server Hostname'),
2297 'text', // data type
2298 'localhost', // default
2299 xl('If SMTP is used, the server`s hostname or IP address.')
2302 'SMTP_PORT' => array(
2303 xl('SMTP Server Port Number'),
2304 'num', // data type
2305 '25', // default
2306 xl('If SMTP is used, the server`s TCP port number (usually 25).')
2309 'SMTP_USER' => array(
2310 xl('SMTP User for Authentication'),
2311 'text', // data type
2312 '', // default
2313 xl('Must be empty if SMTP authentication is not used.')
2316 'SMTP_PASS' => array(
2317 xl('SMTP Password for Authentication'),
2318 'encrypted', // data type
2319 '', // default
2320 xl('Must be empty if SMTP authentication is not used.')
2323 'SMTP_SECURE' => array(
2324 xl('SMTP Security Protocol'),
2325 array(
2326 '' => xl('None'),
2327 'ssl' => 'SSL',
2328 'tls' => 'TLS'
2331 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
2334 'EMAIL_NOTIFICATION_HOUR' => array(
2335 xl('Email Notification Hours'),
2336 'num', // data type
2337 '50', // default
2338 xl('Number of hours in advance to send email notifications.')
2341 'SMS_NOTIFICATION_HOUR' => array(
2342 xl('SMS Notification Hours'),
2343 'num', // data type
2344 '50', // default
2345 xl('Number of hours in advance to send SMS notifications.')
2348 'SMS_GATEWAY_USENAME' => array(
2349 xl('SMS Gateway Username'),
2350 'text', // data type
2351 '', // default
2352 xl('Username for SMS Gateway.')
2355 'SMS_GATEWAY_PASSWORD' => array(
2356 xl('SMS Gateway Password'),
2357 'text', // data type
2358 '', // default
2359 xl('Password for SMS Gateway.')
2362 'SMS_GATEWAY_APIKEY' => array(
2363 xl('SMS Gateway API Key'),
2364 'text', // data type
2365 '', // default
2366 xl('API key for SMS Gateway.')
2369 'phone_notification_hour' => array(
2370 xl('Phone Notification Hour'),
2371 'num', // data type
2372 '50', // default
2373 xl('Number of hours in advance to send Phone notification.')
2376 'phone_gateway_username' => array(
2377 xl('Phone Gateway Username'),
2378 'text', // data type
2379 '', // default
2380 xl('Username for Phone Gateway.')
2383 'phone_gateway_password' => array(
2384 xl('Phone Gateway Password'),
2385 'encrypted', // data type
2386 '', // default
2387 xl('Password for Phone Gateway.')
2390 'phone_gateway_url' => array(
2391 xl('Phone Gateway URL'),
2392 'text', // data type
2393 '', // default
2394 xl('URL for Phone Gateway.')
2399 // CDR (Clinical Decision Rules)
2401 'CDR' => array(
2403 'enable_cdr' => array(
2404 xl('Enable Clinical Decisions Rules (CDR)'),
2405 'bool', // data type
2406 '1', // default
2407 xl('Enable Clinical Decisions Rules (CDR)')
2410 'enable_allergy_check' => array(
2411 xl('Enable Allergy Check'),
2412 'bool', // data type
2413 '1', // default
2414 xl('Enable Allergy Check Against Medications and Prescriptions')
2417 'enable_alert_log' => array(
2418 xl('Enable Alert Log'),
2419 'bool', // data type
2420 '1', // default
2421 xl('Enable Alert Logging')
2424 'enable_cdr_new_crp' => array(
2425 xl('Enable Clinical Passive New Reminder(s) Popup'),
2426 'bool', // data type
2427 '1', // default
2428 xl('Enable Clinical Passive New Reminder(s) Popup')
2431 'enable_cdr_crw' => array(
2432 xl('Enable Clinical Passive Reminder Widget'),
2433 'bool', // data type
2434 '1', // default
2435 xl('Enable Clinical Passive Reminder Widget')
2438 'enable_cdr_crp' => array(
2439 xl('Enable Clinical Active Reminder Popup'),
2440 'bool', // data type
2441 '1', // default
2442 xl('Enable Clinical Active Reminder Popup')
2445 'enable_cdr_prw' => array(
2446 xl('Enable Patient Reminder Widget'),
2447 'bool', // data type
2448 '1', // default
2449 xl('Enable Patient Reminder Widget')
2452 'enable_cqm' => array(
2453 xl('Enable CQM Reporting'),
2454 'bool', // data type
2455 '1', // default
2456 xl('Enable Clinical Quality Measure (CQM) Reporting')
2459 'pqri_registry_name' => array(
2460 xl('PQRI Registry Name'),
2461 'text', // data type
2462 'Model Registry', // default
2463 xl('PQRI Registry Name')
2466 'pqri_registry_id' => array(
2467 xl('PQRI Registry ID'),
2468 'text', // data type
2469 '125789123', // default
2470 xl('PQRI Registry ID')
2473 'enable_amc' => array(
2474 xl('Enable AMC Reporting'),
2475 'bool', // data type
2476 '1', // default
2477 xl('Enable Automated Measure Calculations (AMC) Reporting')
2480 'enable_amc_prompting' => array(
2481 xl('Enable AMC Prompting'),
2482 'bool', // data type
2483 '1', // default
2484 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
2487 'enable_amc_tracking' => array(
2488 xl('Enable AMC Tracking'),
2489 'bool', // data type
2490 '1', // default
2491 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
2494 'cdr_report_nice' => array(
2495 xl('CDR Reports Processing Priority'),
2496 array(
2497 '' => xl('Default Priority'),
2498 '5' => xl('Moderate Priority'),
2499 '10' => xl('Moderate/Low Priority'),
2500 '15' => xl('Low Priority'),
2501 '20' => xl('Lowest Priority')
2503 '', // default
2504 xl('Set processing priority for CDR engine based reports.')
2507 'pat_rem_clin_nice' => array(
2508 xl('Patient Reminder Creation Processing Priority'),
2509 array(
2510 '' => xl('Default Priority'),
2511 '5' => xl('Moderate Priority'),
2512 '10' => xl('Moderate/Low Priority'),
2513 '15' => xl('Low Priority'),
2514 '20' => xl('Lowest Priority')
2516 '', // default
2517 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2520 'report_itemizing_standard' => array(
2521 xl('Enable Standard Report Itemization'),
2522 'bool', // data type
2523 '1', // default
2524 xl('Enable Itemization of Standard Clinical Rules Reports')
2527 'report_itemizing_cqm' => array(
2528 xl('Enable CQM Report Itemization'),
2529 'bool', // data type
2530 '1', // default
2531 xl('Enable Itemization of CQM Reports')
2534 'report_itemizing_amc' => array(
2535 xl('Enable AMC Report Itemization'),
2536 'bool', // data type
2537 '1', // default
2538 xl('Enable Itemization of AMC Reports')
2540 'dated_reminders_max_alerts_to_show' => array(
2541 xl('Dated reminders maximum alerts to show'),
2542 'num', // data type
2543 '5', // default
2544 xl('Dated reminders maximum alerts to show')
2546 'patient_birthday_alert' => array(
2547 xl('Alert on patient birthday'),
2548 array(
2549 '0' => xl('No alert'),
2550 '1' => xl('Alert only on birthday'),
2551 '2' => xl('Alert on and after birthday'),
2552 '3' => xl('Alert on and up to 28 days after birthday')
2554 '1', // default
2555 xl('Alert on patient birthday')
2557 'patient_birthday_alert_manual_off' => array(
2558 xl('Patient birthday alert requires turning off'),
2559 'bool', // data type
2560 '0', // default
2561 xl('Patient birthday alert requires turning off')
2565 // Logging
2567 'Logging' => array(
2569 'user_debug' => array(
2570 xl('User Debugging Options'),
2571 array(
2572 '0' => xl('None'),
2573 '1' => xl('Display Window Errors Only'),
2574 '2' => xl('Display Application Errors Only'),
2575 '3' => xl('All'),
2577 '0', // default
2578 xl('User Debugging Mode.')
2581 'enable_auditlog' => array(
2582 xl('Enable Audit Logging'),
2583 'bool', // data type
2584 '1', // default
2585 xl('Enable Audit Logging')
2588 'audit_events_patient-record' => array(
2589 xl('Audit Logging Patient Record'),
2590 'bool', // data type
2591 '1', // default
2592 xl('Enable logging of patient record modifications.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2595 'audit_events_scheduling' => array(
2596 xl('Audit Logging Scheduling'),
2597 'bool', // data type
2598 '1', // default
2599 xl('Enable logging of scheduling activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2602 'audit_events_order' => array(
2603 xl('Audit Logging Order'),
2604 'bool', // data type
2605 '1', // default
2606 xl('Enable logging of ordering activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2609 'audit_events_security-administration' => array(
2610 xl('Audit Logging Security Administration'),
2611 'bool', // data type
2612 '1', // default
2613 xl('Enable logging of security and administration activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2616 'audit_events_backup' => array(
2617 xl('Audit Logging Backups'),
2618 'bool', // data type
2619 '1', // default
2620 xl('Enable logging of backup related activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2623 'audit_events_other' => array(
2624 xl('Audit Logging Miscellaneous'),
2625 'bool', // data type
2626 '1', // default
2627 xl('Enable logging of miscellaneous activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2630 'audit_events_query' => array(
2631 xl('Audit Logging SELECT Query'),
2632 'bool', // data type
2633 '1', // default
2634 xl('Enable logging of all SQL SELECT queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2637 'audit_events_cdr' => array(
2638 xl('Audit CDR Engine Queries'),
2639 'bool', // data type
2640 '0', // default
2641 xl('Enable logging of CDR Engine Queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2644 'gbl_force_log_breakglass' => array(
2645 xl('Audit all Emergency User Queries'),
2646 'bool', // data type
2647 '1', // default
2648 xl('Force logging of all Emergency User (ie. breakglass) activities.')
2651 'enable_atna_audit' => array(
2652 xl('Enable ATNA Auditing'),
2653 'bool', // data type
2654 '0', // default
2655 xl('Enable Audit Trail and Node Authentication (ATNA).')
2658 'atna_audit_host' => array(
2659 xl('ATNA audit host'),
2660 'text', // data type
2661 '', // default
2662 xl('The hostname of the ATNA audit repository machine.')
2665 'atna_audit_port' => array(
2666 xl('ATNA audit port'),
2667 'text', // data type
2668 '6514', // default
2669 xl('Listening port of the RFC 5425 TLS syslog server.')
2672 'atna_audit_localcert' => array(
2673 xl('ATNA audit local certificate'),
2674 'text', // data type
2675 '', // default
2676 xl('Certificate to send to RFC 5425 TLS syslog server.')
2679 'atna_audit_cacert' => array(
2680 xl('ATNA audit CA certificate'),
2681 'text', // data type
2682 '', // default
2683 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2686 'enable_auditlog_encryption' => array(
2687 xl('Enable Audit Log Encryption'),
2688 'bool', // data type
2689 '0', // default
2690 xl('Enable Audit Log Encryption')
2693 'api_log_option' => array(
2694 xl('API Log Option'),
2695 array(
2696 '0' => xl('No logging'),
2697 '1' => xl('Minimal Logging'),
2698 '2' => xl('Full Logging'),
2700 '2', // default
2701 xl('API Log Option (Full includes requests and responses).')
2704 'billing_log_option' => array(
2705 xl('Billing Log Option'),
2706 array(
2707 '1' => xl('Billing Log Append'),
2708 '2' => xl('Billing Log Overwrite')
2710 '1', // default
2711 xl('Billing log setting to append or overwrite the log file.')
2714 'gbl_print_log_option' => array(
2715 xl('Printing Log Option'),
2716 array(
2717 '0' => xl('No logging'),
2718 '1' => xl('Hide print feature'),
2719 '2' => xl('Log entire document'),
2721 '2', // default
2722 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2725 'system_error_logging' => array(
2726 xl('System Error Logging Options'),
2727 array(
2728 'WARNING' => xl('Standard Error Logging'),
2729 'DEBUG' => xl('Debug Error Logging'),
2731 'WARNING', // default
2732 xl('System Error Logging Options.')
2737 // Miscellaneous Tab
2739 'Miscellaneous' => array(
2741 'enable_database_connection_pooling' => array(
2742 xl('Enable Database Connection Pooling'),
2743 'bool', // data type
2744 '1', // default
2745 xl('Enable Database Connection Pooling')
2748 'mysql_bin_dir' => array(
2749 xl('Path to MySQL Binaries'),
2750 'text', // data type
2751 $mysql_bin_dir, // default
2752 xl('Full path to directory containing MySQL executables.')
2755 'perl_bin_dir' => array(
2756 xl('Path to Perl Binaries'),
2757 'text', // data type
2758 $perl_bin_dir, // default
2759 xl('Full path to directory containing Perl executables.')
2762 'temporary_files_dir' => array(
2763 xl('Path to Temporary Files'),
2764 'text', // data type
2765 $temporary_files_dir, // default
2766 xl('Full path to directory used for temporary files.')
2769 'backup_log_dir' => array(
2770 xl('Path for Event Log Backup'),
2771 'text', // data type
2772 $backup_log_dir, // default
2773 xl('Full path to directory for event log backup.')
2776 'state_data_type' => array(
2777 xl('State Data Type'),
2778 array(
2779 '2' => xl('Text field'),
2780 '1' => xl('Single-selection list'),
2781 '26' => xl('Single-selection list with ability to add to the list'),
2783 '26', // default
2784 xl('Field type to use for employer or subscriber state in demographics.')
2787 'state_list' => array(
2788 xl('State list'),
2789 'text', // data type
2790 'state', // default
2791 xl('List used by above State Data Type option.')
2794 'state_custom_addlist_widget' => array(
2795 xl('State List Widget Custom Fields'),
2796 'bool', // data type
2797 '1', // default
2798 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2801 'country_data_type' => array(
2802 xl('Country Data Type'),
2803 array(
2804 '2' => xl('Text field'),
2805 '1' => xl('Single-selection list'),
2806 '26' => xl('Single-selection list with ability to add to the list'),
2808 '26', // default
2809 xl('Field type to use for employer or subscriber country in demographics.')
2812 'country_list' => array(
2813 xl('Country list'),
2814 'text', // data type
2815 'country', // default
2816 xl('List used by above Country Data Type option.')
2819 'default_chief_complaint' => array(
2820 xl('Default Reason for Visit'),
2821 'text', // data type
2823 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2826 'MedicareReferrerIsRenderer' => array(
2827 xl('Medicare Referrer Is Renderer'),
2828 'bool', // data type
2829 '0', // default = true
2830 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2833 'post_to_date_benchmark' => array(
2834 xl('Financial Close Date (yyyy-mm-dd)'),
2835 'text', // data type
2836 date('Y-m-d', time() - (10 * 24 * 60 * 60)), // default
2837 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2840 'enable_hylafax' => array(
2841 xl('Enable Hylafax Support'),
2842 'bool', // data type
2843 '0', // default
2844 xl('Enable Hylafax Support')
2847 'hylafax_server' => array(
2848 xl('Hylafax Server'),
2849 'text', // data type
2850 'localhost', // default
2851 xl('Hylafax server hostname.')
2854 'hylafax_basedir' => array(
2855 xl('Hylafax Directory'),
2856 'text', // data type
2857 '/var/spool/hylafax', // default
2858 xl('Location where Hylafax stores faxes.')
2861 'enable_scanner' => array(
2862 xl('Enable Scanner Support'),
2863 'bool', // data type
2864 '0', // default
2865 xl('Enable Scanner Support')
2868 'scanner_output_directory' => array(
2869 xl('Scanner Directory'),
2870 'text', // data type
2871 '/mnt/scan_docs', // default
2872 xl('Location where scans are stored.')
2875 'unique_installation_id' => array(
2876 xl('Unique Installation ID'),
2877 'if_empty_create_random_uuid', // data type
2878 '', // default
2879 xl('Unique installation ID. Creates a random UUID if empty.')
2883 // Portal Tab
2885 'Portal' => array(
2887 'portal_onsite_two_enable' => array(
2888 xl('Enable Patient Portal'),
2889 'bool', // data type
2890 '0',
2891 xl('Enable Patient Portal')
2894 'portal_onsite_two_address' => array(
2895 xl('Patient Portal Site Address'),
2896 'text', // data type
2897 'https://your_web_site.com/openemr/portal',
2898 xl('Website link for the Patient Portal.')
2901 'portal_onsite_two_basepath' => array(
2902 xl('Portal Uses Server Base Path (internal)'),
2903 'bool',
2904 '0',
2905 xl('Use servers protocol and host in urls (portal internal only).')
2908 'enforce_signin_email' => array(
2909 xl('Enforce E-Mail in Portal Log On Dialog'),
2910 'bool', // data type
2911 '1',
2912 xl('Patient is required to enter their contact e-mail if present in Demographics Contact.')
2915 'portal_onsite_two_register' => array(
2916 xl('Allow New Patient Registration Widget'),
2917 'bool', // data type
2918 '0',
2919 xl('Enable Patient Portal new patient to self register.')
2922 'allow_portal_appointments' => array(
2923 xl('Allow Online Appointments'),
2924 'bool', // data type
2925 '1',
2926 xl('Allow Patient to make and view appointments online.')
2929 'allow_portal_chat' => array(
2930 xl('Allow Online Secure Chat'),
2931 'bool', // data type
2932 '1',
2933 xl('Allow Patient to use Secure Chat Application.')
2936 'portal_two_ledger' => array(
2937 xl('Allow Patient Ledger'),
2938 'bool', // data type
2939 '1',
2940 xl('Allow Patient to view their accounting ledger online.')
2943 'portal_two_payments' => array(
2944 xl('Allow Online Payments'),
2945 'bool', // data type
2946 '0',
2947 xl('Allow Patient to make payments online.')
2950 'portal_two_pass_reset' => array(
2951 xl('Allow Patients to Reset Credentials'),
2952 'bool', // data type
2953 '0',
2954 xl('Patient may change their logon from portal login dialog.')
2957 'portal_onsite_document_download' => array(
2958 xl('Enable Patient Portal Document Download'),
2959 'bool', // data type
2960 '1',
2961 xl('Enables the ability to download documents in the Patient Portal by the user.')
2965 // Connectors Tab
2967 'Connectors' => array(
2969 'site_addr_oath' => array(
2970 xl('Site Address (required for OAuth2 and FHIR)'),
2971 'text',
2973 xl('Site Address (required for OAuth2 and FHIR). Example is') . ' https://localhost:8300 .'
2976 'rest_api' => array(
2977 xl('Enable OpenEMR Standard REST API'),
2978 'bool',
2979 '0',
2980 xl('Enable OpenEMR Standard RESTful API.')
2983 'rest_fhir_api' => array(
2984 xl('Enable OpenEMR Standard FHIR REST API'),
2985 'bool',
2986 '0',
2987 xl('Enable OpenEMR Standard FHIR RESTful API.')
2990 'rest_portal_api' => array(
2991 xl('Enable OpenEMR Patient Portal REST API (EXPERIMENTAL)'),
2992 'bool',
2993 '0',
2994 xl('Enable OpenEMR Patient Portal RESTful API.')
2997 'rest_system_scopes_api' => array(
2998 xl('Enable OpenEMR FHIR System Scopes (Recommended Off, Turn on only if you know what you are doing)'),
2999 'bool',
3000 '0',
3001 xl('Enable OpenEMR FHIR System Scopes.')
3004 'oauth_password_grant' => array(
3005 xl('Enable OAuth2 Password Grant (Not considered secure)'),
3006 array(
3007 0 => xl('Off (Recommended setting)'),
3008 1 => xl('On for Users Role'),
3009 2 => xl('On for Patient Role'),
3010 3 => xl('On for Both Roles')
3012 '0',
3013 xl('Enable OAuth2 Password Grant. Recommend turning this setting off for production server. Recommend only using for testing.')
3016 'cc_front_payments' => array(
3017 xl('Accept Credit Card transactions from Front Payments'),
3018 'bool',
3019 '0',
3020 xl('Allow manual entry and authorise credit card payments. Ensure a gateway is enabled.')
3022 'cc_stripe_terminal' => array(
3023 xl('In person payments with Stripe Verifone P400'),
3024 'bool',
3025 '0',
3026 xl('Allow in person credit card payments using Stripe Verifone P400. Ensure Stripe gateway is enabled.')
3028 'payment_gateway' => array(
3029 xl('Select Credit Card Payment Gateway'),
3030 array(
3031 'InHouse' => xl('In House Authorize Payments'),
3032 'AuthorizeNet' => xl('Gateway for AuthorizeNet Manual Payments'),
3033 'Stripe' => xl('Gateway for Stripe Manual Payments')
3035 'InHouse',
3036 xl('Enable a Payment Gateway Service for processing credit card transactions')
3039 'gateway_mode_production' => array(
3040 xl('Set Gateway to Production Mode'),
3041 'bool', // data type
3042 '0',
3043 xl('Check this to go live. Not checked is testing mode.')
3046 'gateway_public_key' => array(
3047 xl('Gateway Publishable Key'),
3048 'encrypted',
3050 xl('The public access key for secure tokenize of credit or debit card authorization. PCI compliance')
3053 'gateway_api_key' => array(
3054 xl('Gateway API Login Auth Name or Secret'),
3055 'encrypted',
3057 xl('The Auth Name or API key for selected account. Auth Name for Authorize.Net and API Secret for Stripe.')
3060 'gateway_transaction_key' => array(
3061 xl('Gateway Transaction Key'),
3062 'encrypted',
3064 xl('Mainly Authorize.Net uses two keys')
3067 'medex_enable' => array(
3068 xl('Enable MedEx Communication Service'),
3069 'bool', // data type
3070 '0',
3071 xl('Enable MedEx Communication Service')
3074 'erx_enable' => array(
3075 xl('Enable NewCrop eRx Service'),
3076 'bool',
3077 '0',
3078 xl('Enable NewCrop eRx Service.') . ' ' .
3079 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.')
3082 'erx_newcrop_path' => array(
3083 xl('NewCrop eRx Site Address'),
3084 'text',
3085 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
3086 xl('URL for NewCrop eRx Site Address.')
3089 'erx_newcrop_path_soap' => array(
3090 xl('NewCrop eRx Web Service Address'),
3091 'text',
3092 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
3093 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
3096 'erx_soap_ttl_allergies' => array(
3097 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
3098 'num',
3099 '21600',
3100 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
3103 'erx_soap_ttl_medications' => array(
3104 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
3105 'num',
3106 '21600',
3107 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
3110 'erx_account_partner_name' => array(
3111 xl('NewCrop eRx Partner Name'),
3112 'text',
3114 xl('Partner Name issued for NewCrop eRx service.')
3117 'erx_account_name' => array(
3118 xl('NewCrop eRx Name'),
3119 'text',
3121 xl('Account Name issued for NewCrop eRx service.')
3124 'erx_account_password' => array(
3125 xl('NewCrop eRx Password'),
3126 'encrypted',
3128 xl('Account Password issued for NewCrop eRx service.')
3131 'erx_account_id' => array(
3132 xl('NewCrop eRx Account Id'),
3133 'text',
3134 '1',
3135 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
3138 'erx_upload_active' => array(
3139 xl('Only upload active prescriptions'),
3140 'bool',
3141 '0',
3142 xl('Only upload active prescriptions to NewCrop eRx.')
3145 'erx_import_status_message' => array(
3146 xl('Enable NewCrop eRx import status message'),
3147 'bool',
3148 '0',
3149 xl('Enable import status message after visiting NewCrop eRx.')
3152 'erx_medication_display' => array(
3153 xl('Do not display NewCrop eRx Medications uploaded'),
3154 'bool',
3155 '0',
3156 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
3159 'erx_allergy_display' => array(
3160 xl('Do not display NewCrop eRx Allergy uploaded'),
3161 'bool',
3162 '0',
3163 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
3166 'erx_default_patient_country' => array(
3167 xl('NewCrop eRx Default Patient Country'),
3168 array(
3169 '' => '',
3170 'US' => xl('USA'),
3171 'CA' => xl('Canada'),
3172 'MX' => xl('Mexico'),
3175 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
3178 'erx_debug_setting' => array(
3179 xl('NewCrop eRx Debug Setting'),
3180 array(
3181 0 => xl('None'),
3182 1 => xl('Request Only'),
3183 2 => xl('Response Only'),
3184 3 => xl('Request & Response'),
3186 '0',
3187 xl('Log all NewCrop eRx Requests and / or Responses.'),
3190 'weno_rx_enable' => array(
3191 xl('Enable Weno eRx Service'),
3192 'bool',
3193 '0',
3194 xl('Enable Weno eRx Service') . ' ' . xl('Contact https://online.wenoexchange.com to sign up for Weno Free eRx service.')
3197 'weno_rx_enable_test' => array(
3198 xl('Enable Weno eRx Service Test mode'),
3199 'bool',
3200 '1',
3201 xl('Enable Weno eRx Service Test mode')
3204 'weno_encryption_key' => array(
3205 xl('Weno Encryption Key'),
3206 'encrypted', // data type
3208 xl('Encryption key issued by Weno eRx service.')
3211 'weno_provider_password' => array(
3212 xl('Weno Provider Account Password'),
3213 'encrypted', // data type
3215 xl('Each provider needs to set this under user settings. This should be blank')
3218 'ccda_alt_service_enable' => array(
3219 xl('Enable C-CDA Service'),
3220 array(
3221 0 => xl('Off'),
3222 1 => xl('Care Coordination Only'),
3223 2 => xl('Portal Only'),
3224 3 => xl('Both'),
3226 '0',
3227 xl('Enable C-CDA Service')
3230 'phimail_enable' => array(
3231 xl('Enable phiMail Direct Messaging Service'),
3232 'bool', // data type
3233 '0',
3234 xl('Enable phiMail Direct Messaging Service')
3237 'phimail_server_address' => array(
3238 xl('phiMail Server Address'),
3239 'text', // data type
3240 'https://phimail.example.com:32541',
3241 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
3244 'phimail_username' => array(
3245 xl('phiMail Username'),
3246 'text', // data type
3248 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
3251 'phimail_password' => array(
3252 xl('phiMail Password'),
3253 'encrypted', // data type
3255 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
3258 'phimail_notify' => array(
3259 xl('phiMail notification user'),
3260 'text', // data type
3261 'admin',
3262 xl('This user will receive notification of new incoming Direct messages')
3265 'phimail_interval' => array(
3266 xl('phiMail Message Check Interval (minutes)'),
3267 'num', // data type
3268 '5',
3269 xl('Interval between message checks (set to zero for manual checks only)')
3272 'phimail_ccd_enable' => array(
3273 xl('phiMail Allow CCD Send'),
3274 'bool', // data type
3275 '0',
3276 xl('phiMail Allow CCD Send')
3279 'phimail_ccr_enable' => array(
3280 xl('phiMail Allow CCR Send'),
3281 'bool', // data type
3282 '0',
3283 xl('phiMail Allow CCR Send')
3286 'easipro_enable' => array(
3287 xl('Enable Easipro'),
3288 'bool', // data type
3289 '0',
3290 xl('Enable Easipro. For licensing options for this feature, please contact') . ' api@assessmentcenter.net'
3293 'easipro_server' => array(
3294 xl('Easipro Server'),
3295 'text', // data type
3297 xl('Easipro Server')
3300 'easipro_name' => array(
3301 xl('Easipro Server Username'),
3302 'text', // data type
3304 xl('Easipro Server Username')
3307 'easipro_pass' => array(
3308 xl('Easipro Server Password'),
3309 'encrypted', // data type
3311 xl('Easipro Server Password')
3315 'Rx' => array(
3316 'rx_enable_DEA' => array(
3317 xl('Rx Enable DEA #'),
3318 'bool', // data type
3319 '1',
3320 xl('Rx Enable DEA #')
3322 'rx_show_DEA' => array(
3323 xl('Rx Show DEA #'),
3324 'bool', // data type
3325 '0',
3326 xl('Rx Show DEA #')
3328 'rx_enable_NPI' => array(
3329 xl('Rx Enable NPI'),
3330 'bool', // data type
3331 '0',
3332 xl('Rx Enable NPI')
3334 'rx_show_NPI' => array(
3335 xl('Rx Show NPI'),
3336 'bool', // data type
3337 '0',
3338 xl('Rx Show NPI')
3340 'rx_enable_SLN' => array(
3341 xl('Rx Enable State Lic. #'),
3342 'bool', // data type
3343 '0',
3344 xl('Rx Enable State Lic. #')
3346 'rx_show_SLN' => array(
3347 xl('Rx Show State Lic. #'),
3348 'bool', // data type
3349 '0',
3350 xl('Rx Show State Lic. #')
3352 'rx_show_drug_drug' => array(
3353 xl('Rx NLM Drug-Drug'),
3354 'bool', // data type
3355 '0',
3356 xl('Rx NLM Drug-Drug')
3358 'rx_paper_size' => array(
3359 xl('Rx Paper Size'), // descriptive name
3360 array(
3361 'LETTER' => xl('Letter Paper Size'),
3362 'LEGAL' => xl('Legal Paper Size'),
3363 'FOLIO' => xl('Folio Paper Size'),
3364 'EXECUTIVE' => xl('Executive Paper Size'),
3365 '4A0' => ('4A0' . " " . xl('Paper Size')),
3366 '2A0' => ('2A0' . " " . xl('Paper Size')),
3367 'A0' => ('A0' . " " . xl('Paper Size')),
3368 'A1' => ('A1' . " " . xl('Paper Size')),
3369 'A2' => ('A2' . " " . xl('Paper Size')),
3370 'A3' => ('A3' . " " . xl('Paper Size')),
3371 'A4' => ('A4' . " " . xl('Paper Size')),
3372 'A5' => ('A5' . " " . xl('Paper Size')),
3373 'A6' => ('A6' . " " . xl('Paper Size')),
3374 'A7' => ('A7' . " " . xl('Paper Size')),
3375 'A8' => ('A8' . " " . xl('Paper Size')),
3376 'A9' => ('A9' . " " . xl('Paper Size')),
3377 'A10' => ('A10' . " " . xl('Paper Size')),
3378 'B0' => ('B0' . " " . xl('Paper Size')),
3379 'B1' => ('B1' . " " . xl('Paper Size')),
3380 'B2' => ('B2' . " " . xl('Paper Size')),
3381 'B3' => ('B3' . " " . xl('Paper Size')),
3382 'B4' => ('B4' . " " . xl('Paper Size')),
3383 'B5' => ('B5' . " " . xl('Paper Size')),
3384 'B6' => ('B6' . " " . xl('Paper Size')),
3385 'B7' => ('B7' . " " . xl('Paper Size')),
3386 'B8' => ('B8' . " " . xl('Paper Size')),
3387 'B9' => ('B9' . " " . xl('Paper Size')),
3388 'B10' => ('B10' . " " . xl('Paper Size')),
3389 'C0' => ('C0' . " " . xl('Paper Size')),
3390 'C1' => ('C1' . " " . xl('Paper Size')),
3391 'C2' => ('C2' . " " . xl('Paper Size')),
3392 'C3' => ('C3' . " " . xl('Paper Size')),
3393 'C4' => ('C4' . " " . xl('Paper Size')),
3394 'C5' => ('C5' . " " . xl('Paper Size')),
3395 'C6' => ('C6' . " " . xl('Paper Size')),
3396 'C7' => ('C7' . " " . xl('Paper Size')),
3397 'C8' => ('C8' . " " . xl('Paper Size')),
3398 'C9' => ('C9' . " " . xl('Paper Size')),
3399 'C10' => ('C10' . " " . xl('Paper Size')),
3400 'RA0' => ('RA0' . " " . xl('Paper Size')),
3401 'RA1' => ('RA1' . " " . xl('Paper Size')),
3402 'RA2' => ('RA2' . " " . xl('Paper Size')),
3403 'RA3' => ('RA3' . " " . xl('Paper Size')),
3404 'RA4' => ('RA4' . " " . xl('Paper Size')),
3405 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3406 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3407 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3408 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3409 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3411 'LETTER', // default = tree menu
3412 xl('Rx Paper Size')
3414 'rx_left_margin' => array(
3415 xl('Rx Left Margin (px)'),
3416 'num',
3417 '30',
3418 xl('Rx Left Margin (px)')
3420 'rx_right_margin' => array(
3421 xl('Rx Right Margin (px)'),
3422 'num',
3423 '30',
3424 xl('Rx Right Margin (px)')
3426 'rx_top_margin' => array(
3427 xl('Rx Top Margin (px)'),
3428 'num',
3429 '72',
3430 xl('Rx Top Margin (px)')
3432 'rx_bottom_margin' => array(
3433 xl('Rx Bottom Margin (px)'),
3434 'num',
3435 '30',
3436 xl('Rx Bottom Margin (px)')
3438 'rx_use_fax_template' => array(
3439 xl('Show button for download fax template'),
3440 'bool', // data type
3441 '1', // default = true
3442 xl('Show button in the prescription list for download fax template')
3444 'rx_zend_html_template' => array(
3445 xl('Rx html print - zend module'),
3446 'bool', // data type
3447 '0', // default = false
3448 xl('Use an html template from zend module')
3450 'rx_zend_html_action' => array(
3451 xl('Name of zend template for html print'),
3452 'text', // data type
3453 'default',
3454 xl('Name of zend template for html print, possible to add custom template in the PrescriptionTemplate module')
3456 'rx_zend_pdf_template' => array(
3457 xl('Rx pdf - zend template'),
3458 'bool', // data type
3459 '0', // default = false
3460 xl('Use a pdf template from zend module')
3462 'rx_zend_pdf_action' => array(
3463 xl('Name of zend template for pdf export'),
3464 'text', // data type
3465 'default',
3466 xl('Name of zend template for pdf export, possible to add custom template in the PrescriptionTemplate module')
3469 'PDF' => array(
3470 'pdf_layout' => array(
3471 xl('Layout'),
3472 array(
3473 'P' => xl('Portrait'),
3474 'L' => xl('Landscape')
3476 'P', //defaut
3477 xl("Choose Layout Direction"),
3479 'pdf_language' => array(
3480 xl('PDF Language'),
3481 array(
3482 'aa' => xl('Afar'),
3483 'af' => xl('Afrikaans'),
3484 'ak' => xl('Akan'),
3485 'sq' => xl('Albanian'),
3486 'am' => xl('Amharic'),
3487 'ar' => xl('Arabic'),
3488 'an' => xl('Aragonese'),
3489 'hy' => xl('Armenian'),
3490 'as' => xl('Assamese'),
3491 'av' => xl('Avaric'),
3492 'ae' => xl('Avestan'),
3493 'ay' => xl('Aymara'),
3494 'az' => xl('Azerbaijani'),
3495 'bm' => xl('Bambara'),
3496 'ba' => xl('Bashkir'),
3497 'eu' => xl('Basque'),
3498 'be' => xl('Belarusian'),
3499 'bn' => xl('Bengali- Bangla'),
3500 'bh' => xl('Bihari'),
3501 'bi' => xl('Bislama'),
3502 'bs' => xl('Bosnian'),
3503 'br' => xl('Breton'),
3504 'bg' => xl('Bulgarian'),
3505 'my' => xl('Burmese'),
3506 'ca' => xl('Catalan- Valencian'),
3507 'ch' => xl('Chamorro'),
3508 'ce' => xl('Chechen'),
3509 'ny' => xl('Chichewa- Chewa- Nyanja'),
3510 'zh' => xl('Chinese'),
3511 'cv' => xl('Chuvash'),
3512 'kw' => xl('Cornish'),
3513 'co' => xl('Corsican'),
3514 'cr' => xl('Cree'),
3515 'hr' => xl('Croatian'),
3516 'cs' => xl('Czech'),
3517 'da' => xl('Danish'),
3518 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
3519 'nl' => xl('Dutch'),
3520 'dz' => xl('Dzongkha'),
3521 'en' => xl('English'),
3522 'eo' => xl('Esperanto'),
3523 'et' => xl('Estonian'),
3524 'ee' => xl('Ewe'),
3525 'fo' => xl('Faroese'),
3526 'fj' => xl('Fijian'),
3527 'fi' => xl('Finnish'),
3528 'fr' => xl('French'),
3529 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
3530 'gl' => xl('Galician'),
3531 'ka' => xl('Georgian'),
3532 'de' => xl('German'),
3533 'el' => xl('Greek, Modern'),
3534 'gn' => xl('Guarani'),
3535 'gu' => xl('Gujarati'),
3536 'ht' => xl('Haitian- Haitian Creole'),
3537 'ha' => xl('Hausa'),
3538 'he' => xl('Hebrew (modern)'),
3539 'hz' => xl('Herero'),
3540 'hi' => xl('Hindi'),
3541 'ho' => xl('Hiri Motu'),
3542 'hu' => xl('Hungarian'),
3543 'ia' => xl('Interlingua'),
3544 'id' => xl('Indonesian'),
3545 'ie' => xl('Interlingue'),
3546 'ga' => xl('Irish'),
3547 'ig' => xl('Igbo'),
3548 'ik' => xl('Inupiaq'),
3549 'io' => xl('Ido'),
3550 'is' => xl('Icelandic'),
3551 'it' => xl('Italian'),
3552 'iu' => xl('Inuktitut'),
3553 'ja' => xl('Japanese'),
3554 'jv' => xl('Javanese'),
3555 'kl' => xl('Kalaallisut, Greenlandic'),
3556 'kn' => xl('Kannada'),
3557 'kr' => xl('Kanuri'),
3558 'ks' => xl('Kashmiri'),
3559 'kk' => xl('Kazakh'),
3560 'km' => xl('Khmer'),
3561 'ki' => xl('Kikuyu, Gikuyu'),
3562 'rw' => xl('Kinyarwanda'),
3563 'ky' => xl('Kyrgyz'),
3564 'kv' => xl('Komi'),
3565 'kg' => xl('Kongo'),
3566 'ko' => xl('Korean'),
3567 'ku' => xl('Kurdish'),
3568 'kj' => xl('Kwanyama, Kuanyama'),
3569 'la' => xl('Latin'),
3570 'lb' => xl('Luxembourgish, Letzeburgesch'),
3571 'lg' => xl('Ganda'),
3572 'li' => xl('Limburgish, Limburgan, Limburger'),
3573 'ln' => xl('Lingala'),
3574 'lo' => xl('Lao'),
3575 'lt' => xl('Lithuanian'),
3576 'lu' => xl('Luba-Katanga'),
3577 'lv' => xl('Latvian'),
3578 'gv' => xl('Manx'),
3579 'mk' => xl('Macedonian'),
3580 'mg' => xl('Malagasy'),
3581 'ms' => xl('Malay'),
3582 'ml' => xl('Malayalam'),
3583 'mt' => xl('Maltese'),
3584 'mi' => xl('Maori'),
3585 'mr' => xl('Marathi (Marathi)'),
3586 'mh' => xl('Marshallese'),
3587 'mn' => xl('Mongolian'),
3588 'na' => xl('Nauru'),
3589 'nv' => xl('Navajo, Navaho'),
3590 'nb' => xl('Norwegian Bokmal'),
3591 'nd' => xl('North Ndebele'),
3592 'ne' => xl('Nepali'),
3593 'ng' => xl('Ndonga'),
3594 'nn' => xl('Norwegian Nynorsk'),
3595 'no' => xl('Norwegian'),
3596 'ii' => xl('Nuosu'),
3597 'nr' => xl('South Ndebele'),
3598 'oc' => xl('Occitan'),
3599 'oj' => xl('Ojibwe, Ojibwa'),
3600 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
3601 'om' => xl('Oromo'),
3602 'or' => xl('Oriya'),
3603 'os' => xl('Ossetian, Ossetic'),
3604 'pa' => xl('Panjabi, Punjabi'),
3605 'pi' => xl('Pali'),
3606 'fa' => xl('Persian (Farsi)'),
3607 'pl' => xl('Polish'),
3608 'ps' => xl('Pashto, Pushto'),
3609 'pt' => xl('Portuguese'),
3610 'qu' => xl('Quechua'),
3611 'rm' => xl('Romansh'),
3612 'rn' => xl('Kirundi'),
3613 'ro' => xl('Romanian'),
3614 'ru' => xl('Russian'),
3615 'sa' => xl('Sanskrit (Samskrta)'),
3616 'sc' => xl('Sardinian'),
3617 'sd' => xl('Sindhi'),
3618 'se' => xl('Northern Sami'),
3619 'sm' => xl('Samoan'),
3620 'sg' => xl('Sango'),
3621 'sr' => xl('Serbian'),
3622 'gd' => xl('Scottish Gaelic- Gaelic'),
3623 'sn' => xl('Shona'),
3624 'si' => xl('Sinhala, Sinhalese'),
3625 'sk' => xl('Slovak'),
3626 'sl' => xl('Slovene'),
3627 'so' => xl('Somali'),
3628 'st' => xl('Southern Sotho'),
3629 'es' => xl('Spanish- Castilian'),
3630 'su' => xl('Sundanese'),
3631 'sw' => xl('Swahili'),
3632 'ss' => xl('Swati'),
3633 'sv' => xl('Swedish'),
3634 'ta' => xl('Tamil'),
3635 'te' => xl('Telugu'),
3636 'tg' => xl('Tajik'),
3637 'th' => xl('Thai'),
3638 'ti' => xl('Tigrinya'),
3639 'bo' => xl('Tibetan Standard, Tibetan, Central'),
3640 'tk' => xl('Turkmen'),
3641 'tl' => xl('Tagalog'),
3642 'tn' => xl('Tswana'),
3643 'to' => xl('Tonga (Tonga Islands)'),
3644 'tr' => xl('Turkish'),
3645 'ts' => xl('Tsonga'),
3646 'tt' => xl('Tatar'),
3647 'tw' => xl('Twi'),
3648 'ty' => xl('Tahitian'),
3649 'ug' => xl('Uyghur, Uighur'),
3650 'uk' => xl('Ukrainian'),
3651 'ur' => xl('Urdu'),
3652 'uz' => xl('Uzbek'),
3653 've' => xl('Venda'),
3654 'vi' => xl('Vietnamese'),
3655 'vo' => xl('Volapuk'),
3656 'wa' => xl('Walloon'),
3657 'cy' => xl('Welsh'),
3658 'wo' => xl('Wolof'),
3659 'fy' => xl('Western Frisian'),
3660 'xh' => xl('Xhosa'),
3661 'yi' => xl('Yiddish'),
3662 'yo' => xl('Yoruba'),
3663 'za' => xl('Zhuang, Chuang'),
3664 'zu' => xl('Zulu'),
3666 'en', // default English
3667 xl('Choose PDF languange Preference'),
3669 'pdf_size' => array(
3670 xl('Paper Size'), // Descriptive Name
3671 array(
3672 'LETTER' => xl('Letter Paper Size'),
3673 'LEGAL' => xl('Legal Paper Size'),
3674 'FOLIO' => xl('Folio Paper Size'),
3675 'EXECUTIVE' => xl('Executive Paper Size'),
3676 '4A0' => ('4A0' . " " . xl('Paper Size')),
3677 '2A0' => ('2A0' . " " . xl('Paper Size')),
3678 'A0' => ('A0' . " " . xl('Paper Size')),
3679 'A1' => ('A1' . " " . xl('Paper Size')),
3680 'A2' => ('A2' . " " . xl('Paper Size')),
3681 'A3' => ('A3' . " " . xl('Paper Size')),
3682 'A4' => ('A4' . " " . xl('Paper Size')),
3683 'A5' => ('A5' . " " . xl('Paper Size')),
3684 'A6' => ('A6' . " " . xl('Paper Size')),
3685 'A7' => ('A7' . " " . xl('Paper Size')),
3686 'A8' => ('A8' . " " . xl('Paper Size')),
3687 'A9' => ('A9' . " " . xl('Paper Size')),
3688 'A10' => ('A10' . " " . xl('Paper Size')),
3689 'B0' => ('B0' . " " . xl('Paper Size')),
3690 'B1' => ('B1' . " " . xl('Paper Size')),
3691 'B2' => ('B2' . " " . xl('Paper Size')),
3692 'B3' => ('B3' . " " . xl('Paper Size')),
3693 'B4' => ('B4' . " " . xl('Paper Size')),
3694 'B5' => ('B5' . " " . xl('Paper Size')),
3695 'B6' => ('B6' . " " . xl('Paper Size')),
3696 'B7' => ('B7' . " " . xl('Paper Size')),
3697 'B8' => ('B8' . " " . xl('Paper Size')),
3698 'B9' => ('B9' . " " . xl('Paper Size')),
3699 'B10' => ('B10' . " " . xl('Paper Size')),
3700 'C0' => ('C0' . " " . xl('Paper Size')),
3701 'C1' => ('C1' . " " . xl('Paper Size')),
3702 'C2' => ('C2' . " " . xl('Paper Size')),
3703 'C3' => ('C3' . " " . xl('Paper Size')),
3704 'C4' => ('C4' . " " . xl('Paper Size')),
3705 'C5' => ('C5' . " " . xl('Paper Size')),
3706 'C6' => ('C6' . " " . xl('Paper Size')),
3707 'C7' => ('C7' . " " . xl('Paper Size')),
3708 'C8' => ('C8' . " " . xl('Paper Size')),
3709 'C9' => ('C9' . " " . xl('Paper Size')),
3710 'C10' => ('C10' . " " . xl('Paper Size')),
3711 'RA0' => ('RA0' . " " . xl('Paper Size')),
3712 'RA1' => ('RA1' . " " . xl('Paper Size')),
3713 'RA2' => ('RA2' . " " . xl('Paper Size')),
3714 'RA3' => ('RA3' . " " . xl('Paper Size')),
3715 'RA4' => ('RA4' . " " . xl('Paper Size')),
3716 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3717 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3718 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3719 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3720 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3722 'LETTER',
3723 xl('Choose Paper Size')
3725 'pdf_left_margin' => array(
3726 xl('Left Margin (mm)'),
3727 'num',
3728 '5',
3729 xl('Left Margin (mm)')
3731 'pdf_right_margin' => array(
3732 xl('Right Margin (mm)'),
3733 'num',
3734 '5',
3735 xl('Right Margin (mm)')
3737 'pdf_top_margin' => array(
3738 xl('Top Margin (mm)'),
3739 'num',
3740 '5',
3741 xl('Top Margin (mm)')
3743 'pdf_bottom_margin' => array(
3744 xl('Bottom Margin (px)'),
3745 'num',
3746 '8',
3747 xl('Bottom Margin (px)')
3749 'pdf_output' => array(
3750 xl('Output Type'),
3751 array(
3752 'D' => xl('Download'),
3753 'I' => xl('Inline')
3755 'D', //defaut
3756 xl("Choose Download or Display Inline"),
3759 'chart_label_type' => array(
3760 xl('Patient Label Type'),
3761 array(
3762 '0' => xl('None'),
3763 '1' => '5160',
3764 '2' => '5161',
3765 '3' => '5162'
3767 '1', // default
3768 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3771 'barcode_label_type' => array(
3772 xl('Barcode Label Type'),
3773 array(
3774 '0' => xl('None'),
3775 '1' => 'std25',
3776 '2' => 'int25',
3777 '3' => 'ean8',
3778 '4' => 'ean13',
3779 '5' => 'upc',
3780 '6' => 'code11',
3781 '7' => 'code39',
3782 '8' => 'code93',
3783 '9' => 'code128',
3784 '10' => 'codabar',
3785 '11' => 'msi',
3786 '12' => 'datamatrix'
3788 '9', // default = None
3789 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3792 'addr_label_type' => array(
3793 xl('Print Patient Address Label'),
3794 'bool', // data type
3795 '1', // default = false
3796 xl('Select to print patient address labels from popups in left nav screen.')
3799 'env_x_width' => array(
3800 xl('Envelope Width in mm'),
3801 'num', // data type
3802 '104.775',
3803 xl('In Portrait mode, determines the width of the envelope along the x-axis in mm')
3806 'env_y_height' => array(
3807 xl('Envelope Height in mm'),
3808 'num', // data type
3809 '241.3',
3810 xl('In Portrait mode, determines the height of the envelope along the y-axis in mm')
3813 'env_font_size' => array(
3814 xl('Font Size in Pt'),
3815 'num', // data type
3816 '14',
3817 xl('Sets the font of the address text on the envelope in mm')
3820 'env_x_dist' => array(
3821 xl('Envelope x-axis starting pt'),
3822 'num', // data type
3823 '65',
3824 xl('Distance from the \'top\' of the envelope in mm')
3827 'env_y_dist' => array(
3828 xl('Envelope y-axis starting pt'),
3829 'num', // data type
3830 '220',
3831 xl('Distance from the right most edge of the envelope in portrait position in mm')
3837 if (!empty($GLOBALS['ippf_specific'])) {
3838 $GLOBALS['GLOBALS_METADATA']['IPPF Menu'] = array(
3840 'gbl_menu_stats_ippf' => array(
3841 xl('IPPF Statistics Reporting'),
3842 'bool', // data type
3843 '1', // default
3844 xl('IPPF statistical reports.')
3847 'gbl_menu_stats_gcac' => array(
3848 xl('GCAC Statistics Reporting'),
3849 'bool', // data type
3850 '0', // default
3851 xl('GCAC statistical reports.')
3854 'gbl_menu_stats_ma' => array(
3855 xl('MA Statistics Reporting'),
3856 'bool', // data type
3857 '1', // default
3858 xl('MA statistical reports.')
3861 'gbl_menu_stats_cyp' => array(
3862 xl('CYP Statistics Reporting'),
3863 'bool', // data type
3864 '1', // default
3865 xl('CYP statistical reports.')
3868 'gbl_menu_stats_daily' => array(
3869 xl('Daily Statistics Reporting'),
3870 'bool', // data type
3871 '0', // default
3872 xl('Daily statistical reports.')
3875 'gbl_menu_stats_c3' => array(
3876 xl('C3 Statistics Reporting'),
3877 'bool', // data type
3878 '0', // default
3879 xl('C3 statistical reports.')
3882 'gbl_menu_stats_cc' => array(
3883 xl('Cervical Cancer Reporting'),
3884 'bool', // data type
3885 '0', // default
3886 xl('Cervical cancer statistical reports.')
3889 'gbl_menu_stats_sinadi' => array(
3890 xl('SINADI Report'),
3891 'bool', // data type
3892 '0', // default
3893 xl('Uruguay SINADI statistical report.')
3896 'gbl_menu_visits_by_item' => array(
3897 xl('Visits by Item Report'),
3898 'bool', // data type
3899 '0', // default
3900 xl('Visits by Item Report.')
3903 'gbl_menu_acct_trans' => array(
3904 xl('Accounting Transactions Export'),
3905 'bool', // data type
3906 '0', // default
3907 xl('Accounting transactions export to CSV')
3910 'gbl_menu_projects' => array(
3911 xl('Restricted Projects Reporting'),
3912 'bool', // data type
3913 '0', // default
3914 xl('For IPPF Belize and maybe others')
3917 'gbl_menu_surinam_insurance' => array(
3918 xl('LOBI Insurers Report'),
3919 'bool', // data type
3920 '0', // default
3921 xl('For IPPF Suriname and maybe others')
3924 'gbl_menu_netsuite' => array(
3925 xl('NetSuite Reports'),
3926 'bool', // data type
3927 '0', // default
3928 xl('For NetSuite financial integration')
3931 'gbl_menu_ive_clients' => array(
3932 xl('IVE Client List'),
3933 'bool', // data type
3934 '0', // default
3935 xl('Client List of IVE Activity')
3938 'gbl_menu_shifts' => array(
3939 xl('Shifts Reporting'),
3940 'bool', // data type
3941 '0', // default
3942 xl('For IPPF Argentina and maybe others')
3945 'gbl_menu_service_and_client_volume' => array(
3946 xl('Service and Client Volume Report'),
3947 'bool', // data type
3948 '1', // default
3949 xl('Service and client volume report')
3953 $GLOBALS['GLOBALS_METADATA']['IPPF Features'] = array(
3955 'gbl_rapid_workflow' => array(
3956 xl('Rapid Workflow Option'),
3957 array(
3958 '0' => xl('None'),
3959 'LBFmsivd' => xl('MSI (requires LBFmsivd form)'),
3960 'fee_sheet' => xl('Fee Sheet and Checkout'),
3962 '0', // default
3963 xl('Activates custom work flow logic')
3966 'gbl_new_acceptor_policy' => array(
3967 xl('New Acceptor Policy'),
3968 array(
3969 '0' => xl('Not applicable'),
3970 '1' => xl('Simplified; Contraceptive Start Date on Tally Sheet'),
3971 '3' => xl('Contraception Form; Acceptors New to Modern Contraception'),
3973 '1', // default
3974 xl('Applicable only for family planning clinics')
3977 'gbl_min_max_months' => array(
3978 xl('Min/Max Inventory as Months'),
3979 'bool', // data type
3980 '1', // default = true
3981 xl('Min/max inventory is expressed as months of supply instead of units')
3984 'gbl_restrict_provider_facility' => array(
3985 xl('Restrict Providers by Facility'),
3986 'bool', // data type
3987 '0', // default
3988 xl('Limit service provider selection according to the facility of the logged-in user.')
3991 'gbl_checkout_line_adjustments' => array(
3992 xl('Adjustments at Checkout'),
3993 array(
3994 '0' => xl('Invoice Level Only'),
3995 '1' => xl('Line Items Only'),
3996 '2' => xl('Invoice and Line Levels'),
3998 '1', // default = line items only
3999 xl('Discounts at checkout time may be entered per invoice or per line item or both.')
4002 'gbl_checkout_charges' => array(
4003 xl('Unit Price in Checkout and Receipt'),
4004 'bool', // data type
4005 '0', // default = false
4006 xl('Include line item unit price amounts in checkout and receipts.')
4009 'gbl_charge_categories' => array(
4010 xl('Customers in Checkout and Receipt'),
4011 'bool', // data type
4012 '0', // default = false
4013 xl('Include Customers in checkout and receipts. See the Customers list.')
4016 'gbl_auto_create_rx' => array(
4017 xl('Automatically Create Prescriptions'),
4018 'bool', // data type
4019 '0', // default = false
4020 xl('Prescriptions may be created from the Fee Sheet.')
4023 'gbl_checkout_receipt_note' => array(
4024 xl('Checkout Receipt Note'),
4025 'text', // data type
4027 xl('This note goes on the bottom of every checkout receipt.')
4030 'gbl_custom_receipt' => array(
4031 xl('Custom Checkout Receipt'),
4032 array(
4033 '0' => xl('None'),
4034 'checkout_receipt_general.inc.php' => xl('POS Printer'),
4035 'checkout_receipt_panama.inc.php' => xl('Panama'),
4037 '0', // default
4038 xl('Present an additional PDF custom receipt after checkout.')
4041 'gbl_ma_ippf_code_restriction' => array(
4042 xl('Allow More than one MA/IPPF code mapping'),
4043 'bool', // data type
4044 '0', // default = false
4045 xl('Disable the restriction of only one IPPF code per MA code in superbill')
4048 'gbl_uruguay_asse_url' => array(
4049 xl('Uruguay ASSE URL'),
4050 'text', // data type
4052 xl('URL of ASSE SOAP server. Must be blank if not a Uruguay site. Enter "test" for dummy data.')
4055 'gbl_uruguay_asse_token' => array(
4056 xl('Uruguay ASSE Token'),
4057 'text', // data type
4059 xl('Token for connection to ASSE SOAP server')
4062 } // end if ippf_specific
4064 if (empty($skipGlobalEvent)) {
4065 $globalsInitEvent = new GlobalsInitializedEvent(new GlobalsService($GLOBALS_METADATA, $USER_SPECIFIC_GLOBALS, $USER_SPECIFIC_TABS));
4066 $globalsInitEvent = $GLOBALS["kernel"]->getEventDispatcher()->dispatch(GlobalsInitializedEvent::EVENT_HANDLE, $globalsInitEvent, 10);
4067 $globalsService = $globalsInitEvent->getGlobalsService()->save();