Fully responsive globals.php with vertical menu (#2460)
[openemr.git] / library / globals.inc.php
blob1654266ab7d3cdfa381023d3548428b6bf7038df
1 <?php
2 /*
3 * This program sets the global variables.
5 * @package OpenEMR
6 * @author Rod Roark <rod@sunsetsystems.com>
7 * @author Stephen Waite <stephen.waite@cmsvt.com>
8 * @copyright Copyright (c) 2015 Rod Roark <rod@sunsetsystems.com>
9 * @copyright Copyright (c) 2018 Stephen Waite <stephen.waite@cmsvt.com>
10 * @link https://github.com/openemr/openemr/tree/master
11 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
14 // $GLOBALS['print_command'] is the
15 // Print command for spooling to printers, used by statements.inc.php
16 // This is the command to be used for printing (without the filename).
17 // The word following "-P" should be the name of your printer. This
18 // example is designed for 8.5x11-inch paper with 1-inch margins,
19 // 10 CPI, 6 LPI, 65 columns, 54 lines per page.
21 // IF lpr services are installed on Windows this setting will be similar
22 // Otherwise configure it as needed (print /d:PRN) might be an option for Windows parallel printers
24 // Current supported languages: // Allow capture of term for translation:
25 // Albanian // xl('Albanian')
26 // Amharic // xl('Amharic')
27 // Arabic // xl('Arabic')
28 // Armenian // xl('Armenian')
29 // Bahasa Indonesia // xl('Bahasa Indonesia')
30 // Bengali // xl('Bengali')
31 // Bosnian // xl('Bosnian')
32 // Bulgarian // xl('Bulgarian')
33 // Chinese (Simplified) // xl('Chinese (Simplified)')
34 // Chinese (Traditional) // xl('Chinese (Traditional)')
35 // Croatian // xl('Croatian')
36 // Czech // xl('Czech')
37 // Danish // xl('Danish')
38 // Dutch // xl('Dutch')
39 // English (Indian) // xl('English (Indian)')
40 // English (Standard) // xl('English (Standard)')
41 // Estonian // xl('Estonian')
42 // Filipino // xl('Filipino')
43 // Finnish // xl('Finnish')
44 // French // xl('French (Standard)')
45 // French // xl('French (Canadian)')
46 // Georgian // xl('Georgian')
47 // German // xl('German')
48 // Greek // xl('Greek')
49 // Hebrew // xl('Hebrew')
50 // Hindi // xl('Hindi')
51 // Hungarian // xl('Hungarian')
52 // Italian // xl('Italian')
53 // Japanese // xl('Japanese')
54 // Korean // xl('Korean')
55 // Lithuanian // xl('Lithuanian')
56 // Marathi // xl('Marathi')
57 // Mongolian // xl('Mongolian')
58 // Norwegian // xl('Norwegian')
59 // Persian // xl('Persian')
60 // Polish // xl('Polish')
61 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
62 // Portuguese (European) // xl('Portuguese (European)')
63 // Romanian // xl('Romanian')
64 // Russian // xl('Russian')
65 // Serbian // xl('Serbian')
66 // Sinhala // xl('Sinhala')
67 // Slovak // xl('Slovak')
68 // Somali // xl('Somali')
69 // Spanish (Latin American) // xl('Spanish (Latin American)')
70 // Spanish (Spain) // xl('Spanish (Spain)')
71 // Swedish // xl('Swedish')
72 // Tamil // xl('Tamil')
73 // Telugu // xl('Telugu')
74 // Thai // xl('Thai')
75 // Turkish // xl('Turkish')
76 // Ukrainian // xl('Ukrainian')
77 // Urdu // xl('Urdu')
78 // Vietnamese // xl('Vietnamese')
80 // OS-dependent stuff.
81 if (stristr(PHP_OS, 'WIN')) {
82 // MS Windows
83 $mysql_bin_dir = 'C:/xampp/mysql/bin';
84 $perl_bin_dir = 'C:/xampp/perl/bin';
85 $temporary_files_dir = 'C:/windows/temp';
86 $backup_log_dir = 'C:/windows/temp';
87 } else {
88 // Everything else
89 $mysql_bin_dir = '/usr/bin';
90 $perl_bin_dir = '/usr/bin';
91 $temporary_files_dir = '/tmp';
92 $backup_log_dir = '/tmp';
95 // Language constant declarations:
96 // xl('Appearance')
97 // xl('Locale')
98 // xl('Features')
99 // xl('Calendar')
100 // xl('Security')
101 // xl('Notifications')
102 // xl('Miscellaneous')
104 // List of user specific tabs and globals
105 $USER_SPECIFIC_TABS = array('Appearance',
106 'Locale',
107 'Features',
108 'Billing',
109 'Report',
110 'Calendar',
111 'CDR',
112 'Connectors');
113 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
114 'default_second_tab',
115 'new_tabs_layout',
116 'theme_tabs_layout',
117 'css_header',
118 'vertical_responsive_menu',
119 'menu_styling_vertical',
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 'posting_adj_disable',
129 'messages_due_date',
130 'expand_form',
131 'ledger_begin_date',
132 'print_next_appointment_on_ledger',
133 'calendar_view_type',
134 'event_color',
135 'pat_trkr_timer',
136 'ptkr_visit_reason',
137 'ptkr_date_range',
138 'ptkr_start_date',
139 'ptkr_end_date',
140 'checkout_roll_off',
141 'patient_birthday_alert',
142 'patient_birthday_alert_manual_off',
143 'erx_import_status_message');
145 // Gets array of time zones supported by PHP.
147 function gblTimeZones()
149 $zones = timezone_identifiers_list();
150 $arr = array('' => xl('Unassigned'));
151 foreach ($zones as $zone) {
152 $arr[$zone] = str_replace('_', ' ', $zone);
155 return $arr;
158 $GLOBALS_METADATA = array(
160 // Appearance Tab
162 'Appearance' => array(
164 'default_top_pane' => array(
165 xl('Main Top Pane Screen(Or Default First Tab)'), // descriptive name
166 array(
167 'main_info.php' => xl('Calendar Screen'),
168 '../new/new.php' => xl('Patient Search/Add Screen'),
169 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
170 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
171 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen')
173 'main_info.php', // default = calendar
174 xl('Main Top Pane Screen(Or Default First Tab)')
177 'default_second_tab' => array(
178 xl('Default Second Tab'), // descriptive name
179 array(
180 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen'),
181 'main_info.php' => xl('Calendar Screen'),
182 '../new/new.php' => xl('Patient Search/Add Screen'),
183 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
184 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
186 '../../interface/main/messages/messages.php?form_active=1', // default = messages
187 xl('Default Second Tab')
190 'new_tabs_layout' => array(
191 xl('Layout').'*',
192 array(
193 '0' => xl('Frame'),
194 '1' => xl('Tabs'),
196 '1',
197 xl('Choose the layout (need to logout and then login to see this new setting).')
200 'theme_tabs_layout' => array(
201 xl('Tabs Layout Theme').'*',
202 'tabs_css',
203 'tabs_style_full.css',
204 xl('Theme of the tabs layout (need to logout and then login to see this new setting).')
207 'css_header' => array(
208 xl('General Theme') .'*',
209 'css',
210 'style_mauve.css',
211 xl('Pick a general theme (need to logout/login after changing this setting).')
214 'font-family' => array(
215 xl('Default font') .'*',
216 array(
217 '__default__' => 'Use Theme Font',
218 'Arial, Helvetica, sans-serif' => "Arial",
219 '"Arial Black", Gadget, sans-serif' => "Arial Black",
220 'Impact, Charcoal, sans-serif' => "Impact",
221 '"Lucida Sans Unicode", "Lucida Grande", sans-serif' => "Lucida Sans",
222 'Tahoma, Geneva, sans-serif' => "Tahoma",
223 '"Trebuchet MS", Helvetica, sans-serif' => "Trebuchet MS",
224 'Verdana, Geneva, sans-serif' => "Verdana",
225 'lato' => "Lato",
227 '__default__',
228 xl('Select the default font (need to logout/login after changing this setting).'),
231 'font-size' => array(
232 xl('Default font size').'*',
233 array(
234 '__default__' => 'Use Theme Font Size',
235 '10px' => '10px',
236 '12px' => '12px',
237 '14px' => '14px',
238 '16px' => '16px',
239 '18px' => '18px',
241 '__default__',
242 xl("Select the default font size (need to logout/login after changing this setting)."),
245 'vertical_responsive_menu' => array(
246 xl('Responsive Vertical Menu Style for Tabs') .'*' ,
247 array(
248 '736' => xl('iPhone 6/7/8 Plus') . " - 736 X 414" . xl('px'),
249 '740' => xl('Galaxy S9/S9 Plus') . " - 740 X 360" . xl('px'),
250 '812' => xl('iPhone X/XS') . " - 812 X 375" . xl('px'),
251 '896' => xl('iPhone XR/XS Max') . " - 896 X 414" . xl('px'),
252 '1024' => xl('iPad/iPad Mini, XGA') . " - 1024 X 768" . xl('px'),
253 '1112' => xl('iPad Pro 10.5 inches') . " - 1112 X 834" . xl('px'),
254 '1280' => xl('Kindle Fire HDX, Laptop MDPI , WXGA') . " - 1280 X 800" . xl('px'),
255 '1336' => xl('iPad Pro 12.5 inches') . " - 1336 X 1024" . xl('px'),
256 '1366' => xl('HD') . " - 1366 X 768" . xl('px'),
257 '1440' => xl('Laptop HiDPI, WXGA+') . " - 1440 X 900" . xl('px'),
258 '1600' => xl('HD+') . " - 1600 X 900" . xl('px'),
259 '1680' => xl('WSXGA+') . " - 1680 X 1050" . xl('px'),
260 '1920' => xl('FHD, WUXGA') . " - 1920 X 1080, 1920 X 1200" . xl('px'),
261 '2048' => xl('QWXGA') . " - 2048 X 1152" . xl('px'),
262 '2560' => xl('QHD') . " - 2560 X 1440" . xl('px'),
263 '3840' => xl('4K UHD') . " - 3840 X 2160" . xl('px'),
267 '1024', //default iPad/iPad mini
268 xl('Selecting the width for responsive vertical style menus in tab based layout (need to logout/login after changing this setting)')
271 'menu_styling_vertical' => array(
272 xl('Vertical Menu Style for Frames'),
273 array(
274 '0' => xl('Tree'),
275 '1' => xl('Sliding'),
277 '1',
278 xl('Vertical Menu Style for frame based layouts')
281 'default_encounter_view' => array(
282 xl('Default Encounter View'), // descriptive name
283 array(
284 '0' => xl('Clinical View'),
285 '1' => xl('Billing View'),
287 '0', // default = tree menu
288 xl('Choose your default encounter view')
291 'gbl_nav_area_width' => array(
292 xl('Navigation Area Width for Frames'),
293 'num',
294 '175',
295 xl('Width in pixels of the left navigation frame in frame based layout.')
298 'openemr_name' => array(
299 xl('Application Title'),
300 'text',
301 'OpenEMR',
302 xl('Application name for login page and main window title.')
305 'enable_group_therapy' => array(
306 xl('Enable Group Therapy'),
307 'bool', // data type
308 '0', // default = false
309 xl('Enables groups module in system.')
312 'full_new_patient_form' => array(
313 xl('New Patient Form'),
315 array(
316 '0' => xl('Old-style static form without search or duplication check'),
317 '1' => xl('All demographics fields, with search and duplication check'),
318 '2' => xl('Mandatory or specified fields only, search and dup check'),
319 '3' => xl('Mandatory or specified fields only, dup check, no search'),
320 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
322 '1', // default
323 xl('Style of form used for adding new patients')
326 'gbl_edit_patient_form' => array(
327 xl('Modify Patient Form'),
329 array(
330 '0' => xl('Standard check'),
331 '1' => xl('Zend Module check in addition to standard check')
333 '0', // default
334 xl('Validation mechanism for when modifying patient demographics.')
337 'patient_search_results_style' => array(
338 xl('Patient Search Results Style'),
339 array(
340 '0' => xl('Encounter statistics'),
341 '1' => xl('Mandatory and specified fields'),
343 '0', // default
344 xl('Type of columns displayed for patient search results')
347 'gbl_tall_nav_area' => array(
348 xl('Tall Navigation Area'),
349 'bool', // data type
350 '0', // default = false
351 xl('Navigation area uses full height of frameset')
354 'gbl_nav_visit_forms' => array(
355 xl('Navigation Area Visit Forms'),
356 'bool', // data type
357 '1', // default = true
358 xl('Navigation area includes encounter forms')
361 'simplified_demographics' => array(
362 xl('Simplified Demographics'),
363 'bool', // data type
364 '0', // default = false
365 xl('Omit insurance and some other things from the demographics form')
368 'simplified_prescriptions' => array(
369 xl('Simplified Prescriptions'),
370 'bool', // data type
371 '0', // default = false
372 xl('Omit form, route and interval which then become part of dosage')
375 'simplified_copay' => array(
376 xl('Simplified Co-Pay'),
377 'bool', // data type
378 '0', // default = false
379 xl('Omit method of payment from the co-pay panel')
382 'use_charges_panel' => array(
383 xl('Use Charges Panel'),
384 'bool', // data type
385 '0', // default = false
386 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
389 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
390 'enable_fees_in_left_menu' => array(
391 xl('Enable Fees Submenu'),
392 'bool', // data type
393 '1', // default = true
394 xl('Enable Fees Submenu')
396 'enable_batch_payment' => array(
397 xl('Enable Batch Payment'),
398 'bool', // data type
399 '1', // default = true
400 xl('Enable Batch Payment')
402 'enable_posting' => array(
403 xl('Enable Posting'),
404 'bool', // data type
405 '1', // default = true
406 xl('Enable Posting')
408 // EDI history 2012-09-13
409 'enable_edihistory_in_left_menu' => array(
410 xl('Enable EDI History'),
411 'bool', // data type
412 '1', // default = true
413 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
416 'online_support_link' => array(
417 xl('Online Support Link'),
418 'text', // data type
419 'http://open-emr.org/',
420 xl('URL for OpenEMR support.')
423 'support_phone_number' => array(
424 xl('Support Phone Number'),
425 'text',
427 xl('Phone Number for Vendor Support that Appears on the About Page.')
430 'encounter_page_size' => array(
431 xl('Encounter Page Size'),
432 array(
433 '0' => xl('Show All'),
434 '5' => '5',
435 '10' => '10',
436 '15' => '15',
437 '20' => '20',
438 '25' => '25',
439 '50' => '50',
441 '20',
442 xl('Number of encounters to display per page.')
445 'gbl_pt_list_page_size' => array(
446 xl('Patient List Page Size'),
447 array(
448 '10' => '10',
449 '25' => '25',
450 '50' => '50',
451 '100' => '100',
453 '10',
454 xl('Number of patients to display per page in the patient list.')
457 'gbl_pt_list_new_window' => array(
458 xl('Patient List New Window'),
459 'bool', // data type
460 '0', // default = false
461 xl('Default state of New Window checkbox in the patient list.')
464 'num_of_messages_displayed' => array(
465 xl('Number of Messages Displayed in Patient Summary'),
466 'num',
467 '3',
468 xl('This is the number of messages that will be displayed in the messages widget in the patient summary screen.')
471 'gbl_vitals_options' => array(
472 xl('Vitals Form Options'),
473 array(
474 '0' => xl('Standard'),
475 '1' => xl('Omit circumferences'),
477 '0', // default
478 xl('Special treatment for the Vitals form')
481 'insurance_information' => array(
482 xl('Show Additional Insurance Information'), // descriptive name
483 array(
484 '0' => xl('None'),
485 '1' => xl('Address Only'),
486 '2' => xl('Address and Postal Code'),
487 '3' => xl('Address and State'),
488 '4' => xl('Address, State and Postal Code'),
489 '5' => xl('Address, City, State and Postal Code'),
490 '6' => xl('Postal Code and Box Number')
492 '5', // default
493 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
496 'gb_how_sort_list' => array(
497 xl('How to sort a drop-lists'),
498 array(
499 '0' => xl('Sort by seq'),
500 '1' => xl('Sort alphabetically')
502 '0',
503 xl('What kind of sorting will be in the drop lists.')
506 'show_label_login' => array(
507 xl('Show Title on Login'),
508 'bool', // data type
509 '0', // default = false
510 xl('Show Title on Login')
513 'extra_logo_login' => array(
514 xl('Show Extra Logo on Login'),
515 'bool', // data type
516 '0', // default = false
517 xl('Show Extra Logo on Login')
520 'tiny_logo_1' => array(
521 xl('Show Mini Logo 1'),
522 'bool', // data type
523 '0', // default = false
524 xl('Show Mini Logo 1')
527 'tiny_logo_2' => array(
528 xl('Show Mini Logo 2'),
529 'bool', // data type
530 '0', // default = false
531 xl('Show Mini Logo 2')
536 // Locale Tab
538 'Locale' => array(
540 'language_default' => array(
541 xl('Default Language'),
542 'lang', // data type
543 'English (Standard)', // default = english
544 xl('Default language if no other is allowed or chosen.')
547 'language_menu_showall' => array(
548 xl('All Languages Allowed'),
549 'bool', // data type
550 '1', // default = true
551 xl('Allow all available languages as choices on menu at login.')
554 'language_menu_other' => array(
555 xl('Allowed Languages'),
556 'm_lang', // data type
557 '', // default = none
558 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
561 'allow_debug_language' => array(
562 xl('Allow Debugging Language'),
563 'bool', // data type
564 '1', // default = true during development and false for production releases
565 xl('This will allow selection of the debugging (\'dummy\') language.')
568 'translate_no_safe_apostrophe' => array(
569 xl('Do Not Use Safe Apostrophe'),
570 'bool', // data type
571 '0', // default = false
572 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)')
575 'translate_layout' => array(
576 xl('Translate Layouts'),
577 'bool', // data type
578 '1', // default = true
579 xl('Is text from form layouts to be translated?')
582 'translate_lists' => array(
583 xl('Translate Lists'),
584 'bool', // data type
585 '1', // default = true
586 xl('Is text from lists to be translated?')
589 'translate_gacl_groups' => array(
590 xl('Translate Access Control Groups'),
591 'bool', // data type
592 '1', // default = true
593 xl('Are access control group names to be translated?')
596 'translate_form_titles' => array(
597 xl('Translate Patient Note Titles'),
598 'bool', // data type
599 '1', // default = true
600 xl('Are patient note titles to be translated?')
603 'translate_document_categories' => array(
604 xl('Translate Document Categories'),
605 'bool', // data type
606 '1', // default = true
607 xl('Are document category names to be translated?')
610 'translate_appt_categories' => array(
611 xl('Translate Appointment Categories'),
612 'bool', // data type
613 '1', // default = true
614 xl('Are appointment category names to be translated?')
617 'units_of_measurement' => array(
618 xl('Units for Visit Forms'),
619 array(
620 '1' => xl('Show both US and metric (main unit is US)'),
621 '2' => xl('Show both US and metric (main unit is metric)'),
622 '3' => xl('Show US only'),
623 '4' => xl('Show metric only'),
625 '1', // default = Both/US
626 xl('Applies to the Vitals form and Growth Chart')
629 'us_weight_format' => array(
630 xl('Display Format for US Weights'),
631 array(
632 '1' => xl('Show pounds as decimal value'),
633 '2' => xl('Show pounds and ounces')
635 '1',
636 xl('Applies to Vitals form')
639 'phone_country_code' => array(
640 xl('Telephone Country Code'),
641 'num',
642 '1', // default = North America
643 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
646 'date_display_format' => array(
647 xl('Date Display Format'),
648 array(
649 '0' => xl('YYYY-MM-DD'),
650 '1' => xl('MM/DD/YYYY'),
651 '2' => xl('DD/MM/YYYY'),
653 '0',
654 xl('Format used to display most dates.')
657 'time_display_format' => array(
658 xl('Time Display Format'),
659 array(
660 '0' => xl('24 hr'),
661 '1' => xl('12 hr'),
663 '0',
664 xl('Format used to display most times.')
667 'gbl_time_zone' => array(
668 xl('Time Zone'),
669 gblTimeZones(),
671 xl('If unassigned will default to php.ini setting for date.timezone.')
674 'currency_decimals' => array(
675 xl('Currency Decimal Places'),
676 array(
677 '0' => xl('0'),
678 '1' => xl('1'),
679 '2' => xl('2'),
681 '2',
682 xl('Number of digits after decimal point for currency, usually 0 or 2.')
685 'currency_dec_point' => array(
686 xl('Currency Decimal Point Symbol'),
687 array(
688 '.' => xl('Period'),
689 ',' => xl('Comma'),
691 '.',
692 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
695 'currency_thousands_sep' => array(
696 xl('Currency Thousands Separator'),
697 array(
698 ',' => xl('Comma'),
699 '.' => xl('Period'),
700 ' ' => xl('Space'),
701 '' => xl('None'),
703 ',',
704 xl('Symbol used to separate thousands for currency.')
707 'gbl_currency_symbol' => array(
708 xl('Currency Designator'),
709 'text', // data type
710 '$', // default
711 xl('Code or symbol to indicate currency')
713 'age_display_format' => array(xl('Age Display Format'),
714 array(
715 '0' => xl('Years or months'),
716 '1' => xl('Years, months and days')
718 '0',
719 xl('Format for age display')
721 'age_display_limit' => array(
722 xl('Age in Years for Display Format Change'),
723 'num',
724 '3',
725 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
727 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
728 'weekend_days' => array(
729 xl('Your weekend days'),
730 array(
731 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
732 '0' => xl('Sunday'),
733 '5' => xl('Friday'),
734 '6' => xl('Saturday'),
735 '5,6' => xl('Friday') . ' - ' . xl('Saturday'),
737 '6,0'
738 , xl('which days are your weekend days?')
743 // Features Tab
745 'Features' => array(
747 'specific_application' => array(
748 xl('Specific Application'),
749 array(
750 '0' => xl('None'),
751 '2' => xl('IPPF'),
752 '3' => xl('Weight loss clinic'),
754 '0', // default
755 xl('Indicator for specialized usage')
758 'inhouse_pharmacy' => array(
759 xl('Drugs and Products'),
760 array(
761 '0' => xl('Do not inventory and sell any products'),
762 '1' => xl('Inventory and sell drugs only'),
763 '2' => xl('Inventory and sell both drugs and non-drug products'),
764 '3' => xl('Products but no prescription drugs and no templates'),
766 '0', // default
767 xl('Option to support inventory and sales of products')
770 'default_visit_category' => array(
771 xl('Default Visit Category'),
772 'default_visit_category',
773 '_blank',
774 xl('Define a default visit category'),
777 'disable_eligibility_log' => array(
778 xl('Disable Insurance Eligibility Reports Download'),
779 'bool',
780 '0',
781 xl('Do not allow insurance eligibility report log download')
784 'disable_chart_tracker' => array(
785 xl('Disable Chart Tracker'),
786 'bool', // data type
787 '0', // default = false
788 xl('Removes the Chart Tracker feature')
791 'disable_immunizations' => array(
792 xl('Disable Immunizations'),
793 'bool', // data type
794 '0', // default = false
795 xl('Removes support for immunizations')
798 'disable_prescriptions' => array(
799 xl('Disable Prescriptions'),
800 'bool', // data type
801 '0', // default = false
802 xl('Removes support for prescriptions')
805 'omit_employers' => array(
806 xl('Omit Employers'),
807 'bool', // data type
808 '0', // default = false
809 xl('Omit employer information in patient demographics')
812 'select_multi_providers' => array(
813 xl('Support Multi-Provider Events'),
814 'bool', // data type
815 '0', // default = false
816 xl('Support calendar events that apply to multiple providers')
819 'disable_non_default_groups' => array(
820 xl('Disable User Groups'),
821 'bool', // data type
822 '1', // default = true
823 xl('Normally this should be checked. Not related to access control.')
826 'ignore_pnotes_authorization' => array(
827 xl('Skip Authorization of Patient Notes'),
828 'bool', // data type
829 '1', // default = true
830 xl('Do not require patient notes to be authorized')
833 'support_encounter_claims' => array(
834 xl('Allow Encounter Claims'),
835 'bool', // data type
836 '0', // default = false
837 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
840 'advance_directives_warning' => array(
841 xl('Advance Directives Warning'),
842 'bool', // data type
843 '0', // default = false
844 xl('Display advance directives in the demographics page.')
847 'configuration_import_export' => array(
848 xl('Configuration Export/Import'),
849 'bool', // data type
850 '0', // default = false
851 xl('Support export/import of configuration data via the Backup page.')
854 'restrict_user_facility' => array(
855 xl('Restrict Users to Facilities'),
856 'bool', // data type
857 '0', // default
858 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
861 'set_facility_cookie' => array(
862 xl('Remember Selected Facility'),
863 'bool', // data type
864 '0', // default
865 xl('Set a facility cookie to remember the selected facility between logins.')
868 'login_into_facility' => array(
869 xl('Login Into Facility'),
870 'bool', // data type
871 '0', // default
872 xl('Select your current facility in the login page')
875 'receipts_by_provider' => array(
876 xl('Print Receipts by Provider'),
877 'bool',
878 '0', // default
879 xl('Causes Receipts to Print Encounter/Primary Provider Info')
882 'discount_by_money' => array(
883 xl('Discounts as Monetary Amounts'),
884 'bool', // data type
885 '1', // default = true
886 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
889 'gbl_visit_referral_source' => array(
890 xl('Referral Source for Encounters'),
891 'bool', // data type
892 '0', // default = false
893 xl('A referral source may be specified for each visit.')
896 'gbl_mask_patient_id' => array(
897 xl('Mask for Patient IDs'),
898 'text', // data type
899 '', // default
900 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
903 'gbl_mask_invoice_number' => array(
904 xl('Mask for Invoice Numbers'),
905 'text', // data type
906 '', // default
907 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
910 'gbl_mask_product_id' => array(
911 xl('Mask for Product IDs'),
912 'text', // data type
913 '', // default
914 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
917 'hide_billing_widget' => array(
918 xl('Hide Billing Widget'),
919 'bool', // data type
920 '0', // default = false
921 xl('This will hide the Billing Widget in the Patient Summary screen')
924 'force_billing_widget_open' => array(
925 xl('Force Billing Widget Open'),
926 'bool', // data type
927 '0', // default = false
928 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
931 'activate_ccr_ccd_report' => array(
932 xl('Activate CCR/CCD Reporting'),
933 'bool', // data type
934 '1', // default = true
935 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
938 'drive_encryption' => array(
939 xl('Enable Encryption of Items Stored on Drive'),
940 'bool', // data type
941 '1', // default = true
942 xl('This will enable enable encryption of items that are stored on the drive.')
945 'hide_document_encryption' => array(
946 xl('Hide Encryption/Decryption Options In Document Management'),
947 'bool', // data type
948 '0', // default = true
949 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
952 'use_custom_immun_list' => array(
953 xl('Use Custom Immunization List'),
954 'bool', // data type
955 '0', // default = true
956 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
959 'amendments' => array(
960 xl('Amendments'),
961 'bool', // data type
962 '1', // default = true
963 xl('Enable amendments feature')
966 'allow_pat_delete' => array(
967 xl('Allow Administrators to Delete Patients'),
968 'bool', // data type
969 '0', // default = false
970 xl('Allow Administrators to Delete Patients')
974 'observation_results_immunization' => array(
975 xl('Immunization Observation Results'),
976 'bool', // data type
977 '1', // default
978 xl('Observation Results in Immunization')
981 'enable_help' => array(
982 xl('Enable Help Modal'),
983 array(
984 '0' => xl('Hide Help Modal'),
985 '1' => xl('Show Help Modal'),
986 '2' => xl('Disable Help Modal'),
987 ), // data type
988 '1', // default = Print End of Day Report 1
989 xl('This will allow the display of help modal on help enabled pages')
991 'messages_due_date' => array(
992 xl('Messages - due date'),
993 'bool', // data type
994 '0', // default false
995 xl('Enables choose due date to message')
998 'expand_form' => array(
999 xl('Expand Form'),
1000 'bool', // data type
1001 '0', // default false
1002 xl('Open all expandable forms in expanded state')
1005 // Report Tab
1007 'Report' => array(
1009 'use_custom_daysheet' => array(
1010 xl('Use Custom End of Day Report'),
1011 array(
1012 '0' => xl('None'),
1013 '1' => xl('Print End of Day Report 1'),
1014 '2' => xl('Print End of Day Report 2'),
1015 '3' => xl('Print End of Day Report 3'),
1016 ), // data type
1017 '1', // default = Print End of Day Report 1
1018 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
1021 'daysheet_provider_totals' => array(
1022 xl('End of Day by Provider or allow Totals Only'),
1023 array(
1024 '0' => xl('Provider'),
1025 '1' => xl('Totals Only'),
1027 '1', // default
1028 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
1031 'ledger_begin_date' => array(
1032 xl('Beginning Date for Ledger Report'),
1033 array(
1034 'Y1' => xl('One Year Ago'),
1035 'Y2' => xl('Two Years Ago'),
1036 'M6' => xl('Six Months Ago'),
1037 'M3' => xl('Three Months Ago'),
1038 'M1' => xl('One Month Ago'),
1039 'D1' => xl('One Day Ago'),
1041 'Y1', // default = One Year
1042 xl('This is the Beginning date for the Ledger Report.')
1045 'print_next_appointment_on_ledger' => array(
1046 xl('Print the Next Appointment on the Bottom of the Ledger'),
1047 'bool', // data type
1048 '1', // default = true
1049 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
1052 'sales_report_invoice' => array(
1053 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
1054 array(
1055 '0' => xl('Invoice Number'),
1056 '1' => xl('Patient Name and ID'),
1057 '2' => xl('Patient Name and Invoice'),
1059 '2', // default = 2
1060 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
1063 'cash_receipts_report_invoice' => array(
1064 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
1065 array(
1066 '0' => xl('Invoice Number'),
1067 '1' => xl('Patient Name'),
1069 '0', // default = 0
1070 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
1075 // Billing Tab
1077 'Billing' => array(
1079 'ub04_support' => array(
1080 xl('Activate UB04/837I Claim Support'),
1081 'bool', // data type
1082 '0', // default = false
1083 xl('Allow institutional claims support.')
1086 'top_ubmargin_default' => array(
1087 xl('Default top print margin for UB04'),
1088 'num', // data type
1089 '14', // default
1090 xl('This is the default top print margin for UB04. It will adjust the final printed output up or down.')
1093 'left_ubmargin_default' => array(
1094 xl('Default left print margin for UB04'),
1095 'num', // data type
1096 '11', // default
1097 xl('This is the default left print margin for UB04. It will adjust the final printed output left or right.')
1100 'cms_top_margin_default' => array(
1101 xl('Default top print margin for CMS 1500'),
1102 'num', // data type
1103 '24', // default
1104 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
1107 'cms_left_margin_default' => array(
1108 xl('Default left print margin for CMS 1500'),
1109 'num', // data type
1110 '20', // default
1111 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
1114 'preprinted_cms_1500' => array(
1115 xl('Prints the CMS 1500 on the Preprinted form'),
1116 'bool', // data type
1117 '0', // default = false
1118 xl('Overlay CMS 1500 on the Preprinted form')
1121 'cms_1500_box_31_format' => array(
1122 xl('CMS 1500: Box 31 Format'),
1123 array(
1124 '0' => xl('Signature on File'),
1125 '1' => xl('Firstname Lastname'),
1126 '2' => xl('None'),
1128 '0', // default
1129 xl('This specifies whether to include date in Box 31.')
1132 'cms_1500_box_31_date' => array(
1133 xl('CMS 1500: Date in Box 31 (Signature)'),
1134 array(
1135 '0' => xl('None'),
1136 '1' => xl('Date of Service'),
1137 '2' => xl('Today'),
1139 '0', // default
1140 xl('This specifies whether to include date in Box 31.')
1143 'default_search_code_type' => array(
1144 xl('Default Search Code Type'),
1145 'all_code_types', // data type
1146 'ICD10', // default
1147 xl('The default code type to search for in the Fee Sheet.')
1150 'default_rendering_provider' => array(
1151 xl('Default Rendering Provider in Fee Sheet'),
1152 array(
1153 '0' => xl('Please Select'),
1154 '1' => xl('Current Provider'),
1155 '2' => xl('Current Logged in User'),
1157 '1',
1158 xl('Default selection for rendering provider in fee sheet.')
1161 'posting_adj_disable' => array(
1162 xl('Disable Auto Adjustment Calculations in EOB Posting'),
1163 'bool', // data type
1164 '0', // default = false
1165 xl('Turn off auto calculations of adjustments in EOB')
1168 'show_payment_history' => array(
1169 xl('Show all payment history in Patient Ledger'),
1170 'bool', // data type
1171 '1', // default = true
1172 xl('Turn on to show all payment history in Patient Ledger')
1175 'support_fee_sheet_line_item_provider' => array(
1176 xl('Support provider in line item in fee sheet'),
1177 'bool', // data type
1178 '0', // default = false
1179 xl('This Enables provider in line item in the fee sheet')
1182 'default_fee_sheet_line_item_provider' => array(
1183 xl('Default to a provider for line item in the fee sheet'),
1184 'bool', // data type
1185 '0', // default = false
1186 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1189 'replicate_justification' => array(
1190 xl('Automatically replicate justification codes in Fee Sheet'),
1191 'bool', // data type
1192 '0', // default = false
1193 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1196 'display_units_in_billing' => array(
1197 xl('Display the Units Column on the Billing Screen'),
1198 'bool', // data type
1199 '0', // default = false
1200 xl('Display the Units Column on the Billing Screen')
1203 'notes_to_display_in_Billing' => array(
1204 xl('Which notes are to be displayed in the Billing Screen'),
1205 array(
1206 '0' => xl('None'),
1207 '1' => xl('Encounter Billing Note'),
1208 '2' => xl('Patient Billing Note'),
1209 '3' => xl('All'),
1211 '3',
1212 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1215 'set_pos_code_encounter' => array(
1216 xl('Set POS code in encounter'),
1217 'bool', // data type
1218 '0', // default = false
1219 xl('This feature will allow the default POS facility code to be overridden from the encounter.')
1222 'statement_logo' => array(
1223 xl('Statement Logo GIF Filename'),
1224 'text', // data type
1225 'practice_logo.gif', // data type
1226 xl('Place your logo in sites/default/images and type the filename including gif extension here.')
1229 'use_custom_statement' => array(
1230 xl('Use Custom Statement'),
1231 'bool', // data type
1232 '0', // default = false
1233 xl('This will use the custom Statement showing the description instead of the codes.')
1236 'statement_appearance' => array(
1237 xl('Statement Appearance'),
1238 array(
1239 '0' => xl('Plain Text'),
1240 '1' => xl('Modern/images')
1241 ), // data type
1242 '1', // default = true
1243 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1246 'billing_phone_number' => array(
1247 xl('Custom Billing Phone Number'),
1248 'text', // data type
1250 xl('Phone number for billing inquiries')
1253 'show_aging_on_custom_statement' => array(
1254 xl('Show Aging on Custom Statement'),
1255 'bool', // data type
1256 '0', // default = false
1257 xl('This will Show Aging on the custom Statement.')
1260 'use_statement_print_exclusion' => array(
1261 xl('Allow Statement Exclusions from Printing'),
1262 'bool', // data type
1263 '0', // default = false
1264 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1267 'minimum_amount_to_print' => array(
1268 xl('Total Minimum Amount of Statement to Allow Printing'),
1269 'num', // data type
1270 '1.00',
1271 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1274 'statement_bill_note_print' => array(
1275 xl('Print Patient Billing Note'),
1276 'bool', // data type
1277 '0', // default = false
1278 xl('This will allow printing of the Patient Billing Note on the statements.')
1281 'number_appointments_on_statement' => array(
1282 xl('Number of Appointments on Statement'),
1283 'num', // data type
1284 '0', // default = 0
1285 xl('The Number of Future Appointments to Display on the Statement.')
1288 'statement_message_to_patient' => array(
1289 xl('Print Custom Message'),
1290 'bool', // data type
1291 '0', // default = false
1292 xl('This will allow printing of a custom Message on the statements.')
1295 'statement_msg_text' => array(
1296 xl('Custom Statement message'),
1297 'text', // data type
1299 xl('Text for Custom statement message.')
1302 'use_dunning_message' => array(
1303 xl('Use Custom Dunning Messages'),
1304 'bool', // data type
1305 '0', // default = false
1306 xl('This will allow use of the custom Dunning Messages on the statements.')
1309 'first_dun_msg_set' => array(
1310 xl('Number of days before showing first account message'),
1311 'num', // data type
1312 '30',
1313 xl('Number of days before showing first account message.')
1316 'first_dun_msg_text' => array(
1317 xl('First account message'),
1318 'text', // data type
1320 xl('Text for first account message.')
1323 'second_dun_msg_set' => array(
1324 xl('Number of days before showing second account message'),
1325 'num', // data type
1326 '60',
1327 xl('Number of days before showing second account message')
1330 'second_dun_msg_text' => array(
1331 xl('Second account message'),
1332 'text', // data type
1334 xl('Text for second account message.')
1337 'third_dun_msg_set' => array(
1338 xl('Number of days before showing third account message'),
1339 'num', // data type
1340 '90',
1341 xl('Number of days before showing third account message')
1344 'third_dun_msg_text' => array(
1345 xl('Third account message'),
1346 'text', // data type
1348 xl('Text for third account message.')
1351 'fourth_dun_msg_set' => array(
1352 xl('Number of days before showing fourth account message'),
1353 'num', // data type
1354 '120',
1355 xl('Number of days before showing fourth account message')
1358 'fourth_dun_msg_text' => array(
1359 xl('Fourth account message'),
1360 'text', // data type
1362 xl('Text for fourth account message.')
1365 'fifth_dun_msg_set' => array(
1366 xl('Number of days before showing fifth account message'),
1367 'num', // data type
1368 '150',
1369 xl('Number of days before showing fifth account message')
1372 'fifth_dun_msg_text' => array(
1373 xl('Fifth account message'),
1374 'text', // data type
1376 xl('Text for fifth account message.')
1379 'save_codes_history' => array(
1380 xl('Save codes history'),
1381 'bool', // data type
1382 '1', // default
1383 xl('Save codes history')
1386 'update_mbi' => array(
1387 xl('Update policy number from ERA'),
1388 'bool', // data type
1389 '0', // default
1390 xl('Update policy number from ERA')
1394 // E-Sign Tab
1396 'E-Sign' => array(
1398 'esign_all' => array(
1399 xl('Allows E-Sign on the entire encounter'),
1400 'bool', // data type
1401 '0', // default = false
1402 xl('This will enable signing an entire encounter, rather than individual forms')
1405 'lock_esign_all' => array(
1406 xl('Lock e-signed encounters and their forms'),
1407 'bool', // data type
1408 '0', // default = false
1409 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1412 'esign_individual' => array(
1413 xl('Allows E-Signing Individual Forms'),
1414 'bool', // data type
1415 '1', // default = false
1416 xl('This will enable signing individual forms separately')
1419 'lock_esign_individual' => array(
1420 xl('Lock an e-signed form individually'),
1421 'bool', // data type
1422 '1', // default = false
1423 xl('This will disable the Edit button on any form that is e-signed')
1426 'esign_lock_toggle' => array(
1427 xl('Enable lock toggle'),
1428 'bool', // data type
1429 '0', // default = false
1430 xl('This will give the user the option to lock (separate locking and signing)')
1433 'esign_report_hide_empty_sig' => array(
1434 xl('Hide Empty E-Sign Logs On Report'),
1435 'bool', // data type
1436 '1', // default = false
1437 xl('This will hide empty e-sign logs on the patient report')
1441 //Documents Tab
1442 'Documents' => array(
1444 'document_storage_method' => array(
1445 xl('Document Storage Method'),
1446 array(
1447 '0' => xl('Hard Disk'),
1448 '1' => xl('CouchDB')
1450 '0', // default
1451 xl('Option to save method of document storage.')
1454 'couchdb_host' => array(
1455 xl('CouchDB HostName'),
1456 'text',
1457 'localhost',
1458 xl('CouchDB host'),
1460 'couchdb_user' => array(
1461 xl('CouchDB UserName'),
1462 'text',
1464 xl('Username to connect to CouchDB'),
1466 'couchdb_pass' => array(
1467 xl('CouchDB Password'),
1468 'encrypted', // data type
1470 xl('Password to connect to CouchDB'),
1472 'couchdb_port' => array(
1473 xl('CouchDB Port'),
1474 'text',
1475 '5984',
1476 xl('CouchDB port'),
1478 'couchdb_dbase' => array(
1479 xl('CouchDB Database'),
1480 'text',
1482 xl('CouchDB database name'),
1484 'couchdb_log' => array(
1485 xl('CouchDB Log Enable'),
1486 'bool',
1487 '0',
1488 xl('Enable log for document uploads/downloads to CouchDB'),
1491 'expand_document_tree' => array(
1492 xl('Expand All Document Categories'),
1493 'bool', // data type
1494 '0', // default = false
1495 xl('Expand All Document Categories by Default')
1498 'patient_id_category_name' => array(
1499 xl('Patient ID Category Name'),
1500 'text', // data type
1501 'Patient ID card', // default
1502 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1505 'patient_photo_category_name' => array(
1506 xl('Patient Photo Category Name'),
1507 'text', // data type
1508 'Patient Photograph', // default
1509 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1512 'lab_results_category_name' => array(
1513 xl('Lab Results Category Name'),
1514 'text', // data type
1515 'Lab Report', // default
1516 xl('Document category name for storage of electronically received lab results.')
1519 'gbl_mdm_category_name' => array(
1520 xl('MDM Document Category Name'),
1521 'text', // data type
1522 'Lab Report', // default
1523 xl('Document category name for storage of electronically received MDM documents.')
1525 'generate_doc_thumb' => array(
1526 xl('Generate thumbnail'),
1527 'bool',
1528 '0',
1529 xl('Generate thumbnail images'),
1531 'thumb_doc_max_size' => array(
1532 xl('Thumbnail size'),
1533 'text', // data type
1534 '100', // default
1535 xl('Maximum size of thumbnail file')
1539 // Calendar Tab
1541 'Calendar' => array(
1543 'disable_calendar' => array(
1544 xl('Disable Calendar'),
1545 'bool', // data type
1546 '0', // default
1547 xl('Do not display the calendar.')
1550 'schedule_start' => array(
1551 xl('Calendar Starting Hour'),
1552 'hour',
1553 '8', // default
1554 xl('Beginning hour of day for calendar events.')
1557 'schedule_end' => array(
1558 xl('Calendar Ending Hour'),
1559 'hour',
1560 '17', // default
1561 xl('Ending hour of day for calendar events.')
1564 'calendar_interval' => array(
1565 xl('Calendar Interval'),
1566 array(
1567 '5' => '5',
1568 '10' => '10',
1569 '15' => '15',
1570 '20' => '20',
1571 '30' => '30',
1572 '60' => '60',
1574 '15', // default
1575 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1578 'calendar_view_type' => array(
1579 xl('Default Calendar View'),
1580 array(
1581 'day' => xl('Day'),
1582 'week' => xl('Week'),
1583 'month' => xl('Month'),
1585 'day', // default
1586 xl('This sets the Default Calendar View, Default is Day.')
1589 'first_day_week' => array(
1590 xl('First day in the week'),
1591 array(
1592 '1' => xl('Monday'),
1593 '0' => xl('Sunday'),
1594 '6' => xl('Saturday')
1596 '1',
1597 xl('Your first day of the week.')
1600 'calendar_appt_style' => array(
1601 xl('Appointment Display Style'),
1602 array(
1603 '1' => xl('Last name'),
1604 '2' => xl('Last name, first name'),
1605 '3' => xl('Last name, first name (title)'),
1606 '4' => xl('Last name, first name (title: comments)'),
1608 '2', // default
1609 xl('This determines how appointments display on the calendar.')
1612 'event_color' => array(
1613 xl('Appointment/Event Color'),
1614 array(
1615 '1' => xl('Category Color Schema'),
1616 '2' => xl('Facility Color Schema'),
1617 ), // data type
1618 '1', // default
1619 xl('This determines which color schema used for appointment')
1622 'number_of_appts_to_show' => array(
1623 xl('Appointments - Patient Summary - Number to Display'),
1624 'num',
1625 '10',
1626 xl('Number of Appointments to display in the Patient Summary')
1629 'number_of_group_appts_to_show' => array(
1630 xl('Appointments - Group Summary - Number to Display'),
1631 'num',
1632 '10',
1633 xl('Number of Appointments to display in the Group Summary')
1636 'number_of_ex_appts_to_show' => array(
1637 xl('Excluded Appointments - Tooltip - Number to Display'),
1638 'num',
1639 '15',
1640 xl('Number of Excluded Appointments to display in the Tooltip')
1643 'appt_display_sets_option' => array(
1644 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1645 'bool', // data type
1646 '1', // default
1647 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1650 'appt_display_sets_color_1' => array(
1651 xl('Appointment Display Sets - Color 1'),
1652 'color_code',
1653 '#FFFFFF',
1654 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).')
1657 'appt_display_sets_color_2' => array(
1658 xl('Appointment Display Sets - Color 2'),
1659 'color_code',
1660 '#E6E6FF',
1661 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).')
1664 'appt_display_sets_color_3' => array(
1665 xl('Appointment Display Sets - Color 3'),
1666 'color_code',
1667 '#E6FFE6',
1668 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1671 'appt_display_sets_color_4' => array(
1672 xl('Appointment Display Sets - Color 4'),
1673 'color_code',
1674 '#FFE6FF',
1675 xl('Color for the last set when not all member appointments are displayed.')
1678 'appt_recurrences_widget' => array(
1679 xl('Recurrent Appointment Display Widget'),
1680 'bool', // data type
1681 '1', // default
1682 xl('Display the recurrent appointment widget in the patient summary.')
1685 'num_past_appointments_to_show' => array(
1686 xl('Past Appointment Display Widget'),
1687 'num', // data type
1688 '0', // default = false
1689 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)')
1692 'docs_see_entire_calendar' => array(
1693 xl('Providers See Entire Calendar'),
1694 'bool', // data type
1695 '0', // default
1696 xl('Check this if you want providers to see all appointments by default and not just their own.')
1699 'auto_create_new_encounters' => array(
1700 xl('Auto-Create New Encounters'),
1701 array(
1702 '0' => xl('Off'),
1703 '1' => xl('One Encounter Per Day'),
1704 '2' => xl('Allow Encounter For Each Appointment')
1706 '1',
1707 xl('Automatically create a new encounter when an appointment check in status is selected.') . " " .
1708 xl('The Each Appointment option will allow a new encounter regardless of same day visit.') . " " .
1709 xl('The appointment status changes and encounter creations are managed through the Patient Tracker.')
1712 'allow_early_check_in' => array(
1713 xl('Allow Early Check In'),
1714 'bool', // data type
1715 '1', // default
1716 xl("Allow Check In before the appointment's time.")
1719 'submit_changes_for_all_appts_at_once' => array(
1720 xl('Submit Changes For All Appts At Once'),
1721 'bool', // data type
1722 '1', // default
1723 xl('Enables to submit changes for all appointments of a recurrence at once.')
1726 'disable_pat_trkr' => array(
1727 xl('Flow Board: Disable'),
1728 'bool', // data type
1729 '0', // default
1730 xl('Completely remove the ability to display the Patient Flow Board.')
1733 'ptkr_visit_reason' => array(
1734 xl('Flow Board: Show Visit Reason'),
1735 'bool', // data type
1736 '0', // default = false
1737 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1740 'ptkr_show_pid' => array(
1741 xl('Flow Board: Show Patient ID'),
1742 'bool', // data type
1743 '1', // default = true
1744 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1747 'ptkr_show_encounter' => array(
1748 xl('Flow Board: Show Encounter Number'),
1749 'bool', // data type
1750 '1', // default = true
1751 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1754 'ptkr_show_staff' => array(
1755 xl('Flow Board: Show Staff Action'),
1756 'bool', // data type
1757 '1', // default = true
1758 xl('When Checked, Last Staff to Update Board Will Show in Patient Flow Board.')
1761 'ptkr_date_range' => array(
1762 xl('Flow Board: Allow Date Range'),
1763 'bool', // data type
1764 '1', // default = true
1765 xl('This Allows a Date Range to be Selected in Patient Flow Board.')
1768 'ptkr_start_date'=> array(
1769 xl('Flow Board: Default Starting Date'),
1770 array(
1771 'D0' => xl('Current Day'),
1772 'B0' => xl('Beginning of Current Work Week'),
1774 'D0', // default = Current Day
1775 xl('This is the default Beginning date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1778 'ptkr_end_date' => array(
1779 xl('Flow Board: Default Ending Date'),
1780 array(
1781 'Y1' => xl('One Year Ahead'),
1782 'Y2' => xl('Two Years Ahead'),
1783 'M6' => xl('Six Months Ahead'),
1784 'M3' => xl('Three Months Ahead'),
1785 'M1' => xl('One Month Ahead'),
1786 'D7' => xl('One Week Ahead'),
1787 'D1' => xl('One Day Ahead'),
1788 'D0' => xl('Current Day'),
1790 'D0', // default = One Day Ahead
1791 xl('This is the default Ending date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1794 'pat_trkr_timer' => array(
1795 xl('Flow Board: Timer Refresh Interval'),
1796 array(
1797 '0' => xl('No automatic refresh'),
1798 '0:10' => '10',
1799 '0:20' => '20',
1800 '0:30' => '30',
1801 '0:40' => '40',
1802 '0:50' => '50',
1803 '0:59' => '60',
1805 '0:20', // default
1806 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1809 'checkout_roll_off' => array(
1810 xl('Flow Board: display completed checkouts (minutes)'),
1811 'num',
1812 '0', // default
1813 xl('Flow Board will only display completed checkouts for this many minutes. Zero is continuous display.')
1816 'drug_screen' => array(
1817 xl('Flow Board: Enable Random Drug Testing'),
1818 'bool', // data type
1819 '0', // default
1820 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1823 'drug_testing_percentage' => array(
1824 xl('Flow Board: Percentage of Patients to Drug Test'),
1825 'num',
1826 '33', // default
1827 xl('Percentage of Patients to select for Random Drug Testing.')
1830 'maximum_drug_test_yearly' => array(
1831 xl('Flow Board: Max tests per Patient per year'),
1832 'num',
1833 '0', // default
1834 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1837 'disable_rcb' => array(
1838 xl('Recall Board: Disable'),
1839 'bool', // data type
1840 '0', // default
1841 xl('Do not display the Recall Board.')
1849 // Security Tab
1851 'Security' => array(
1852 'sql_string_no_show_screen' => array(
1853 xl('Mode - Do Not Show SQL Queries'),
1854 'bool', // data type
1855 '0', // default
1856 xl('Do not allow SQL queries to be outputted to screen.')
1858 'timeout' => array(
1859 xl('Idle Session Timeout Seconds'),
1860 'num', // data type
1861 '7200', // default
1862 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1864 'secure_upload' => array(
1865 xl('Secure Upload Files with White List'),
1866 'bool', // data type
1867 '1', // default
1868 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1870 'secure_password' => array(
1871 xl('Require Strong Passwords'),
1872 'bool', // data type
1873 '0', // default
1874 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1876 'password_history' => array(
1877 xl('Require Unique Passwords'),
1878 'bool', // data type
1879 '0', // default
1880 xl('Means none of last three passwords are allowed when changing a password.')
1882 'password_compatibility' => array(
1883 xl('Permit unsalted passwords'),
1884 'bool', // data type
1885 '1', // default
1886 xl('After migration from the old password mechanisms where passwords are stored in the users table without salt is complete, this flag should be set to false so that only authentication by the new method is possible')
1889 'password_expiration_days' => array(
1890 xl('Default Password Expiration Days'),
1891 'num', // data type
1892 '0', // default
1893 xl('Default password expiration period in days. 0 means this feature is disabled.')
1896 'password_grace_time' => array(
1897 xl('Password Expiration Grace Period'),
1898 'num', // data type
1899 '0', // default
1900 xl('Period in days where a user may login with an expired password.')
1903 'password_max_failed_logins' => array(
1904 xl('Maximum Failed Login Attempts'),
1905 'num', // data type
1906 '0', // default
1907 xl('Maximum Failed Login Attempts (0 for no maximum).')
1910 'is_client_ssl_enabled' => array(
1911 xl('Enable Client SSL'),
1912 'bool', // data type
1913 '0', // default
1914 xl('Enable client SSL certificate authentication.')
1917 'certificate_authority_crt' => array(
1918 xl('Path to CA Certificate File'),
1919 'text', // data type
1920 '', // default
1921 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1924 'certificate_authority_key' => array(
1925 xl('Path to CA Key File'),
1926 'text', // data type
1927 '', // default
1928 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1931 'client_certificate_valid_in_days' => array(
1932 xl('Client Certificate Expiration Days'),
1933 'num', // data type
1934 '365', // default
1935 xl('Number of days that the client certificate is valid.')
1938 'Emergency_Login_email_id' => array(
1939 xl('Emergency Login Email Address'),
1940 'text', // data type
1941 '', // default
1942 xl('Email address, if any, to receive emergency login user activation messages.')
1945 'new_validate' => array(
1946 xl('New form validation'),
1947 'bool',
1948 '1',
1949 xl('New form validation')
1952 'allow_multiple_databases' => array(
1953 xl('Allow multiple databases'),
1954 'bool',
1955 '0',
1956 xl('Allow to use with multiple database')
1959 'safe_key_database' => array(
1960 xl('Safe key database'),
1961 'text', // data type
1962 '', // default
1963 xl('Key for multiple database credentials encryption')
1966 'use_active_directory' => array(
1967 xl('Use Active Directory'),
1968 'bool',
1969 '0',
1970 xl('If enabled, uses the specified active directory for login and authentication.')
1973 'account_suffix' => array(
1974 xl('Active Directory - Suffix Of Account'),
1975 'text',
1977 xl('The suffix of the account.')
1980 'base_dn' => array(
1981 xl('Active Directory - Domains Base'),
1982 'text',
1984 xl('Users is the standard windows CN, replace the DC stuff with your domain.')
1987 'domain_controllers' => array(
1988 xl('Active Directory - Domains Controllers'),
1989 'text',
1991 xl('The IP address of your domain controller(s).')
1996 // Notifications Tab
1998 'Notifications' => array(
2000 'patient_reminder_sender_name' => array(
2001 xl('Patient Reminder Sender Name'),
2002 'text', // data type
2003 '', // default
2004 xl('Name of the sender for patient reminders.')
2007 'patient_reminder_sender_email' => array(
2008 xl('Patient Reminder Sender Email'),
2009 'text', // data type
2010 '', // default
2011 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.')
2014 'practice_return_email_path' => array(
2015 xl('Notification Email Address'),
2016 'text', // data type
2017 '', // default
2018 xl('Email address, if any, to receive administrative notifications.')
2021 'EMAIL_METHOD' => array(
2022 xl('Email Transport Method'),
2023 array(
2024 'PHPMAIL' => 'PHPMAIL',
2025 'SENDMAIL' => 'SENDMAIL',
2026 'SMTP' => 'SMTP',
2028 'SMTP', // default
2029 xl('Method for sending outgoing email.')
2032 'SMTP_HOST' => array(
2033 xl('SMTP Server Hostname'),
2034 'text', // data type
2035 'localhost', // default
2036 xl('If SMTP is used, the server`s hostname or IP address.')
2039 'SMTP_PORT' => array(
2040 xl('SMTP Server Port Number'),
2041 'num', // data type
2042 '25', // default
2043 xl('If SMTP is used, the server`s TCP port number (usually 25).')
2046 'SMTP_USER' => array(
2047 xl('SMTP User for Authentication'),
2048 'text', // data type
2049 '', // default
2050 xl('Must be empty if SMTP authentication is not used.')
2053 'SMTP_PASS' => array(
2054 xl('SMTP Password for Authentication'),
2055 'encrypted', // data type
2056 '', // default
2057 xl('Must be empty if SMTP authentication is not used.')
2060 'SMTP_SECURE' => array(
2061 xl('SMTP Security Protocol'),
2062 array(
2063 '' => xl('None'),
2064 'ssl' => 'SSL',
2065 'tls' => 'TLS'
2068 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
2071 'EMAIL_NOTIFICATION_HOUR' => array(
2072 xl('Email Notification Hours'),
2073 'num', // data type
2074 '50', // default
2075 xl('Number of hours in advance to send email notifications.')
2078 'SMS_NOTIFICATION_HOUR' => array(
2079 xl('SMS Notification Hours'),
2080 'num', // data type
2081 '50', // default
2082 xl('Number of hours in advance to send SMS notifications.')
2085 'SMS_GATEWAY_USENAME' => array(
2086 xl('SMS Gateway Username'),
2087 'text', // data type
2088 '', // default
2089 xl('Username for SMS Gateway.')
2092 'SMS_GATEWAY_PASSWORD' => array(
2093 xl('SMS Gateway Password'),
2094 'text', // data type
2095 '', // default
2096 xl('Password for SMS Gateway.')
2099 'SMS_GATEWAY_APIKEY' => array(
2100 xl('SMS Gateway API Key'),
2101 'text', // data type
2102 '', // default
2103 xl('API key for SMS Gateway.')
2106 'phone_notification_hour' => array(
2107 xl('Phone Notification Hour'),
2108 'num', // data type
2109 '50', // default
2110 xl('Number of hours in advance to send Phone notification.')
2113 'phone_gateway_username' => array(
2114 xl('Phone Gateway Username'),
2115 'text', // data type
2116 '', // default
2117 xl('Username for Phone Gateway.')
2120 'phone_gateway_password' => array(
2121 xl('Phone Gateway Password'),
2122 'encrypted', // data type
2123 '', // default
2124 xl('Password for Phone Gateway.')
2127 'phone_gateway_url' => array(
2128 xl('Phone Gateway URL'),
2129 'text', // data type
2130 '', // default
2131 xl('URL for Phone Gateway.')
2136 // CDR (Clinical Decision Rules)
2138 'CDR' => array(
2140 'enable_cdr' => array(
2141 xl('Enable Clinical Decisions Rules (CDR)'),
2142 'bool', // data type
2143 '1', // default
2144 xl('Enable Clinical Decisions Rules (CDR)')
2147 'enable_allergy_check' => array(
2148 xl('Enable Allergy Check'),
2149 'bool', // data type
2150 '1', // default
2151 xl('Enable Allergy Check Against Medications and Prescriptions')
2154 'enable_alert_log' => array(
2155 xl('Enable Alert Log'),
2156 'bool', // data type
2157 '1', // default
2158 xl('Enable Alert Logging')
2161 'enable_cdr_new_crp' => array(
2162 xl('Enable Clinical Passive New Reminder(s) Popup'),
2163 'bool', // data type
2164 '1', // default
2165 xl('Enable Clinical Passive New Reminder(s) Popup')
2168 'enable_cdr_crw' => array(
2169 xl('Enable Clinical Passive Reminder Widget'),
2170 'bool', // data type
2171 '1', // default
2172 xl('Enable Clinical Passive Reminder Widget')
2175 'enable_cdr_crp' => array(
2176 xl('Enable Clinical Active Reminder Popup'),
2177 'bool', // data type
2178 '1', // default
2179 xl('Enable Clinical Active Reminder Popup')
2182 'enable_cdr_prw' => array(
2183 xl('Enable Patient Reminder Widget'),
2184 'bool', // data type
2185 '1', // default
2186 xl('Enable Patient Reminder Widget')
2189 'enable_cqm' => array(
2190 xl('Enable CQM Reporting'),
2191 'bool', // data type
2192 '1', // default
2193 xl('Enable Clinical Quality Measure (CQM) Reporting')
2196 'pqri_registry_name' => array(
2197 xl('PQRI Registry Name'),
2198 'text', // data type
2199 'Model Registry', // default
2200 xl('PQRI Registry Name')
2203 'pqri_registry_id' => array(
2204 xl('PQRI Registry ID'),
2205 'text', // data type
2206 '125789123', // default
2207 xl('PQRI Registry ID')
2210 'enable_amc' => array(
2211 xl('Enable AMC Reporting'),
2212 'bool', // data type
2213 '1', // default
2214 xl('Enable Automated Measure Calculations (AMC) Reporting')
2217 'enable_amc_prompting' => array(
2218 xl('Enable AMC Prompting'),
2219 'bool', // data type
2220 '1', // default
2221 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
2224 'enable_amc_tracking' => array(
2225 xl('Enable AMC Tracking'),
2226 'bool', // data type
2227 '1', // default
2228 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
2231 'cdr_report_nice' => array(
2232 xl('CDR Reports Processing Priority'),
2233 array(
2234 '' => xl('Default Priority'),
2235 '5' => xl('Moderate Priority'),
2236 '10' => xl('Moderate/Low Priority'),
2237 '15' => xl('Low Priority'),
2238 '20' => xl('Lowest Priority')
2240 '', // default
2241 xl('Set processing priority for CDR engine based reports.')
2244 'pat_rem_clin_nice' => array(
2245 xl('Patient Reminder Creation Processing Priority'),
2246 array(
2247 '' => xl('Default Priority'),
2248 '5' => xl('Moderate Priority'),
2249 '10' => xl('Moderate/Low Priority'),
2250 '15' => xl('Low Priority'),
2251 '20' => xl('Lowest Priority')
2253 '', // default
2254 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2257 'report_itemizing_standard' => array(
2258 xl('Enable Standard Report Itemization'),
2259 'bool', // data type
2260 '1', // default
2261 xl('Enable Itemization of Standard Clinical Rules Reports')
2264 'report_itemizing_cqm' => array(
2265 xl('Enable CQM Report Itemization'),
2266 'bool', // data type
2267 '1', // default
2268 xl('Enable Itemization of CQM Reports')
2271 'report_itemizing_amc' => array(
2272 xl('Enable AMC Report Itemization'),
2273 'bool', // data type
2274 '1', // default
2275 xl('Enable Itemization of AMC Reports')
2277 'dated_reminders_max_alerts_to_show' => array(
2278 xl('Dated reminders maximum alerts to show'),
2279 'num', // data type
2280 '5', // default
2281 xl('Dated reminders maximum alerts to show')
2283 'patient_birthday_alert' => array(
2284 xl('Alert on patient birthday'),
2285 array(
2286 '0' => xl('No alert'),
2287 '1' => xl('Alert only on birthday'),
2288 '2' => xl('Alert on and after birthday'),
2289 '3' => xl('Alert on and up to 28 days after birthday')
2291 '1', // default
2292 xl('Alert on patient birthday')
2294 'patient_birthday_alert_manual_off' => array(
2295 xl('Patient birthday alert requires turning off'),
2296 'bool', // data type
2297 '0', // default
2298 xl('Patient birthday alert requires turning off')
2302 // Logging
2304 'Logging' => array(
2306 'user_debug' => array(
2307 xl('User Debugging Options'),
2308 array(
2309 '0' => xl('None'),
2310 '1' => xl('Display Window Errors Only'),
2311 '2' => xl('Display Application Errors Only'),
2312 '3' => xl('All'),
2314 '0', // default
2315 xl('User Debugging Mode.')
2318 'enable_auditlog' => array(
2319 xl('Enable Audit Logging'),
2320 'bool', // data type
2321 '1', // default
2322 xl('Enable Audit Logging')
2325 'audit_events_patient-record' => array(
2326 xl('Audit Logging Patient Record'),
2327 'bool', // data type
2328 '1', // default
2329 xl('Enable logging of patient record modifications.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2332 'audit_events_scheduling' => array(
2333 xl('Audit Logging Scheduling'),
2334 'bool', // data type
2335 '1', // default
2336 xl('Enable logging of scheduling activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2339 'audit_events_order' => array(
2340 xl('Audit Logging Order'),
2341 'bool', // data type
2342 '1', // default
2343 xl('Enable logging of ordering activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2346 'audit_events_security-administration' => array(
2347 xl('Audit Logging Security Administration'),
2348 'bool', // data type
2349 '1', // default
2350 xl('Enable logging of security and administration activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2353 'audit_events_backup' => array(
2354 xl('Audit Logging Backups'),
2355 'bool', // data type
2356 '1', // default
2357 xl('Enable logging of backup related activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2360 'audit_events_other' => array(
2361 xl('Audit Logging Miscellaneous'),
2362 'bool', // data type
2363 '1', // default
2364 xl('Enable logging of miscellaneous activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2367 'audit_events_query' => array(
2368 xl('Audit Logging SELECT Query'),
2369 'bool', // data type
2370 '0', // default
2371 xl('Enable logging of all SQL SELECT queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2374 'audit_events_cdr' => array(
2375 xl('Audit CDR Engine Queries'),
2376 'bool', // data type
2377 '0', // default
2378 xl('Enable logging of CDR Engine Queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2381 'enable_atna_audit' => array(
2382 xl('Enable ATNA Auditing'),
2383 'bool', // data type
2384 '0', // default
2385 xl('Enable Audit Trail and Node Authentication (ATNA).')
2388 'atna_audit_host' => array(
2389 xl('ATNA audit host'),
2390 'text', // data type
2391 '', // default
2392 xl('The hostname of the ATNA audit repository machine.')
2395 'atna_audit_port' => array(
2396 xl('ATNA audit port'),
2397 'text', // data type
2398 '6514', // default
2399 xl('Listening port of the RFC 5425 TLS syslog server.')
2402 'atna_audit_localcert' => array(
2403 xl('ATNA audit local certificate'),
2404 'text', // data type
2405 '', // default
2406 xl('Certificate to send to RFC 5425 TLS syslog server.')
2409 'atna_audit_cacert' => array(
2410 xl('ATNA audit CA certificate'),
2411 'text', // data type
2412 '', // default
2413 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2416 'enable_auditlog_encryption' => array(
2417 xl('Enable Audit Log Encryption'),
2418 'bool', // data type
2419 '0', // default
2420 xl('Enable Audit Log Encryption')
2423 'billing_log_option' => array(
2424 xl('Billing Log Option'),
2425 array(
2426 '1' => xl('Billing Log Append'),
2427 '2' => xl('Billing Log Overwrite')
2429 '1', // default
2430 xl('Billing log setting to append or overwrite the log file.')
2433 'gbl_print_log_option' => array(
2434 xl('Printing Log Option'),
2435 array(
2436 '0' => xl('No logging'),
2437 '1' => xl('Hide print feature'),
2438 '2' => xl('Log entire document'),
2440 '0', // default
2441 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2446 // Miscellaneous Tab
2448 'Miscellaneous' => array(
2450 'mysql_bin_dir' => array(
2451 xl('Path to MySQL Binaries'),
2452 'text', // data type
2453 $mysql_bin_dir, // default
2454 xl('Full path to directory containing MySQL executables.')
2457 'perl_bin_dir' => array(
2458 xl('Path to Perl Binaries'),
2459 'text', // data type
2460 $perl_bin_dir, // default
2461 xl('Full path to directory containing Perl executables.')
2464 'temporary_files_dir' => array(
2465 xl('Path to Temporary Files'),
2466 'text', // data type
2467 $temporary_files_dir, // default
2468 xl('Full path to directory used for temporary files.')
2471 'backup_log_dir' => array(
2472 xl('Path for Event Log Backup'),
2473 'text', // data type
2474 $backup_log_dir, // default
2475 xl('Full path to directory for event log backup.')
2478 'state_data_type' => array(
2479 xl('State Data Type'),
2480 array(
2481 '2' => xl('Text field'),
2482 '1' => xl('Single-selection list'),
2483 '26' => xl('Single-selection list with ability to add to the list'),
2485 '26', // default
2486 xl('Field type to use for employer or subscriber state in demographics.')
2489 'state_list' => array(
2490 xl('State list'),
2491 'text', // data type
2492 'state', // default
2493 xl('List used by above State Data Type option.')
2496 'state_custom_addlist_widget' => array(
2497 xl('State List Widget Custom Fields'),
2498 'bool', // data type
2499 '1', // default
2500 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2503 'country_data_type' => array(
2504 xl('Country Data Type'),
2505 array(
2506 '2' => xl('Text field'),
2507 '1' => xl('Single-selection list'),
2508 '26' => xl('Single-selection list with ability to add to the list'),
2510 '26', // default
2511 xl('Field type to use for employer or subscriber country in demographics.')
2514 'country_list' => array(
2515 xl('Country list'),
2516 'text', // data type
2517 'country', // default
2518 xl('List used by above Country Data Type option.')
2521 'print_command' => array(
2522 xl('Print Command'),
2523 'text', // data type
2524 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2525 xl('Shell command for printing from the server.')
2528 'default_chief_complaint' => array(
2529 xl('Default Reason for Visit'),
2530 'text', // data type
2532 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2535 'MedicareReferrerIsRenderer' => array(
2536 xl('Medicare Referrer Is Renderer'),
2537 'bool', // data type
2538 '0', // default = true
2539 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2542 'post_to_date_benchmark' => array(
2543 xl('Financial Close Date (yyyy-mm-dd)'),
2544 'text', // data type
2545 date('Y-m-d', time() - (10 * 24 * 60 * 60)), // default
2546 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2549 'enable_hylafax' => array(
2550 xl('Enable Hylafax Support'),
2551 'bool', // data type
2552 '0', // default
2553 xl('Enable Hylafax Support')
2556 'hylafax_server' => array(
2557 xl('Hylafax Server'),
2558 'text', // data type
2559 'localhost', // default
2560 xl('Hylafax server hostname.')
2563 'hylafax_basedir' => array(
2564 xl('Hylafax Directory'),
2565 'text', // data type
2566 '/var/spool/hylafax', // default
2567 xl('Location where Hylafax stores faxes.')
2570 'hylafax_enscript' => array(
2571 xl('Hylafax Enscript Command'),
2572 'text', // data type
2573 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2574 xl('Enscript command used by Hylafax.')
2577 'enable_scanner' => array(
2578 xl('Enable Scanner Support'),
2579 'bool', // data type
2580 '0', // default
2581 xl('Enable Scanner Support')
2584 'scanner_output_directory' => array(
2585 xl('Scanner Directory'),
2586 'text', // data type
2587 '/mnt/scan_docs', // default
2588 xl('Location where scans are stored.')
2592 // Portal Tab
2594 'Portal' => array(
2596 'portal_onsite_two_enable' => array(
2597 xl('Enable Onsite Patient Portal'),
2598 'bool', // data type
2599 '0',
2600 xl('Enable Onsite Patient Portal')
2603 'portal_onsite_two_address' => array(
2604 xl('Onsite Patient Portal Site Address'),
2605 'text', // data type
2606 'https://your_web_site.com/openemr/portal',
2607 xl('Website link for the Onsite Patient Portal.')
2610 'portal_onsite_two_basepath' => array(
2611 xl('Portal Uses Server Base Path (internal)'),
2612 'bool',
2613 '0',
2614 xl('Use servers protocol and host in urls (portal internal only).')
2617 'enforce_signin_email' => array(
2618 xl('Enforce E-Mail in Portal Log On Dialog'),
2619 'bool', // data type
2620 '1',
2621 xl('Patient is required to enter their contact e-mail if present in Demographics Contact.')
2624 'portal_onsite_two_register' => array(
2625 xl('Allow Onsite New Patient Registration Widget'),
2626 'bool', // data type
2627 '1',
2628 xl('Enable Onsite Patient Portal new patient to self register.')
2631 'allow_portal_appointments' => array(
2632 xl('Allow Onsite Online Appointments'),
2633 'bool', // data type
2634 '1',
2635 xl('Allow Onsite Patient to make and view appointments online.')
2638 'allow_portal_chat' => array(
2639 xl('Allow Onsite Online Secure Chat'),
2640 'bool', // data type
2641 '1',
2642 xl('Allow 2 Onsite Patient to use Secure Chat Application.')
2645 'portal_two_ledger' => array(
2646 xl('Allow Onsite Patient Ledger'),
2647 'bool', // data type
2648 '1',
2649 xl('Allow Onsite Patient to view their accounting ledger online.')
2652 'portal_two_payments' => array(
2653 xl('Allow Onsite Online Payments'),
2654 'bool', // data type
2655 '0',
2656 xl('Allow Onsite Patient to make payments online.')
2659 'portal_two_pass_reset' => array(
2660 xl('Allow Onsite Patients to Reset Credentials'),
2661 'bool', // data type
2662 '0',
2663 xl('Patient may change their logon from portal login dialog.')
2666 'portal_onsite_document_download' => array(
2667 xl('Enable Onsite Patient Portal Document Download'),
2668 'bool', // data type
2669 '1',
2670 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2673 'portal_offsite_enable' => array(
2674 xl('Enable Offsite Patient Portal'),
2675 'bool', // data type
2676 '0',
2677 xl('Enable Offsite Patient Portal.')
2679 'portal_offsite_providerid' => array(
2680 xl('Offsite Patient Portal Provider ID'),
2681 'text', // data type
2683 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2686 'portal_offsite_username' => array(
2687 xl('Offsite Patient Portal Username'),
2688 'text', // data type
2690 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2693 'portal_offsite_password' => array(
2694 xl('Offsite Patient Portal Password'),
2695 'pwd', // data type
2697 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2700 'portal_offsite_address' => array(
2701 xl('Offsite Patient Portal Site Address'),
2702 'text', // data type
2703 'https://ssh.mydocsportal.com/provider.php',
2704 xl('Offsite Https link for the Patient Portal.')
2707 'portal_offsite_address_patient_link' => array(
2708 xl('Offsite Patient Portal Site Address (Patient Link)'),
2709 'text', // data type
2710 'https://ssh.mydocsportal.com',
2711 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2714 // Currently the "CMS Portal" supports WordPress. Other Content Management
2715 // Systems may be supported in the future.
2717 'gbl_portal_cms_enable' => array(
2718 xl('Enable CMS Portal'),
2719 'bool', // data type
2720 '0',
2721 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2724 'gbl_portal_cms_address' => array(
2725 xl('CMS Portal Site Address'),
2726 'text', // data type
2727 'https://your_cms_site.com/',
2728 xl('URL for the WordPress site that supports the portal')
2731 'gbl_portal_cms_username' => array(
2732 xl('CMS Portal Username'),
2733 'text', // data type
2735 xl('Login name of WordPress user for portal access')
2738 'gbl_portal_cms_password' => array(
2739 xl('CMS Portal Password'),
2740 'encrypted', // data type
2742 xl('Password for the above user')
2747 // Connectors Tab
2749 'Connectors' => array(
2751 'fhir_enable' => array(
2752 xl('Enable FHIR Provider Client Service'),
2753 array(
2754 0 => xl('Off: No Service.'),
2755 1 => xl('On: HAPI FHIR.'),
2756 2 => xl('On: Smart on FHIR.'),
2758 '0',
2759 xl('Enable FHIR Provider Client Service')
2762 'fhir_base_url' => array(
2763 xl('FHIR Server Base Address'),
2764 'text',
2765 'https://hapi.fhir.org/baseDstu3/',
2766 xl('Base URL for FHIR Server.')
2769 'rest_api' => array(
2770 xl('Enable OpenEMR REST API'),
2771 'bool',
2772 '0',
2773 xl('Enable OpenEMR RESTful API. SSL Required')
2776 'enable_oa' => array(
2777 xl('Enable Office Ally Insurance Eligibility'),
2778 'bool',
2779 '0',
2780 xl('Allow insurance eligibility checks using Office Ally')
2783 'payment_gateway' => array(
2784 xl('Select Credit Card Payment Gateway'),
2785 array(
2786 'InHouse' => xl('In House'),
2787 'AuthorizeNet' => xl('Authorize.Net'),
2788 'Stripe' => xl('Stripe')
2790 'InHouse',
2791 xl('Enable a Payment Gateway Service for processing credit card transactions')
2794 'gateway_mode_production' => array(
2795 xl('Set Gateway to Production Mode'),
2796 'bool', // data type
2797 '0',
2798 xl('Check this to go live. Not checked is testing mode.')
2801 'gateway_public_key' => array(
2802 xl('Gateway Publishable Key'),
2803 'encrypted',
2805 xl('The public access key for secure tokenize of credit or debit card authorization. PCI compliance')
2808 'gateway_api_key' => array(
2809 xl('Gateway API Login Auth Name or Secret'),
2810 'encrypted',
2812 xl('The Auth Name or API key for selected account.Auth Name for Authorize.Net and API Secret for Stripe')
2815 'gateway_transaction_key' => array(
2816 xl('Gateway Transaction Key'),
2817 'encrypted',
2819 xl('Mainly Authorize.Net uses two keys')
2822 'medex_enable' => array(
2823 xl('Enable MedEx Communication Service'),
2824 'bool', // data type
2825 '0',
2826 xl('Enable MedEx Communication Service')
2829 'erx_enable' => array(
2830 xl('Enable NewCrop eRx Service'),
2831 'bool',
2832 '0',
2833 xl('Enable NewCrop eRx Service.') . ' ' .
2834 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.')
2837 'erx_newcrop_path' => array(
2838 xl('NewCrop eRx Site Address'),
2839 'text',
2840 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2841 xl('URL for NewCrop eRx Site Address.')
2844 'erx_newcrop_path_soap' => array(
2845 xl('NewCrop eRx Web Service Address'),
2846 'text',
2847 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2848 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2851 'erx_soap_ttl_allergies' => array(
2852 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2853 'num',
2854 '21600',
2855 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2858 'erx_soap_ttl_medications' => array(
2859 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2860 'num',
2861 '21600',
2862 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2865 'erx_account_partner_name' => array(
2866 xl('NewCrop eRx Partner Name'),
2867 'text',
2869 xl('Partner Name issued for NewCrop eRx service.')
2872 'erx_account_name' => array(
2873 xl('NewCrop eRx Name'),
2874 'text',
2876 xl('Account Name issued for NewCrop eRx service.')
2879 'erx_account_password' => array(
2880 xl('NewCrop eRx Password'),
2881 'encrypted',
2883 xl('Account Password issued for NewCrop eRx service.')
2886 'erx_account_id' => array(
2887 xl('NewCrop eRx Account Id'),
2888 'text',
2889 '1',
2890 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2893 'erx_upload_active' => array(
2894 xl('Only upload active prescriptions'),
2895 'bool',
2896 '0',
2897 xl('Only upload active prescriptions to NewCrop eRx.')
2900 'erx_import_status_message' => array(
2901 xl('Enable NewCrop eRx import status message'),
2902 'bool',
2903 '0',
2904 xl('Enable import status message after visiting NewCrop eRx.')
2907 'erx_medication_display' => array(
2908 xl('Do not display NewCrop eRx Medications uploaded'),
2909 'bool',
2910 '0',
2911 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2914 'erx_allergy_display' => array(
2915 xl('Do not display NewCrop eRx Allergy uploaded'),
2916 'bool',
2917 '0',
2918 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2921 'erx_default_patient_country' => array(
2922 xl('NewCrop eRx Default Patient Country'),
2923 array(
2924 '' => '',
2925 'US' => xl('USA'),
2926 'CA' => xl('Canada'),
2927 'MX' => xl('Mexico'),
2930 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2933 'erx_debug_setting' => array(
2934 xl('NewCrop eRx Debug Setting'),
2935 array(
2936 0 => xl('None'),
2937 1 => xl('Request Only'),
2938 2 => xl('Response Only'),
2939 3 => xl('Request & Response'),
2941 '0',
2942 xl('Log all NewCrop eRx Requests and / or Responses.'),
2945 'weno_rx_enable' => array(
2946 xl('Enable Weno eRx Service'),
2947 'bool',
2948 '0',
2949 xl('Enable Weno eRx Service') . ' ' . xl('Contact Open Med Practice, www.openmedpractice.com for subscribing to the Weno Free eRx service.')
2952 'weno_account_id' => array(
2953 xl('Weno eRx Account Id'),
2954 'text',
2955 '137',
2956 xl('Account Id issued for Weno eRx service.')
2959 'weno_account_pass' => array(
2960 xl('Weno eRx Account Pass'),
2961 'encrypted', // data type
2962 '7C84773D5063B20BC9E41636A091C6F17E9C1E34',
2963 xl('Account Id issued for Weno eRx service.')
2966 'weno_provider_id' => array(
2967 xl('Weno eRx Clinic ID'),
2968 'text',
2969 'C36275',
2970 xl('Account Id issued for Your clinics eRx service.')
2973 'ccda_alt_service_enable' => array(
2974 xl('Enable C-CDA Alternate Service'),
2975 array(
2976 0 => xl('Off'),
2977 1 => xl('Care Coordination Only'),
2978 2 => xl('Portal Only'),
2979 3 => xl('Both'),
2981 '0',
2982 xl('Enable C-CDA Alternate Service')
2985 'phimail_enable' => array(
2986 xl('Enable phiMail Direct Messaging Service'),
2987 'bool', // data type
2988 '0',
2989 xl('Enable phiMail Direct Messaging Service')
2992 'phimail_server_address' => array(
2993 xl('phiMail Server Address'),
2994 'text', // data type
2995 'https://phimail.example.com:32541',
2996 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2999 'phimail_username' => array(
3000 xl('phiMail Username'),
3001 'text', // data type
3003 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
3006 'phimail_password' => array(
3007 xl('phiMail Password'),
3008 'encrypted', // data type
3010 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
3013 'phimail_notify' => array(
3014 xl('phiMail notification user'),
3015 'text', // data type
3016 'admin',
3017 xl('This user will receive notification of new incoming Direct messages')
3020 'phimail_interval' => array(
3021 xl('phiMail Message Check Interval (minutes)'),
3022 'num', // data type
3023 '5',
3024 xl('Interval between message checks (set to zero for manual checks only)')
3027 'phimail_ccd_enable' => array(
3028 xl('phiMail Allow CCD Send'),
3029 'bool', // data type
3030 '0',
3031 xl('phiMail Allow CCD Send')
3034 'phimail_ccr_enable' => array(
3035 xl('phiMail Allow CCR Send'),
3036 'bool', // data type
3037 '0',
3038 xl('phiMail Allow CCR Send')
3042 'Rx' => array(
3043 'rx_enable_DEA' => array(
3044 xl('Rx Enable DEA #'),
3045 'bool', // data type
3046 '1',
3047 xl('Rx Enable DEA #')
3049 'rx_show_DEA' => array(
3050 xl('Rx Show DEA #'),
3051 'bool', // data type
3052 '0',
3053 xl('Rx Show DEA #')
3055 'rx_enable_NPI' => array(
3056 xl('Rx Enable NPI'),
3057 'bool', // data type
3058 '0',
3059 xl('Rx Enable NPI')
3061 'rx_show_NPI' => array(
3062 xl('Rx Show NPI'),
3063 'bool', // data type
3064 '0',
3065 xl('Rx Show NPI')
3067 'rx_enable_SLN' => array(
3068 xl('Rx Enable State Lic. #'),
3069 'bool', // data type
3070 '0',
3071 xl('Rx Enable State Lic. #')
3073 'rx_show_SLN' => array(
3074 xl('Rx Show State Lic. #'),
3075 'bool', // data type
3076 '0',
3077 xl('Rx Show State Lic. #')
3079 'rx_show_drug_drug' => array(
3080 xl('Rx NLM Drug-Drug'),
3081 'bool', // data type
3082 '0',
3083 xl('Rx NLM Drug-Drug')
3085 'rx_paper_size' => array(
3086 xl('Rx Paper Size'), // descriptive name
3087 array(
3088 'LETTER' => xl('Letter Paper Size'),
3089 'LEGAL' => xl('Legal Paper Size'),
3090 'FOLIO' => xl('Folio Paper Size'),
3091 'EXECUTIVE' => xl('Executive Paper Size'),
3092 '4A0' => ('4A0' . " " . xl('Paper Size')),
3093 '2A0' => ('2A0' . " " . xl('Paper Size')),
3094 'A0' => ('A0' . " " . xl('Paper Size')),
3095 'A1' => ('A1' . " " . xl('Paper Size')),
3096 'A2' => ('A2' . " " . xl('Paper Size')),
3097 'A3' => ('A3' . " " . xl('Paper Size')),
3098 'A4' => ('A4' . " " . xl('Paper Size')),
3099 'A5' => ('A5' . " " . xl('Paper Size')),
3100 'A6' => ('A6' . " " . xl('Paper Size')),
3101 'A7' => ('A7' . " " . xl('Paper Size')),
3102 'A8' => ('A8' . " " . xl('Paper Size')),
3103 'A9' => ('A9' . " " . xl('Paper Size')),
3104 'A10' => ('A10' . " " . xl('Paper Size')),
3105 'B0' => ('B0' . " " . xl('Paper Size')),
3106 'B1' => ('B1' . " " . xl('Paper Size')),
3107 'B2' => ('B2' . " " . xl('Paper Size')),
3108 'B3' => ('B3' . " " . xl('Paper Size')),
3109 'B4' => ('B4' . " " . xl('Paper Size')),
3110 'B5' => ('B5' . " " . xl('Paper Size')),
3111 'B6' => ('B6' . " " . xl('Paper Size')),
3112 'B7' => ('B7' . " " . xl('Paper Size')),
3113 'B8' => ('B8' . " " . xl('Paper Size')),
3114 'B9' => ('B9' . " " . xl('Paper Size')),
3115 'B10' => ('B10' . " " . xl('Paper Size')),
3116 'C0' => ('C0' . " " . xl('Paper Size')),
3117 'C1' => ('C1' . " " . xl('Paper Size')),
3118 'C2' => ('C2' . " " . xl('Paper Size')),
3119 'C3' => ('C3' . " " . xl('Paper Size')),
3120 'C4' => ('C4' . " " . xl('Paper Size')),
3121 'C5' => ('C5' . " " . xl('Paper Size')),
3122 'C6' => ('C6' . " " . xl('Paper Size')),
3123 'C7' => ('C7' . " " . xl('Paper Size')),
3124 'C8' => ('C8' . " " . xl('Paper Size')),
3125 'C9' => ('C9' . " " . xl('Paper Size')),
3126 'C10' => ('C10' . " " . xl('Paper Size')),
3127 'RA0' => ('RA0' . " " . xl('Paper Size')),
3128 'RA1' => ('RA1' . " " . xl('Paper Size')),
3129 'RA2' => ('RA2' . " " . xl('Paper Size')),
3130 'RA3' => ('RA3' . " " . xl('Paper Size')),
3131 'RA4' => ('RA4' . " " . xl('Paper Size')),
3132 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3133 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3134 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3135 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3136 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3138 'LETTER', // default = tree menu
3139 xl('Rx Paper Size')
3141 'rx_left_margin' => array(
3142 xl('Rx Left Margin (px)'),
3143 'num',
3144 '30',
3145 xl('Rx Left Margin (px)')
3147 'rx_right_margin' => array(
3148 xl('Rx Right Margin (px)'),
3149 'num',
3150 '30',
3151 xl('Rx Right Margin (px)')
3153 'rx_top_margin' => array(
3154 xl('Rx Top Margin (px)'),
3155 'num',
3156 '72',
3157 xl('Rx Top Margin (px)')
3159 'rx_bottom_margin' => array(
3160 xl('Rx Bottom Margin (px)'),
3161 'num',
3162 '30',
3163 xl('Rx Bottom Margin (px)')
3165 'rx_use_fax_template' => array(
3166 xl('Show button for download fax template'),
3167 'bool', // data type
3168 '1', // default = true
3169 xl('Show button in the prescription list for download fax template')
3171 'rx_zend_html_template' => array(
3172 xl('Rx html print - zend module'),
3173 'bool', // data type
3174 '0', // default = false
3175 xl('Use an html template from zend module')
3177 'rx_zend_html_action' => array(
3178 xl('Name of zend template for html print'),
3179 'text', // data type
3180 'default',
3181 xl('Name of zend template for html print, possible to add custom template in the PrescriptionTemplate module')
3183 'rx_zend_pdf_template' => array(
3184 xl('Rx pdf - zend template'),
3185 'bool', // data type
3186 '0', // default = false
3187 xl('Use a pdf template from zend module')
3189 'rx_zend_pdf_action' => array(
3190 xl('Name of zend template for pdf export'),
3191 'text', // data type
3192 'default',
3193 xl('Name of zend template for pdf export, possible to add custom template in the PrescriptionTemplate module')
3196 'PDF' => array(
3197 'pdf_layout' => array(
3198 xl('Layout'),
3199 array(
3200 'P' => xl('Portrait'),
3201 'L' => xl('Landscape')
3203 'P', //defaut
3204 xl("Choose Layout Direction"),
3206 'pdf_language' => array(
3207 xl('PDF Language'),
3208 array(
3209 'aa' => xl('Afar'),
3210 'af' => xl('Afrikaans'),
3211 'ak' => xl('Akan'),
3212 'sq' => xl('Albanian'),
3213 'am' => xl('Amharic'),
3214 'ar' => xl('Arabic'),
3215 'an' => xl('Aragonese'),
3216 'hy' => xl('Armenian'),
3217 'as' => xl('Assamese'),
3218 'av' => xl('Avaric'),
3219 'ae' => xl('Avestan'),
3220 'ay' => xl('Aymara'),
3221 'az' => xl('Azerbaijani'),
3222 'bm' => xl('Bambara'),
3223 'ba' => xl('Bashkir'),
3224 'eu' => xl('Basque'),
3225 'be' => xl('Belarusian'),
3226 'bn' => xl('Bengali- Bangla'),
3227 'bh' => xl('Bihari'),
3228 'bi' => xl('Bislama'),
3229 'bs' => xl('Bosnian'),
3230 'br' => xl('Breton'),
3231 'bg' => xl('Bulgarian'),
3232 'my' => xl('Burmese'),
3233 'ca' => xl('Catalan- Valencian'),
3234 'ch' => xl('Chamorro'),
3235 'ce' => xl('Chechen'),
3236 'ny' => xl('Chichewa- Chewa- Nyanja'),
3237 'zh' => xl('Chinese'),
3238 'cv' => xl('Chuvash'),
3239 'kw' => xl('Cornish'),
3240 'co' => xl('Corsican'),
3241 'cr' => xl('Cree'),
3242 'hr' => xl('Croatian'),
3243 'cs' => xl('Czech'),
3244 'da' => xl('Danish'),
3245 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
3246 'nl' => xl('Dutch'),
3247 'dz' => xl('Dzongkha'),
3248 'en' => xl('English'),
3249 'eo' => xl('Esperanto'),
3250 'et' => xl('Estonian'),
3251 'ee' => xl('Ewe'),
3252 'fo' => xl('Faroese'),
3253 'fj' => xl('Fijian'),
3254 'fi' => xl('Finnish'),
3255 'fr' => xl('French'),
3256 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
3257 'gl' => xl('Galician'),
3258 'ka' => xl('Georgian'),
3259 'de' => xl('German'),
3260 'el' => xl('Greek, Modern'),
3261 'gn' => xl('Guarani'),
3262 'gu' => xl('Gujarati'),
3263 'ht' => xl('Haitian- Haitian Creole'),
3264 'ha' => xl('Hausa'),
3265 'he' => xl('Hebrew (modern)'),
3266 'hz' => xl('Herero'),
3267 'hi' => xl('Hindi'),
3268 'ho' => xl('Hiri Motu'),
3269 'hu' => xl('Hungarian'),
3270 'ia' => xl('Interlingua'),
3271 'id' => xl('Indonesian'),
3272 'ie' => xl('Interlingue'),
3273 'ga' => xl('Irish'),
3274 'ig' => xl('Igbo'),
3275 'ik' => xl('Inupiaq'),
3276 'io' => xl('Ido'),
3277 'is' => xl('Icelandic'),
3278 'it' => xl('Italian'),
3279 'iu' => xl('Inuktitut'),
3280 'ja' => xl('Japanese'),
3281 'jv' => xl('Javanese'),
3282 'kl' => xl('Kalaallisut, Greenlandic'),
3283 'kn' => xl('Kannada'),
3284 'kr' => xl('Kanuri'),
3285 'ks' => xl('Kashmiri'),
3286 'kk' => xl('Kazakh'),
3287 'km' => xl('Khmer'),
3288 'ki' => xl('Kikuyu, Gikuyu'),
3289 'rw' => xl('Kinyarwanda'),
3290 'ky' => xl('Kyrgyz'),
3291 'kv' => xl('Komi'),
3292 'kg' => xl('Kongo'),
3293 'ko' => xl('Korean'),
3294 'ku' => xl('Kurdish'),
3295 'kj' => xl('Kwanyama, Kuanyama'),
3296 'la' => xl('Latin'),
3297 'lb' => xl('Luxembourgish, Letzeburgesch'),
3298 'lg' => xl('Ganda'),
3299 'li' => xl('Limburgish, Limburgan, Limburger'),
3300 'ln' => xl('Lingala'),
3301 'lo' => xl('Lao'),
3302 'lt' => xl('Lithuanian'),
3303 'lu' => xl('Luba-Katanga'),
3304 'lv' => xl('Latvian'),
3305 'gv' => xl('Manx'),
3306 'mk' => xl('Macedonian'),
3307 'mg' => xl('Malagasy'),
3308 'ms' => xl('Malay'),
3309 'ml' => xl('Malayalam'),
3310 'mt' => xl('Maltese'),
3311 'mi' => xl('Maori'),
3312 'mr' => xl('Marathi (Marathi)'),
3313 'mh' => xl('Marshallese'),
3314 'mn' => xl('Mongolian'),
3315 'na' => xl('Nauru'),
3316 'nv' => xl('Navajo, Navaho'),
3317 'nb' => xl('Norwegian Bokmal'),
3318 'nd' => xl('North Ndebele'),
3319 'ne' => xl('Nepali'),
3320 'ng' => xl('Ndonga'),
3321 'nn' => xl('Norwegian Nynorsk'),
3322 'no' => xl('Norwegian'),
3323 'ii' => xl('Nuosu'),
3324 'nr' => xl('South Ndebele'),
3325 'oc' => xl('Occitan'),
3326 'oj' => xl('Ojibwe, Ojibwa'),
3327 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
3328 'om' => xl('Oromo'),
3329 'or' => xl('Oriya'),
3330 'os' => xl('Ossetian, Ossetic'),
3331 'pa' => xl('Panjabi, Punjabi'),
3332 'pi' => xl('Pali'),
3333 'fa' => xl('Persian (Farsi)'),
3334 'pl' => xl('Polish'),
3335 'ps' => xl('Pashto, Pushto'),
3336 'pt' => xl('Portuguese'),
3337 'qu' => xl('Quechua'),
3338 'rm' => xl('Romansh'),
3339 'rn' => xl('Kirundi'),
3340 'ro' => xl('Romanian'),
3341 'ru' => xl('Russian'),
3342 'sa' => xl('Sanskrit (Samskrta)'),
3343 'sc' => xl('Sardinian'),
3344 'sd' => xl('Sindhi'),
3345 'se' => xl('Northern Sami'),
3346 'sm' => xl('Samoan'),
3347 'sg' => xl('Sango'),
3348 'sr' => xl('Serbian'),
3349 'gd' => xl('Scottish Gaelic- Gaelic'),
3350 'sn' => xl('Shona'),
3351 'si' => xl('Sinhala, Sinhalese'),
3352 'sk' => xl('Slovak'),
3353 'sl' => xl('Slovene'),
3354 'so' => xl('Somali'),
3355 'st' => xl('Southern Sotho'),
3356 'es' => xl('Spanish- Castilian'),
3357 'su' => xl('Sundanese'),
3358 'sw' => xl('Swahili'),
3359 'ss' => xl('Swati'),
3360 'sv' => xl('Swedish'),
3361 'ta' => xl('Tamil'),
3362 'te' => xl('Telugu'),
3363 'tg' => xl('Tajik'),
3364 'th' => xl('Thai'),
3365 'ti' => xl('Tigrinya'),
3366 'bo' => xl('Tibetan Standard, Tibetan, Central'),
3367 'tk' => xl('Turkmen'),
3368 'tl' => xl('Tagalog'),
3369 'tn' => xl('Tswana'),
3370 'to' => xl('Tonga (Tonga Islands)'),
3371 'tr' => xl('Turkish'),
3372 'ts' => xl('Tsonga'),
3373 'tt' => xl('Tatar'),
3374 'tw' => xl('Twi'),
3375 'ty' => xl('Tahitian'),
3376 'ug' => xl('Uyghur, Uighur'),
3377 'uk' => xl('Ukrainian'),
3378 'ur' => xl('Urdu'),
3379 'uz' => xl('Uzbek'),
3380 've' => xl('Venda'),
3381 'vi' => xl('Vietnamese'),
3382 'vo' => xl('Volapuk'),
3383 'wa' => xl('Walloon'),
3384 'cy' => xl('Welsh'),
3385 'wo' => xl('Wolof'),
3386 'fy' => xl('Western Frisian'),
3387 'xh' => xl('Xhosa'),
3388 'yi' => xl('Yiddish'),
3389 'yo' => xl('Yoruba'),
3390 'za' => xl('Zhuang, Chuang'),
3391 'zu' => xl('Zulu'),
3393 'en', // default English
3394 xl('Choose PDF languange Preference'),
3396 'pdf_size' => array(
3397 xl('Paper Size'), // Descriptive Name
3398 array(
3399 'LETTER' => xl('Letter Paper Size'),
3400 'LEGAL' => xl('Legal Paper Size'),
3401 'FOLIO' => xl('Folio Paper Size'),
3402 'EXECUTIVE' => xl('Executive Paper Size'),
3403 '4A0' => ('4A0' . " " . xl('Paper Size')),
3404 '2A0' => ('2A0' . " " . xl('Paper Size')),
3405 'A0' => ('A0' . " " . xl('Paper Size')),
3406 'A1' => ('A1' . " " . xl('Paper Size')),
3407 'A2' => ('A2' . " " . xl('Paper Size')),
3408 'A3' => ('A3' . " " . xl('Paper Size')),
3409 'A4' => ('A4' . " " . xl('Paper Size')),
3410 'A5' => ('A5' . " " . xl('Paper Size')),
3411 'A6' => ('A6' . " " . xl('Paper Size')),
3412 'A7' => ('A7' . " " . xl('Paper Size')),
3413 'A8' => ('A8' . " " . xl('Paper Size')),
3414 'A9' => ('A9' . " " . xl('Paper Size')),
3415 'A10' => ('A10' . " " . xl('Paper Size')),
3416 'B0' => ('B0' . " " . xl('Paper Size')),
3417 'B1' => ('B1' . " " . xl('Paper Size')),
3418 'B2' => ('B2' . " " . xl('Paper Size')),
3419 'B3' => ('B3' . " " . xl('Paper Size')),
3420 'B4' => ('B4' . " " . xl('Paper Size')),
3421 'B5' => ('B5' . " " . xl('Paper Size')),
3422 'B6' => ('B6' . " " . xl('Paper Size')),
3423 'B7' => ('B7' . " " . xl('Paper Size')),
3424 'B8' => ('B8' . " " . xl('Paper Size')),
3425 'B9' => ('B9' . " " . xl('Paper Size')),
3426 'B10' => ('B10' . " " . xl('Paper Size')),
3427 'C0' => ('C0' . " " . xl('Paper Size')),
3428 'C1' => ('C1' . " " . xl('Paper Size')),
3429 'C2' => ('C2' . " " . xl('Paper Size')),
3430 'C3' => ('C3' . " " . xl('Paper Size')),
3431 'C4' => ('C4' . " " . xl('Paper Size')),
3432 'C5' => ('C5' . " " . xl('Paper Size')),
3433 'C6' => ('C6' . " " . xl('Paper Size')),
3434 'C7' => ('C7' . " " . xl('Paper Size')),
3435 'C8' => ('C8' . " " . xl('Paper Size')),
3436 'C9' => ('C9' . " " . xl('Paper Size')),
3437 'C10' => ('C10' . " " . xl('Paper Size')),
3438 'RA0' => ('RA0' . " " . xl('Paper Size')),
3439 'RA1' => ('RA1' . " " . xl('Paper Size')),
3440 'RA2' => ('RA2' . " " . xl('Paper Size')),
3441 'RA3' => ('RA3' . " " . xl('Paper Size')),
3442 'RA4' => ('RA4' . " " . xl('Paper Size')),
3443 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3444 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3445 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3446 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3447 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3449 'LETTER',
3450 xl('Choose Paper Size')
3452 'pdf_left_margin' => array(
3453 xl('Left Margin (mm)'),
3454 'num',
3455 '5',
3456 xl('Left Margin (mm)')
3458 'pdf_right_margin' => array(
3459 xl('Right Margin (mm)'),
3460 'num',
3461 '5',
3462 xl('Right Margin (mm)')
3464 'pdf_top_margin' => array(
3465 xl('Top Margin (mm)'),
3466 'num',
3467 '5',
3468 xl('Top Margin (mm)')
3470 'pdf_bottom_margin' => array(
3471 xl('Bottom Margin (px)'),
3472 'num',
3473 '8',
3474 xl('Bottom Margin (px)')
3476 'pdf_output' => array(
3477 xl('Output Type'),
3478 array(
3479 'D' => xl('Download'),
3480 'I' => xl('Inline')
3482 'D', //defaut
3483 xl("Choose Download or Display Inline"),
3486 'chart_label_type' => array(
3487 xl('Patient Label Type'),
3488 array(
3489 '0' => xl('None'),
3490 '1' => '5160',
3491 '2' => '5161',
3492 '3' => '5162'
3494 '1', // default
3495 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3498 'barcode_label_type' => array(
3499 xl('Barcode Label Type'),
3500 array(
3501 '0' => xl('None'),
3502 '1' => 'std25',
3503 '2' => 'int25',
3504 '3' => 'ean8',
3505 '4' => 'ean13',
3506 '5' => 'upc',
3507 '6' => 'code11',
3508 '7' => 'code39',
3509 '8' => 'code93',
3510 '9' => 'code128',
3511 '10' => 'codabar',
3512 '11' => 'msi',
3513 '12' => 'datamatrix'
3515 '9', // default = None
3516 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3519 'addr_label_type' => array(
3520 xl('Print Patient Address Label'),
3521 'bool', // data type
3522 '1', // default = false
3523 xl('Select to print patient address labels from popups in left nav screen.')
3526 'env_x_width' => array(
3527 xl('Envelope Width in mm'),
3528 'num', // data type
3529 '104.775',
3530 xl('In Portrait mode, determines the width of the envelope along the x-axis in mm')
3533 'env_y_height' => array(
3534 xl('Envelope Height in mm'),
3535 'num', // data type
3536 '241.3',
3537 xl('In Portrait mode, determines the height of the envelope along the y-axis in mm')
3540 'env_font_size' => array(
3541 xl('Font Size in Pt'),
3542 'num', // data type
3543 '14',
3544 xl('Sets the font of the address text on the envelope in mm')
3547 'env_x_dist' => array(
3548 xl('Envelope x-axis starting pt'),
3549 'num', // data type
3550 '65',
3551 xl('Distance from the \'top\' of the envelope in mm')
3554 'env_y_dist' => array(
3555 xl('Envelope y-axis starting pt'),
3556 'num', // data type
3557 '220',
3558 xl('Distance from the right most edge of the envelope in portrait position in mm')