Setup script bootstrapped with new theme selector - Take 2 (#2139)
[openemr.git] / library / globals.inc.php
blobfbde3cefbaa28e526b211203c535d8b8eb964d37
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 'menu_styling_vertical',
119 'default_encounter_view',
120 'gbl_pt_list_page_size',
121 'gbl_pt_list_new_window',
122 'units_of_measurement',
123 'us_weight_format',
124 'date_display_format',
125 'time_display_format',
126 'enable_help',
127 'posting_adj_disable',
128 'messages_due_date',
129 'expand_form',
130 'ledger_begin_date',
131 'print_next_appointment_on_ledger',
132 'calendar_view_type',
133 'event_color',
134 'pat_trkr_timer',
135 'ptkr_visit_reason',
136 'ptkr_date_range',
137 'ptkr_start_date',
138 'ptkr_end_date',
139 'checkout_roll_off',
140 'patient_birthday_alert',
141 'patient_birthday_alert_manual_off',
142 'erx_import_status_message');
144 // Gets array of time zones supported by PHP.
146 function gblTimeZones()
148 $zones = timezone_identifiers_list();
149 $arr = array('' => xl('Unassigned'));
150 foreach ($zones as $zone) {
151 $arr[$zone] = str_replace('_', ' ', $zone);
154 return $arr;
157 $GLOBALS_METADATA = array(
159 // Appearance Tab
161 'Appearance' => array(
163 'default_top_pane' => array(
164 xl('Main Top Pane Screen(Or Default First Tab)'), // descriptive name
165 array(
166 'main_info.php' => xl('Calendar Screen'),
167 '../new/new.php' => xl('Patient Search/Add Screen'),
168 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
169 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
170 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen')
172 'main_info.php', // default = calendar
173 xl('Main Top Pane Screen(Or Default First Tab)')
176 'default_second_tab' => array(
177 xl('Default Second Tab'), // descriptive name
178 array(
179 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen'),
180 'main_info.php' => xl('Calendar Screen'),
181 '../new/new.php' => xl('Patient Search/Add Screen'),
182 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
183 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
185 '../../interface/main/messages/messages.php?form_active=1', // default = messages
186 xl('Default Second Tab')
189 'new_tabs_layout' => array(
190 xl('Layout (need to logout/login after change this setting)'),
191 array(
192 '0' => xl('Frame'),
193 '1' => xl('Tabs'),
195 '1',
196 xl('Choose the layout (need to logout and then login to see this new setting).')
199 'theme_tabs_layout' => array(
200 xl('Tabs Layout Theme (need to logout/login after change this setting)'),
201 'tabs_css',
202 'tabs_style_full.css',
203 xl('Theme of the tabs layout (need to logout and then login to see this new setting). Note this is only applicable if use the Light or Manila general theme below.')
206 'css_header' => array(
207 xl('General Theme (need to logout/login after change this setting)'),
208 'css',
209 'style_light.css',
210 xl('Pick a general theme (need to logout/login after change this setting).')
213 'font-family' => array(
214 xl('Default font (need to logout/login after change this setting)'),
215 array(
216 '__default__' => 'Use Theme Font',
217 'Arial, Helvetica, sans-serif' => "Arial",
218 '"Arial Black", Gadget, sans-serif' => "Arial Black",
219 'Impact, Charcoal, sans-serif' => "Impact",
220 '"Lucida Sans Unicode", "Lucida Grande", sans-serif' => "Lucida Sans",
221 'Tahoma, Geneva, sans-serif' => "Tahoma",
222 '"Trebuchet MS", Helvetica, sans-serif' => "Trebuchet MS",
223 'Verdana, Geneva, sans-serif' => "Verdana",
224 'lato' => "Lato",
226 '__default__',
227 xl('Select the default font'),
230 'font-size' => array(
231 xl('Default font size (need to logout/login after change this setting)'),
232 array(
233 '__default__' => 'Use Theme Font Size',
234 '10px' => '10px',
235 '12px' => '12px',
236 '14px' => '14px',
237 '16px' => '16px',
238 '18px' => '18px',
240 '__default__',
241 xl("Select the default font size"),
244 'menu_styling_vertical' => array(
245 xl('Vertical Menu Style'),
246 array(
247 '0' => xl('Tree'),
248 '1' => xl('Sliding'),
250 '1',
251 xl('Vertical Menu Style')
254 'default_encounter_view' => array(
255 xl('Default Encounter View'), // descriptive name
256 array(
257 '0' => xl('Clinical View'),
258 '1' => xl('Billing View'),
260 '0', // default = tree menu
261 xl('Choose your default encounter view')
264 'gbl_nav_area_width' => array(
265 xl('Navigation Area Width'),
266 'num',
267 '175',
268 xl('Width in pixels of the left navigation frame.')
271 'openemr_name' => array(
272 xl('Application Title'),
273 'text',
274 'OpenEMR',
275 xl('Application name for login page and main window title.')
278 'enable_group_therapy' => array(
279 xl('Enable Group Therapy'),
280 'bool', // data type
281 '0', // default = false
282 xl('Enables groups module in system.')
285 'full_new_patient_form' => array(
286 xl('New Patient Form'),
288 array(
289 '0' => xl('Old-style static form without search or duplication check'),
290 '1' => xl('All demographics fields, with search and duplication check'),
291 '2' => xl('Mandatory or specified fields only, search and dup check'),
292 '3' => xl('Mandatory or specified fields only, dup check, no search'),
293 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
295 '1', // default
296 xl('Style of form used for adding new patients')
299 'gbl_edit_patient_form' => array(
300 xl('Modify Patient Form'),
302 array(
303 '0' => xl('Standard check'),
304 '1' => xl('Zend Module check in addition to standard check')
306 '0', // default
307 xl('Validation mechanism for when modifying patient demographics.')
310 'patient_search_results_style' => array(
311 xl('Patient Search Results Style'),
312 array(
313 '0' => xl('Encounter statistics'),
314 '1' => xl('Mandatory and specified fields'),
316 '0', // default
317 xl('Type of columns displayed for patient search results')
320 'gbl_tall_nav_area' => array(
321 xl('Tall Navigation Area'),
322 'bool', // data type
323 '0', // default = false
324 xl('Navigation area uses full height of frameset')
327 'gbl_nav_visit_forms' => array(
328 xl('Navigation Area Visit Forms'),
329 'bool', // data type
330 '1', // default = true
331 xl('Navigation area includes encounter forms')
334 'simplified_demographics' => array(
335 xl('Simplified Demographics'),
336 'bool', // data type
337 '0', // default = false
338 xl('Omit insurance and some other things from the demographics form')
341 'simplified_prescriptions' => array(
342 xl('Simplified Prescriptions'),
343 'bool', // data type
344 '0', // default = false
345 xl('Omit form, route and interval which then become part of dosage')
348 'simplified_copay' => array(
349 xl('Simplified Co-Pay'),
350 'bool', // data type
351 '0', // default = false
352 xl('Omit method of payment from the co-pay panel')
355 'use_charges_panel' => array(
356 xl('Use Charges Panel'),
357 'bool', // data type
358 '0', // default = false
359 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
362 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
363 'enable_fees_in_left_menu' => array(
364 xl('Enable Fees Submenu'),
365 'bool', // data type
366 '1', // default = true
367 xl('Enable Fees Submenu')
369 'enable_batch_payment' => array(
370 xl('Enable Batch Payment'),
371 'bool', // data type
372 '1', // default = true
373 xl('Enable Batch Payment')
375 'enable_posting' => array(
376 xl('Enable Posting'),
377 'bool', // data type
378 '1', // default = true
379 xl('Enable Posting')
381 // EDI history 2012-09-13
382 'enable_edihistory_in_left_menu' => array(
383 xl('Enable EDI History'),
384 'bool', // data type
385 '1', // default = true
386 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
389 'online_support_link' => array(
390 xl('Online Support Link'),
391 'text', // data type
392 'http://open-emr.org/',
393 xl('URL for OpenEMR support.')
396 'support_phone_number' => array(
397 xl('Support Phone Number'),
398 'text',
400 xl('Phone Number for Vendor Support that Appears on the About Page.')
403 'encounter_page_size' => array(
404 xl('Encounter Page Size'),
405 array(
406 '0' => xl('Show All'),
407 '5' => '5',
408 '10' => '10',
409 '15' => '15',
410 '20' => '20',
411 '25' => '25',
412 '50' => '50',
414 '20',
415 xl('Number of encounters to display per page.')
418 'gbl_pt_list_page_size' => array(
419 xl('Patient List Page Size'),
420 array(
421 '10' => '10',
422 '25' => '25',
423 '50' => '50',
424 '100' => '100',
426 '10',
427 xl('Number of patients to display per page in the patient list.')
430 'gbl_pt_list_new_window' => array(
431 xl('Patient List New Window'),
432 'bool', // data type
433 '0', // default = false
434 xl('Default state of New Window checkbox in the patient list.')
437 'num_of_messages_displayed' => array(
438 xl('Number of Messages Displayed in Patient Summary'),
439 'num',
440 '3',
441 xl('This is the number of messages that will be displayed in the messages widget in the patient summary screen.')
444 'gbl_vitals_options' => array(
445 xl('Vitals Form Options'),
446 array(
447 '0' => xl('Standard'),
448 '1' => xl('Omit circumferences'),
450 '0', // default
451 xl('Special treatment for the Vitals form')
454 'insurance_information' => array(
455 xl('Show Additional Insurance Information'), // descriptive name
456 array(
457 '0' => xl('None'),
458 '1' => xl('Address Only'),
459 '2' => xl('Address and Postal Code'),
460 '3' => xl('Address and State'),
461 '4' => xl('Address, State and Postal Code'),
462 '5' => xl('Address, City, State and Postal Code'),
463 '6' => xl('Postal Code and Box Number')
465 '5', // default
466 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
469 'gb_how_sort_list' => array(
470 xl('How to sort a drop-lists'),
471 array(
472 '0' => xl('Sort by seq'),
473 '1' => xl('Sort alphabetically')
475 '0',
476 xl('What kind of sorting will be in the drop lists.')
479 'show_label_login' => array(
480 xl('Show Title on Login'),
481 'bool', // data type
482 '0', // default = false
483 xl('Show Title on Login')
486 'extra_logo_login' => array(
487 xl('Show Extra Logo on Login'),
488 'bool', // data type
489 '0', // default = false
490 xl('Show Extra Logo on Login')
493 'tiny_logo_1' => array(
494 xl('Show Mini Logo 1'),
495 'bool', // data type
496 '0', // default = false
497 xl('Show Mini Logo 1')
500 'tiny_logo_2' => array(
501 xl('Show Mini Logo 2'),
502 'bool', // data type
503 '0', // default = false
504 xl('Show Mini Logo 2')
509 // Locale Tab
511 'Locale' => array(
513 'language_default' => array(
514 xl('Default Language'),
515 'lang', // data type
516 'English (Standard)', // default = english
517 xl('Default language if no other is allowed or chosen.')
520 'language_menu_showall' => array(
521 xl('All Languages Allowed'),
522 'bool', // data type
523 '1', // default = true
524 xl('Allow all available languages as choices on menu at login.')
527 'language_menu_other' => array(
528 xl('Allowed Languages'),
529 'm_lang', // data type
530 '', // default = none
531 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
534 'allow_debug_language' => array(
535 xl('Allow Debugging Language'),
536 'bool', // data type
537 '1', // default = true during development and false for production releases
538 xl('This will allow selection of the debugging (\'dummy\') language.')
541 'translate_no_safe_apostrophe' => array(
542 xl('Do Not Use Safe Apostrophe'),
543 'bool', // data type
544 '0', // default = false
545 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)')
548 'translate_layout' => array(
549 xl('Translate Layouts'),
550 'bool', // data type
551 '1', // default = true
552 xl('Is text from form layouts to be translated?')
555 'translate_lists' => array(
556 xl('Translate Lists'),
557 'bool', // data type
558 '1', // default = true
559 xl('Is text from lists to be translated?')
562 'translate_gacl_groups' => array(
563 xl('Translate Access Control Groups'),
564 'bool', // data type
565 '1', // default = true
566 xl('Are access control group names to be translated?')
569 'translate_form_titles' => array(
570 xl('Translate Patient Note Titles'),
571 'bool', // data type
572 '1', // default = true
573 xl('Are patient note titles to be translated?')
576 'translate_document_categories' => array(
577 xl('Translate Document Categories'),
578 'bool', // data type
579 '1', // default = true
580 xl('Are document category names to be translated?')
583 'translate_appt_categories' => array(
584 xl('Translate Appointment Categories'),
585 'bool', // data type
586 '1', // default = true
587 xl('Are appointment category names to be translated?')
590 'units_of_measurement' => array(
591 xl('Units for Visit Forms'),
592 array(
593 '1' => xl('Show both US and metric (main unit is US)'),
594 '2' => xl('Show both US and metric (main unit is metric)'),
595 '3' => xl('Show US only'),
596 '4' => xl('Show metric only'),
598 '1', // default = Both/US
599 xl('Applies to the Vitals form and Growth Chart')
602 'us_weight_format' => array(
603 xl('Display Format for US Weights'),
604 array(
605 '1' => xl('Show pounds as decimal value'),
606 '2' => xl('Show pounds and ounces')
608 '1',
609 xl('Applies to Vitals form')
612 'phone_country_code' => array(
613 xl('Telephone Country Code'),
614 'num',
615 '1', // default = North America
616 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
619 'date_display_format' => array(
620 xl('Date Display Format'),
621 array(
622 '0' => xl('YYYY-MM-DD'),
623 '1' => xl('MM/DD/YYYY'),
624 '2' => xl('DD/MM/YYYY'),
626 '0',
627 xl('Format used to display most dates.')
630 'time_display_format' => array(
631 xl('Time Display Format'),
632 array(
633 '0' => xl('24 hr'),
634 '1' => xl('12 hr'),
636 '0',
637 xl('Format used to display most times.')
640 'gbl_time_zone' => array(
641 xl('Time Zone'),
642 gblTimeZones(),
644 xl('If unassigned will default to php.ini setting for date.timezone.')
647 'currency_decimals' => array(
648 xl('Currency Decimal Places'),
649 array(
650 '0' => xl('0'),
651 '1' => xl('1'),
652 '2' => xl('2'),
654 '2',
655 xl('Number of digits after decimal point for currency, usually 0 or 2.')
658 'currency_dec_point' => array(
659 xl('Currency Decimal Point Symbol'),
660 array(
661 '.' => xl('Period'),
662 ',' => xl('Comma'),
664 '.',
665 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
668 'currency_thousands_sep' => array(
669 xl('Currency Thousands Separator'),
670 array(
671 ',' => xl('Comma'),
672 '.' => xl('Period'),
673 ' ' => xl('Space'),
674 '' => xl('None'),
676 ',',
677 xl('Symbol used to separate thousands for currency.')
680 'gbl_currency_symbol' => array(
681 xl('Currency Designator'),
682 'text', // data type
683 '$', // default
684 xl('Code or symbol to indicate currency')
686 'age_display_format' => array(xl('Age Display Format'),
687 array(
688 '0' => xl('Years or months'),
689 '1' => xl('Years, months and days')
691 '0',
692 xl('Format for age display')
694 'age_display_limit' => array(
695 xl('Age in Years for Display Format Change'),
696 'num',
697 '3',
698 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
700 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
701 'weekend_days' => array(
702 xl('Your weekend days'),
703 array(
704 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
705 '0' => xl('Sunday'),
706 '5' => xl('Friday'),
707 '6' => xl('Saturday'),
708 '5,6' => xl('Friday') . ' - ' . xl('Saturday'),
710 '6,0'
711 , xl('which days are your weekend days?')
716 // Features Tab
718 'Features' => array(
720 'specific_application' => array(
721 xl('Specific Application'),
722 array(
723 '0' => xl('None'),
724 '2' => xl('IPPF'),
725 '3' => xl('Weight loss clinic'),
727 '0', // default
728 xl('Indicator for specialized usage')
731 'inhouse_pharmacy' => array(
732 xl('Drugs and Products'),
733 array(
734 '0' => xl('Do not inventory and sell any products'),
735 '1' => xl('Inventory and sell drugs only'),
736 '2' => xl('Inventory and sell both drugs and non-drug products'),
737 '3' => xl('Products but no prescription drugs and no templates'),
739 '0', // default
740 xl('Option to support inventory and sales of products')
743 'default_visit_category' => array(
744 xl('Default Visit Category'),
745 'default_visit_category',
746 '_blank',
747 xl('Define a default visit category'),
750 'disable_chart_tracker' => array(
751 xl('Disable Chart Tracker'),
752 'bool', // data type
753 '0', // default = false
754 xl('Removes the Chart Tracker feature')
757 'disable_immunizations' => array(
758 xl('Disable Immunizations'),
759 'bool', // data type
760 '0', // default = false
761 xl('Removes support for immunizations')
764 'disable_prescriptions' => array(
765 xl('Disable Prescriptions'),
766 'bool', // data type
767 '0', // default = false
768 xl('Removes support for prescriptions')
771 'omit_employers' => array(
772 xl('Omit Employers'),
773 'bool', // data type
774 '0', // default = false
775 xl('Omit employer information in patient demographics')
778 'select_multi_providers' => array(
779 xl('Support Multi-Provider Events'),
780 'bool', // data type
781 '0', // default = false
782 xl('Support calendar events that apply to multiple providers')
785 'disable_non_default_groups' => array(
786 xl('Disable User Groups'),
787 'bool', // data type
788 '1', // default = true
789 xl('Normally this should be checked. Not related to access control.')
792 'ignore_pnotes_authorization' => array(
793 xl('Skip Authorization of Patient Notes'),
794 'bool', // data type
795 '1', // default = true
796 xl('Do not require patient notes to be authorized')
799 'support_encounter_claims' => array(
800 xl('Allow Encounter Claims'),
801 'bool', // data type
802 '0', // default = false
803 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
806 'advance_directives_warning' => array(
807 xl('Advance Directives Warning'),
808 'bool', // data type
809 '0', // default = false
810 xl('Display advance directives in the demographics page.')
813 'configuration_import_export' => array(
814 xl('Configuration Export/Import'),
815 'bool', // data type
816 '0', // default = false
817 xl('Support export/import of configuration data via the Backup page.')
820 'restrict_user_facility' => array(
821 xl('Restrict Users to Facilities'),
822 'bool', // data type
823 '0', // default
824 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
827 'set_facility_cookie' => array(
828 xl('Remember Selected Facility'),
829 'bool', // data type
830 '0', // default
831 xl('Set a facility cookie to remember the selected facility between logins.')
834 'login_into_facility' => array(
835 xl('Login Into Facility'),
836 'bool', // data type
837 '0', // default
838 xl('Select your current facility in the login page')
841 'receipts_by_provider' => array(
842 xl('Print Receipts by Provider'),
843 'bool',
844 '0', // default
845 xl('Causes Receipts to Print Encounter/Primary Provider Info')
848 'discount_by_money' => array(
849 xl('Discounts as Monetary Amounts'),
850 'bool', // data type
851 '1', // default = true
852 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
855 'gbl_visit_referral_source' => array(
856 xl('Referral Source for Encounters'),
857 'bool', // data type
858 '0', // default = false
859 xl('A referral source may be specified for each visit.')
862 'gbl_mask_patient_id' => array(
863 xl('Mask for Patient IDs'),
864 'text', // data type
865 '', // default
866 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
869 'gbl_mask_invoice_number' => array(
870 xl('Mask for Invoice Numbers'),
871 'text', // data type
872 '', // default
873 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
876 'gbl_mask_product_id' => array(
877 xl('Mask for Product IDs'),
878 'text', // data type
879 '', // default
880 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
883 'hide_billing_widget' => array(
884 xl('Hide Billing Widget'),
885 'bool', // data type
886 '0', // default = false
887 xl('This will hide the Billing Widget in the Patient Summary screen')
890 'force_billing_widget_open' => array(
891 xl('Force Billing Widget Open'),
892 'bool', // data type
893 '0', // default = false
894 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
897 'activate_ccr_ccd_report' => array(
898 xl('Activate CCR/CCD Reporting'),
899 'bool', // data type
900 '1', // default = true
901 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
904 'hide_document_encryption' => array(
905 xl('Hide Encryption/Decryption Options In Document Management'),
906 'bool', // data type
907 '1', // default = true
908 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
911 'use_custom_immun_list' => array(
912 xl('Use Custom Immunization List'),
913 'bool', // data type
914 '0', // default = true
915 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
918 'amendments' => array(
919 xl('Amendments'),
920 'bool', // data type
921 '1', // default = true
922 xl('Enable amendments feature')
925 'allow_pat_delete' => array(
926 xl('Allow Administrators to Delete Patients'),
927 'bool', // data type
928 '0', // default = false
929 xl('Allow Administrators to Delete Patients')
933 'observation_results_immunization' => array(
934 xl('Immunization Observation Results'),
935 'bool', // data type
936 '1', // default
937 xl('Observation Results in Immunization')
940 'enable_help' => array(
941 xl('Enable Help Modal'),
942 array(
943 '0' => xl('Hide Help Modal'),
944 '1' => xl('Show Help Modal'),
945 '2' => xl('Disable Help Modal'),
946 ), // data type
947 '1', // default = Print End of Day Report 1
948 xl('This will allow the display of help modal on help enabled pages')
950 'messages_due_date' => array(
951 xl('Messages - due date'),
952 'bool', // data type
953 '0', // default false
954 xl('Enables choose due date to message')
957 'expand_form' => array(
958 xl('Expand Form'),
959 'bool', // data type
960 '0', // default false
961 xl('Open all expandable forms in expanded state')
964 // Report Tab
966 'Report' => array(
968 'use_custom_daysheet' => array(
969 xl('Use Custom End of Day Report'),
970 array(
971 '0' => xl('None'),
972 '1' => xl('Print End of Day Report 1'),
973 '2' => xl('Print End of Day Report 2'),
974 '3' => xl('Print End of Day Report 3'),
975 ), // data type
976 '1', // default = Print End of Day Report 1
977 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
980 'daysheet_provider_totals' => array(
981 xl('End of Day by Provider or allow Totals Only'),
982 array(
983 '0' => xl('Provider'),
984 '1' => xl('Totals Only'),
986 '1', // default
987 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
990 'ledger_begin_date' => array(
991 xl('Beginning Date for Ledger Report'),
992 array(
993 'Y1' => xl('One Year Ago'),
994 'Y2' => xl('Two Years Ago'),
995 'M6' => xl('Six Months Ago'),
996 'M3' => xl('Three Months Ago'),
997 'M1' => xl('One Month Ago'),
998 'D1' => xl('One Day Ago'),
1000 'Y1', // default = One Year
1001 xl('This is the Beginning date for the Ledger Report.')
1004 'print_next_appointment_on_ledger' => array(
1005 xl('Print the Next Appointment on the Bottom of the Ledger'),
1006 'bool', // data type
1007 '1', // default = true
1008 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
1011 'sales_report_invoice' => array(
1012 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
1013 array(
1014 '0' => xl('Invoice Number'),
1015 '1' => xl('Patient Name and ID'),
1016 '2' => xl('Patient Name and Invoice'),
1018 '2', // default = 2
1019 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
1022 'cash_receipts_report_invoice' => array(
1023 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
1024 array(
1025 '0' => xl('Invoice Number'),
1026 '1' => xl('Patient Name'),
1028 '0', // default = 0
1029 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
1034 // Billing Tab
1036 'Billing' => array(
1038 'ub04_support' => array(
1039 xl('Activate UB04/837I Claim Support'),
1040 'bool', // data type
1041 '0', // default = false
1042 xl('Allow institutional claims support.')
1045 'top_ubmargin_default' => array(
1046 xl('Default top print margin for UB04'),
1047 'num', // data type
1048 '14', // default
1049 xl('This is the default top print margin for UB04. It will adjust the final printed output up or down.')
1052 'left_ubmargin_default' => array(
1053 xl('Default left print margin for UB04'),
1054 'num', // data type
1055 '11', // default
1056 xl('This is the default left print margin for UB04. It will adjust the final printed output left or right.')
1059 'cms_top_margin_default' => array(
1060 xl('Default top print margin for CMS 1500'),
1061 'num', // data type
1062 '24', // default
1063 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
1066 'cms_left_margin_default' => array(
1067 xl('Default left print margin for CMS 1500'),
1068 'num', // data type
1069 '20', // default
1070 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
1073 'preprinted_cms_1500' => array(
1074 xl('Prints the CMS 1500 on the Preprinted form'),
1075 'bool', // data type
1076 '0', // default = false
1077 xl('Overlay CMS 1500 on the Preprinted form')
1080 'cms_1500_box_31_format' => array(
1081 xl('CMS 1500: Box 31 Format'),
1082 array(
1083 '0' => xl('Signature on File'),
1084 '1' => xl('Firstname Lastname'),
1085 '2' => xl('None'),
1087 '0', // default
1088 xl('This specifies whether to include date in Box 31.')
1091 'cms_1500_box_31_date' => array(
1092 xl('CMS 1500: Date in Box 31 (Signature)'),
1093 array(
1094 '0' => xl('None'),
1095 '1' => xl('Date of Service'),
1096 '2' => xl('Today'),
1098 '0', // default
1099 xl('This specifies whether to include date in Box 31.')
1102 'default_search_code_type' => array(
1103 xl('Default Search Code Type'),
1104 'all_code_types', // data type
1105 'ICD10', // default
1106 xl('The default code type to search for in the Fee Sheet.')
1109 'default_rendering_provider' => array(
1110 xl('Default Rendering Provider in Fee Sheet'),
1111 array(
1112 '0' => xl('Please Select'),
1113 '1' => xl('Current Provider'),
1114 '2' => xl('Current Logged in User'),
1116 '1',
1117 xl('Default selection for rendering provider in fee sheet.')
1120 'posting_adj_disable' => array(
1121 xl('Disable Auto Adjustment Calculations in EOB Posting'),
1122 'bool', // data type
1123 '0', // default = false
1124 xl('Turn off auto calculations of adjustments in EOB')
1127 'show_payment_history' => array(
1128 xl('Show all payment history in Patient Ledger'),
1129 'bool', // data type
1130 '1', // default = true
1131 xl('Turn on to show all payment history in Patient Ledger')
1134 'support_fee_sheet_line_item_provider' => array(
1135 xl('Support provider in line item in fee sheet'),
1136 'bool', // data type
1137 '0', // default = false
1138 xl('This Enables provider in line item in the fee sheet')
1141 'default_fee_sheet_line_item_provider' => array(
1142 xl('Default to a provider for line item in the fee sheet'),
1143 'bool', // data type
1144 '0', // default = false
1145 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1148 'replicate_justification' => array(
1149 xl('Automatically replicate justification codes in Fee Sheet'),
1150 'bool', // data type
1151 '0', // default = false
1152 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1155 'display_units_in_billing' => array(
1156 xl('Display the Units Column on the Billing Screen'),
1157 'bool', // data type
1158 '0', // default = false
1159 xl('Display the Units Column on the Billing Screen')
1162 'notes_to_display_in_Billing' => array(
1163 xl('Which notes are to be displayed in the Billing Screen'),
1164 array(
1165 '0' => xl('None'),
1166 '1' => xl('Encounter Billing Note'),
1167 '2' => xl('Patient Billing Note'),
1168 '3' => xl('All'),
1170 '3',
1171 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1174 'set_pos_code_encounter' => array(
1175 xl('Set POS code in encounter'),
1176 'bool', // data type
1177 '0', // default = false
1178 xl('This feature will allow the default POS facility code to be overriden from the encounter.')
1181 'statement_logo' => array(
1182 xl('Statement Logo GIF Filename'),
1183 'text', // data type
1184 'practice_logo.gif', // data type
1185 xl('Place your logo in sites/default/images and type the filename including gif extension here.')
1188 'use_custom_statement' => array(
1189 xl('Use Custom Statement'),
1190 'bool', // data type
1191 '0', // default = false
1192 xl('This will use the custom Statment showing the description instead of the codes.')
1195 'statement_appearance' => array(
1196 xl('Statement Appearance'),
1197 array(
1198 '0' => xl('Plain Text'),
1199 '1' => xl('Modern/images')
1200 ), // data type
1201 '1', // default = true
1202 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1205 'billing_phone_number' => array(
1206 xl('Custom Billing Phone Number'),
1207 'text', // data type
1209 xl('Phone number for billing inquiries')
1212 'show_aging_on_custom_statement' => array(
1213 xl('Show Aging on Custom Statement'),
1214 'bool', // data type
1215 '0', // default = false
1216 xl('This will Show Aging on the custom Statement.')
1219 'use_statement_print_exclusion' => array(
1220 xl('Allow Statement Exclusions from Printing'),
1221 'bool', // data type
1222 '0', // default = false
1223 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1226 'minimum_amount_to_print' => array(
1227 xl('Total Minimum Amount of Statement to Allow Printing'),
1228 'num', // data type
1229 '1.00',
1230 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1233 'statement_bill_note_print' => array(
1234 xl('Print Patient Billing Note'),
1235 'bool', // data type
1236 '0', // default = false
1237 xl('This will allow printing of the Patient Billing Note on the statements.')
1240 'number_appointments_on_statement' => array(
1241 xl('Number of Appointments on Statement'),
1242 'num', // data type
1243 '0', // default = 0
1244 xl('The Number of Future Appointments to Display on the Statement.')
1247 'statement_message_to_patient' => array(
1248 xl('Print Custom Message'),
1249 'bool', // data type
1250 '0', // default = false
1251 xl('This will allow printing of a custom Message on the statements.')
1254 'statement_msg_text' => array(
1255 xl('Custom Statement message'),
1256 'text', // data type
1258 xl('Text for Custom statement message.')
1261 'use_dunning_message' => array(
1262 xl('Use Custom Dunning Messages'),
1263 'bool', // data type
1264 '0', // default = false
1265 xl('This will allow use of the custom Dunning Messages on the statements.')
1268 'first_dun_msg_set' => array(
1269 xl('Number of days before showing first account message'),
1270 'num', // data type
1271 '30',
1272 xl('Number of days before showing first account message.')
1275 'first_dun_msg_text' => array(
1276 xl('First account message'),
1277 'text', // data type
1279 xl('Text for first account message.')
1282 'second_dun_msg_set' => array(
1283 xl('Number of days before showing second account message'),
1284 'num', // data type
1285 '60',
1286 xl('Number of days before showing second account message')
1289 'second_dun_msg_text' => array(
1290 xl('Second account message'),
1291 'text', // data type
1293 xl('Text for second account message.')
1296 'third_dun_msg_set' => array(
1297 xl('Number of days before showing third account message'),
1298 'num', // data type
1299 '90',
1300 xl('Number of days before showing third account message')
1303 'third_dun_msg_text' => array(
1304 xl('Third account message'),
1305 'text', // data type
1307 xl('Text for third account message.')
1310 'fourth_dun_msg_set' => array(
1311 xl('Number of days before showing fourth account message'),
1312 'num', // data type
1313 '120',
1314 xl('Number of days before showing fourth account message')
1317 'fourth_dun_msg_text' => array(
1318 xl('Fourth account message'),
1319 'text', // data type
1321 xl('Text for fourth account message.')
1324 'fifth_dun_msg_set' => array(
1325 xl('Number of days before showing fifth account message'),
1326 'num', // data type
1327 '150',
1328 xl('Number of days before showing fifth account message')
1331 'fifth_dun_msg_text' => array(
1332 xl('Fifth account message'),
1333 'text', // data type
1335 xl('Text for fifth account message.')
1337 'save_codes_history' => array(
1338 xl('Save codes history'),
1339 'bool', // data type
1340 '1', // default
1341 xl('Save codes history')
1345 // E-Sign Tab
1347 'E-Sign' => array(
1349 'esign_all' => array(
1350 xl('Allows E-Sign on the entire encounter'),
1351 'bool', // data type
1352 '0', // default = false
1353 xl('This will enable signing an entire encounter, rather than individual forms')
1356 'lock_esign_all' => array(
1357 xl('Lock e-signed encounters and their forms'),
1358 'bool', // data type
1359 '0', // default = false
1360 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1363 'esign_individual' => array(
1364 xl('Allows E-Signing Individual Forms'),
1365 'bool', // data type
1366 '1', // default = false
1367 xl('This will enable signing individual forms separately')
1370 'lock_esign_individual' => array(
1371 xl('Lock an e-signed form individually'),
1372 'bool', // data type
1373 '1', // default = false
1374 xl('This will disable the Edit button on any form that is e-signed')
1377 'esign_lock_toggle' => array(
1378 xl('Enable lock toggle'),
1379 'bool', // data type
1380 '0', // default = false
1381 xl('This will give the user the option to lock (separate locking and signing)')
1384 'esign_report_hide_empty_sig' => array(
1385 xl('Hide Empty E-Sign Logs On Report'),
1386 'bool', // data type
1387 '1', // default = false
1388 xl('This will hide empty e-sign logs on the patient report')
1392 //Documents Tab
1393 'Documents' => array(
1395 'document_storage_method' => array(
1396 xl('Document Storage Method'),
1397 array(
1398 '0' => xl('Hard Disk'),
1399 '1' => xl('CouchDB')
1401 '0', // default
1402 xl('Option to save method of document storage.')
1405 'couchdb_host' => array(
1406 xl('CouchDB HostName'),
1407 'text',
1408 'localhost',
1409 xl('CouchDB host'),
1411 'couchdb_user' => array(
1412 xl('CouchDB UserName'),
1413 'text',
1415 xl('Username to connect to CouchDB'),
1417 'couchdb_pass' => array(
1418 xl('CouchDB Password'),
1419 'encrypted', // data type
1421 xl('Password to connect to CouchDB'),
1423 'couchdb_port' => array(
1424 xl('CouchDB Port'),
1425 'text',
1426 '5984',
1427 xl('CouchDB port'),
1429 'couchdb_dbase' => array(
1430 xl('CouchDB Database'),
1431 'text',
1433 xl('CouchDB database name'),
1435 'couchdb_log' => array(
1436 xl('CouchDB Log Enable'),
1437 'bool',
1438 '0',
1439 xl('Enable log for document uploads/downloads to CouchDB'),
1442 'expand_document_tree' => array(
1443 xl('Expand All Document Categories'),
1444 'bool', // data type
1445 '0', // default = false
1446 xl('Expand All Document Categories by Default')
1449 'patient_id_category_name' => array(
1450 xl('Patient ID Category Name'),
1451 'text', // data type
1452 'Patient ID card', // default
1453 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1456 'patient_photo_category_name' => array(
1457 xl('Patient Photo Category Name'),
1458 'text', // data type
1459 'Patient Photograph', // default
1460 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1463 'lab_results_category_name' => array(
1464 xl('Lab Results Category Name'),
1465 'text', // data type
1466 'Lab Report', // default
1467 xl('Document category name for storage of electronically received lab results.')
1470 'gbl_mdm_category_name' => array(
1471 xl('MDM Document Category Name'),
1472 'text', // data type
1473 'Lab Report', // default
1474 xl('Document category name for storage of electronically received MDM documents.')
1476 'generate_doc_thumb' => array(
1477 xl('Generate thumbnail'),
1478 'bool',
1479 '0',
1480 xl('Generate thumbnail images'),
1482 'thumb_doc_max_size' => array(
1483 xl('Thumbnail size'),
1484 'text', // data type
1485 '100', // default
1486 xl('Maximum size of thumbnail file')
1490 // Calendar Tab
1492 'Calendar' => array(
1494 'disable_calendar' => array(
1495 xl('Disable Calendar'),
1496 'bool', // data type
1497 '0', // default
1498 xl('Do not display the calendar.')
1501 'schedule_start' => array(
1502 xl('Calendar Starting Hour'),
1503 'hour',
1504 '8', // default
1505 xl('Beginning hour of day for calendar events.')
1508 'schedule_end' => array(
1509 xl('Calendar Ending Hour'),
1510 'hour',
1511 '17', // default
1512 xl('Ending hour of day for calendar events.')
1515 'calendar_interval' => array(
1516 xl('Calendar Interval'),
1517 array(
1518 '5' => '5',
1519 '10' => '10',
1520 '15' => '15',
1521 '20' => '20',
1522 '30' => '30',
1523 '60' => '60',
1525 '15', // default
1526 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1529 'calendar_view_type' => array(
1530 xl('Default Calendar View'),
1531 array(
1532 'day' => xl('Day'),
1533 'week' => xl('Week'),
1534 'month' => xl('Month'),
1536 'day', // default
1537 xl('This sets the Default Calendar View, Default is Day.')
1539 'first_day_week' => array(
1540 xl('First day in the week'),
1541 array(
1542 '1' => xl('Monday'),
1543 '0' => xl('Sunday'),
1544 '6' => xl('Saturday')
1546 '1',
1547 xl('Your first day of the week.')
1549 'calendar_appt_style' => array(
1550 xl('Appointment Display Style'),
1551 array(
1552 '1' => xl('Last name'),
1553 '2' => xl('Last name, first name'),
1554 '3' => xl('Last name, first name (title)'),
1555 '4' => xl('Last name, first name (title: comments)'),
1557 '2', // default
1558 xl('This determines how appointments display on the calendar.')
1561 'event_color' => array(
1562 xl('Appointment/Event Color'),
1563 array(
1564 '1' => xl('Category Color Schema'),
1565 '2' => xl('Facility Color Schema'),
1566 ), // data type
1567 '1', // default
1568 xl('This determines which color schema used for appointment')
1571 'number_of_appts_to_show' => array(
1572 xl('Appointments - Patient Summary - Number to Display'),
1573 'num',
1574 '10',
1575 xl('Number of Appointments to display in the Patient Summary')
1578 'number_of_group_appts_to_show' => array(
1579 xl('Appointments - Group Summary - Number to Display'),
1580 'num',
1581 '10',
1582 xl('Number of Appointments to display in the Group Summary')
1584 'number_of_ex_appts_to_show' => array(
1585 xl('Excluded Appointments - Tooltip - Number to Display'),
1586 'num',
1587 '15',
1588 xl('Number of Excluded Appointments to display in the Tooltip')
1592 'patient_portal_appt_display_num' => array(
1593 xl('Appointments - Onsite Patient Portal - Number to Display'),
1594 'num',
1595 '20',
1596 xl('Number of Appointments to display in the Onsite Patient Portal')
1599 'appt_display_sets_option' => array(
1600 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1601 'bool', // data type
1602 '1', // default
1603 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1606 'appt_display_sets_color_1' => array(
1607 xl('Appointment Display Sets - Color 1'),
1608 'color_code',
1609 '#FFFFFF',
1610 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).')
1613 'appt_display_sets_color_2' => array(
1614 xl('Appointment Display Sets - Color 2'),
1615 'color_code',
1616 '#E6E6FF',
1617 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).')
1620 'appt_display_sets_color_3' => array(
1621 xl('Appointment Display Sets - Color 3'),
1622 'color_code',
1623 '#E6FFE6',
1624 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1627 'appt_display_sets_color_4' => array(
1628 xl('Appointment Display Sets - Color 4'),
1629 'color_code',
1630 '#FFE6FF',
1631 xl('Color for the last set when not all member appointments are displayed.')
1634 'appt_recurrences_widget' => array(
1635 xl('Recurrent Appointment Display Widget'),
1636 'bool', // data type
1637 '1', // default
1638 xl('Display the recurrent appointment widget in the patient summary.')
1641 'num_past_appointments_to_show' => array(
1642 xl('Past Appointment Display Widget'),
1643 'num', // data type
1644 '0', // default = false
1645 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)')
1648 'docs_see_entire_calendar' => array(
1649 xl('Providers See Entire Calendar'),
1650 'bool', // data type
1651 '0', // default
1652 xl('Check this if you want providers to see all appointments by default and not just their own.')
1655 'auto_create_new_encounters' => array(
1656 xl('Auto-Create New Encounters'),
1657 'bool', // data type
1658 '1', // default
1659 xl('Automatically create a new encounter when an appointment check in status is selected.')
1662 'allow_early_check_in' => array(
1663 xl('Allow Early Check In'),
1664 'bool', // data type
1665 '1', // default
1666 xl("Allow Check In before the appointment's time.")
1669 'submit_changes_for_all_appts_at_once' => array(
1670 xl('Submit Changes For All Appts At Once'),
1671 'bool', // data type
1672 '1', // default
1673 xl('Enables to submit changes for all appointments of a recurrence at once.')
1676 'disable_pat_trkr' => array(
1677 xl('Flow Board: Disable'),
1678 'bool', // data type
1679 '0', // default
1680 xl('Completely remove the ability to display the Patient Flow Board.')
1683 'ptkr_visit_reason' => array(
1684 xl('Flow Board: Show Visit Reason'),
1685 'bool', // data type
1686 '0', // default = false
1687 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1690 'ptkr_show_pid' => array(
1691 xl('Flow Board: Show Patient ID'),
1692 'bool', // data type
1693 '1', // default = true
1694 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1697 'ptkr_show_encounter' => array(
1698 xl('Flow Board: Show Encounter Number'),
1699 'bool', // data type
1700 '1', // default = true
1701 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1704 'ptkr_show_staff' => array(
1705 xl('Flow Board: Show Staff Action'),
1706 'bool', // data type
1707 '1', // default = true
1708 xl('When Checked, Last Staff to Update Board Will Show in Patient Flow Board.')
1711 'ptkr_date_range' => array(
1712 xl('Flow Board: Allow Date Range'),
1713 'bool', // data type
1714 '1', // default = true
1715 xl('This Allows a Date Range to be Selected in Patient Flow Board.')
1718 'ptkr_start_date'=> array(
1719 xl('Flow Board: Default Starting Date'),
1720 array(
1721 'D0' => xl('Current Day'),
1722 'B0' => xl('Beginning of Current Work Week'),
1724 'D0', // default = Current Day
1725 xl('This is the default Beginning date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1728 'ptkr_end_date' => array(
1729 xl('Flow Board: Default Ending Date'),
1730 array(
1731 'Y1' => xl('One Year Ahead'),
1732 'Y2' => xl('Two Years Ahead'),
1733 'M6' => xl('Six Months Ahead'),
1734 'M3' => xl('Three Months Ahead'),
1735 'M1' => xl('One Month Ahead'),
1736 'D7' => xl('One Week Ahead'),
1737 'D1' => xl('One Day Ahead'),
1738 'D0' => xl('Current Day'),
1740 'D0', // default = One Day Ahead
1741 xl('This is the default Ending date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1744 'pat_trkr_timer' => array(
1745 xl('Flow Board: Timer Refresh Interval'),
1746 array(
1747 '0' => xl('No automatic refresh'),
1748 '0:10' => '10',
1749 '0:20' => '20',
1750 '0:30' => '30',
1751 '0:40' => '40',
1752 '0:50' => '50',
1753 '0:59' => '60',
1755 '0:20', // default
1756 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1759 'checkout_roll_off' => array(
1760 xl('Flow Board: display completed checkouts (minutes)'),
1761 'num',
1762 '0', // default
1763 xl('Flow Board will only display completed checkouts for this many minutes. Zero is continuous display.')
1766 'drug_screen' => array(
1767 xl('Flow Board: Enable Random Drug Testing'),
1768 'bool', // data type
1769 '0', // default
1770 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1773 'drug_testing_percentage' => array(
1774 xl('Flow Board: Percentage of Patients to Drug Test'),
1775 'num',
1776 '33', // default
1777 xl('Percentage of Patients to select for Random Drug Testing.')
1780 'maximum_drug_test_yearly' => array(
1781 xl('Flow Board: Max tests per Patient per year'),
1782 'num',
1783 '0', // default
1784 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1787 'disable_rcb' => array(
1788 xl('Recall Board: Disable'),
1789 'bool', // data type
1790 '0', // default
1791 xl('Do not display the Recall Board.')
1799 // Security Tab
1801 'Security' => array(
1802 'sql_string_no_show_screen' => array(
1803 xl('Mode - Do Not Show SQL Queries'),
1804 'bool', // data type
1805 '0', // default
1806 xl('Do not allow SQL queries to be outputted to screen.')
1808 'timeout' => array(
1809 xl('Idle Session Timeout Seconds'),
1810 'num', // data type
1811 '7200', // default
1812 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1814 'secure_upload' => array(
1815 xl('Secure Upload Files with White List'),
1816 'bool', // data type
1817 '0', // default
1818 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1820 'secure_password' => array(
1821 xl('Require Strong Passwords'),
1822 'bool', // data type
1823 '0', // default
1824 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1826 'password_history' => array(
1827 xl('Require Unique Passwords'),
1828 'bool', // data type
1829 '0', // default
1830 xl('Means none of last three passwords are allowed when changing a password.')
1832 'password_compatibility' => array(
1833 xl('Permit unsalted passwords'),
1834 'bool', // data type
1835 '1', // default
1836 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')
1839 'password_expiration_days' => array(
1840 xl('Default Password Expiration Days'),
1841 'num', // data type
1842 '0', // default
1843 xl('Default password expiration period in days. 0 means this feature is disabled.')
1846 'password_grace_time' => array(
1847 xl('Password Expiration Grace Period'),
1848 'num', // data type
1849 '0', // default
1850 xl('Period in days where a user may login with an expired password.')
1853 'is_client_ssl_enabled' => array(
1854 xl('Enable Client SSL'),
1855 'bool', // data type
1856 '0', // default
1857 xl('Enable client SSL certificate authentication.')
1860 'certificate_authority_crt' => array(
1861 xl('Path to CA Certificate File'),
1862 'text', // data type
1863 '', // default
1864 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1867 'certificate_authority_key' => array(
1868 xl('Path to CA Key File'),
1869 'text', // data type
1870 '', // default
1871 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1874 'client_certificate_valid_in_days' => array(
1875 xl('Client Certificate Expiration Days'),
1876 'num', // data type
1877 '365', // default
1878 xl('Number of days that the client certificate is valid.')
1881 'Emergency_Login_email_id' => array(
1882 xl('Emergency Login Email Address'),
1883 'text', // data type
1884 '', // default
1885 xl('Email address, if any, to receive emergency login user activation messages.')
1888 'new_validate' => array(
1889 xl('New form validation'),
1890 'bool',
1891 '1',
1892 xl('New form validation')
1895 'allow_multiple_databases' => array(
1896 xl('Allow multiple databases'),
1897 'bool',
1898 '0',
1899 xl('Allow to use with multiple database')
1902 'safe_key_database' => array(
1903 xl('Safe key database'),
1904 'text', // data type
1905 '', // default
1906 xl('Key for multiple database credentials encryption')
1909 'use_active_directory' => array(
1910 xl('Use Active Directory'),
1911 'bool',
1912 '0',
1913 xl('If enabled, uses the specified active directory for login and authentication.')
1916 'account_suffix' => array(
1917 xl('Active Directory - Suffix Of Account'),
1918 'text',
1920 xl('The suffix of the account.')
1923 'base_dn' => array(
1924 xl('Active Directory - Domains Base'),
1925 'text',
1927 xl('Users is the standard windows CN, replace the DC stuff with your domain.')
1930 'domain_controllers' => array(
1931 xl('Active Directory - Domains Controllers'),
1932 'text',
1934 xl('The IP address of your domain controller(s).')
1939 // Notifications Tab
1941 'Notifications' => array(
1943 'patient_reminder_sender_name' => array(
1944 xl('Patient Reminder Sender Name'),
1945 'text', // data type
1946 '', // default
1947 xl('Name of the sender for patient reminders.')
1950 'patient_reminder_sender_email' => array(
1951 xl('Patient Reminder Sender Email'),
1952 'text', // data type
1953 '', // default
1954 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.')
1957 'practice_return_email_path' => array(
1958 xl('Notification Email Address'),
1959 'text', // data type
1960 '', // default
1961 xl('Email address, if any, to receive administrative notifications.')
1964 'EMAIL_METHOD' => array(
1965 xl('Email Transport Method'),
1966 array(
1967 'PHPMAIL' => 'PHPMAIL',
1968 'SENDMAIL' => 'SENDMAIL',
1969 'SMTP' => 'SMTP',
1971 'SMTP', // default
1972 xl('Method for sending outgoing email.')
1975 'SMTP_HOST' => array(
1976 xl('SMTP Server Hostname'),
1977 'text', // data type
1978 'localhost', // default
1979 xl('If SMTP is used, the server`s hostname or IP address.')
1982 'SMTP_PORT' => array(
1983 xl('SMTP Server Port Number'),
1984 'num', // data type
1985 '25', // default
1986 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1989 'SMTP_USER' => array(
1990 xl('SMTP User for Authentication'),
1991 'text', // data type
1992 '', // default
1993 xl('Must be empty if SMTP authentication is not used.')
1996 'SMTP_PASS' => array(
1997 xl('SMTP Password for Authentication'),
1998 'encrypted', // data type
1999 '', // default
2000 xl('Must be empty if SMTP authentication is not used.')
2003 'SMTP_SECURE' => array(
2004 xl('SMTP Security Protocol'),
2005 array(
2006 '' => xl('None'),
2007 'ssl' => 'SSL',
2008 'tls' => 'TLS'
2011 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
2014 'EMAIL_NOTIFICATION_HOUR' => array(
2015 xl('Email Notification Hours'),
2016 'num', // data type
2017 '50', // default
2018 xl('Number of hours in advance to send email notifications.')
2021 'SMS_NOTIFICATION_HOUR' => array(
2022 xl('SMS Notification Hours'),
2023 'num', // data type
2024 '50', // default
2025 xl('Number of hours in advance to send SMS notifications.')
2028 'SMS_GATEWAY_USENAME' => array(
2029 xl('SMS Gateway Username'),
2030 'text', // data type
2031 '', // default
2032 xl('Username for SMS Gateway.')
2035 'SMS_GATEWAY_PASSWORD' => array(
2036 xl('SMS Gateway Password'),
2037 'text', // data type
2038 '', // default
2039 xl('Password for SMS Gateway.')
2042 'SMS_GATEWAY_APIKEY' => array(
2043 xl('SMS Gateway API Key'),
2044 'text', // data type
2045 '', // default
2046 xl('API key for SMS Gateway.')
2049 'phone_notification_hour' => array(
2050 xl('Phone Notification Hour'),
2051 'num', // data type
2052 '50', // default
2053 xl('Number of hours in advance to send Phone notification.')
2056 'phone_gateway_username' => array(
2057 xl('Phone Gateway Username'),
2058 'text', // data type
2059 '', // default
2060 xl('Username for Phone Gateway.')
2063 'phone_gateway_password' => array(
2064 xl('Phone Gateway Password'),
2065 'encrypted', // data type
2066 '', // default
2067 xl('Password for Phone Gateway.')
2070 'phone_gateway_url' => array(
2071 xl('Phone Gateway URL'),
2072 'text', // data type
2073 '', // default
2074 xl('URL for Phone Gateway.')
2079 // CDR (Clinical Decision Rules)
2081 'CDR' => array(
2083 'enable_cdr' => array(
2084 xl('Enable Clinical Decisions Rules (CDR)'),
2085 'bool', // data type
2086 '1', // default
2087 xl('Enable Clinical Decisions Rules (CDR)')
2090 'enable_allergy_check' => array(
2091 xl('Enable Allergy Check'),
2092 'bool', // data type
2093 '1', // default
2094 xl('Enable Allergy Check Against Medications and Prescriptions')
2097 'enable_alert_log' => array(
2098 xl('Enable Alert Log'),
2099 'bool', // data type
2100 '1', // default
2101 xl('Enable Alert Logging')
2104 'enable_cdr_new_crp' => array(
2105 xl('Enable Clinical Passive New Reminder(s) Popup'),
2106 'bool', // data type
2107 '1', // default
2108 xl('Enable Clinical Passive New Reminder(s) Popup')
2111 'enable_cdr_crw' => array(
2112 xl('Enable Clinical Passive Reminder Widget'),
2113 'bool', // data type
2114 '1', // default
2115 xl('Enable Clinical Passive Reminder Widget')
2118 'enable_cdr_crp' => array(
2119 xl('Enable Clinical Active Reminder Popup'),
2120 'bool', // data type
2121 '1', // default
2122 xl('Enable Clinical Active Reminder Popup')
2125 'enable_cdr_prw' => array(
2126 xl('Enable Patient Reminder Widget'),
2127 'bool', // data type
2128 '1', // default
2129 xl('Enable Patient Reminder Widget')
2132 'enable_cqm' => array(
2133 xl('Enable CQM Reporting'),
2134 'bool', // data type
2135 '1', // default
2136 xl('Enable Clinical Quality Measure (CQM) Reporting')
2139 'pqri_registry_name' => array(
2140 xl('PQRI Registry Name'),
2141 'text', // data type
2142 'Model Registry', // default
2143 xl('PQRI Registry Name')
2146 'pqri_registry_id' => array(
2147 xl('PQRI Registry ID'),
2148 'text', // data type
2149 '125789123', // default
2150 xl('PQRI Registry ID')
2153 'enable_amc' => array(
2154 xl('Enable AMC Reporting'),
2155 'bool', // data type
2156 '1', // default
2157 xl('Enable Automated Measure Calculations (AMC) Reporting')
2160 'enable_amc_prompting' => array(
2161 xl('Enable AMC Prompting'),
2162 'bool', // data type
2163 '1', // default
2164 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
2167 'enable_amc_tracking' => array(
2168 xl('Enable AMC Tracking'),
2169 'bool', // data type
2170 '1', // default
2171 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
2174 'cdr_report_nice' => array(
2175 xl('CDR Reports Processing Priority'),
2176 array(
2177 '' => xl('Default Priority'),
2178 '5' => xl('Moderate Priority'),
2179 '10' => xl('Moderate/Low Priority'),
2180 '15' => xl('Low Priority'),
2181 '20' => xl('Lowest Priority')
2183 '', // default
2184 xl('Set processing priority for CDR engine based reports.')
2187 'pat_rem_clin_nice' => array(
2188 xl('Patient Reminder Creation Processing Priority'),
2189 array(
2190 '' => xl('Default Priority'),
2191 '5' => xl('Moderate Priority'),
2192 '10' => xl('Moderate/Low Priority'),
2193 '15' => xl('Low Priority'),
2194 '20' => xl('Lowest Priority')
2196 '', // default
2197 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2200 'report_itemizing_standard' => array(
2201 xl('Enable Standard Report Itemization'),
2202 'bool', // data type
2203 '1', // default
2204 xl('Enable Itemization of Standard Clinical Rules Reports')
2207 'report_itemizing_cqm' => array(
2208 xl('Enable CQM Report Itemization'),
2209 'bool', // data type
2210 '1', // default
2211 xl('Enable Itemization of CQM Reports')
2214 'report_itemizing_amc' => array(
2215 xl('Enable AMC Report Itemization'),
2216 'bool', // data type
2217 '1', // default
2218 xl('Enable Itemization of AMC Reports')
2220 'dated_reminders_max_alerts_to_show' => array(
2221 xl('Dated reminders maximum alerts to show'),
2222 'num', // data type
2223 '5', // default
2224 xl('Dated reminders maximum alerts to show')
2226 'patient_birthday_alert' => array(
2227 xl('Alert on patient birthday'),
2228 array(
2229 '0' => xl('No alert'),
2230 '1' => xl('Alert only on birthday'),
2231 '2' => xl('Alert on and after birthday'),
2232 '3' => xl('Alert on and up to 28 days after birthday')
2234 '1', // default
2235 xl('Alert on patient birthday')
2237 'patient_birthday_alert_manual_off' => array(
2238 xl('Patient birthday alert requires turning off'),
2239 'bool', // data type
2240 '0', // default
2241 xl('Patient birthday alert requires turning off')
2245 // Logging
2247 'Logging' => array(
2249 'enable_auditlog' => array(
2250 xl('Enable Audit Logging'),
2251 'bool', // data type
2252 '1', // default
2253 xl('Enable Audit Logging')
2256 'audit_events_patient-record' => array(
2257 xl('Audit Logging Patient Record'),
2258 'bool', // data type
2259 '1', // default
2260 xl('Enable logging of patient record modifications.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2263 'audit_events_scheduling' => array(
2264 xl('Audit Logging Scheduling'),
2265 'bool', // data type
2266 '1', // default
2267 xl('Enable logging of scheduling activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2270 'audit_events_order' => array(
2271 xl('Audit Logging Order'),
2272 'bool', // data type
2273 '1', // default
2274 xl('Enable logging of ordering activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2277 'audit_events_security-administration' => array(
2278 xl('Audit Logging Security Administration'),
2279 'bool', // data type
2280 '1', // default
2281 xl('Enable logging of security and administration activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2284 'audit_events_backup' => array(
2285 xl('Audit Logging Backups'),
2286 'bool', // data type
2287 '1', // default
2288 xl('Enable logging of backup related activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2291 'audit_events_other' => array(
2292 xl('Audit Logging Miscellaneous'),
2293 'bool', // data type
2294 '1', // default
2295 xl('Enable logging of miscellaneous activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2298 'audit_events_query' => array(
2299 xl('Audit Logging SELECT Query'),
2300 'bool', // data type
2301 '0', // default
2302 xl('Enable logging of all SQL SELECT queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2305 'audit_events_cdr' => array(
2306 xl('Audit CDR Engine Queries'),
2307 'bool', // data type
2308 '0', // default
2309 xl('Enable logging of CDR Engine Queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2312 'enable_atna_audit' => array(
2313 xl('Enable ATNA Auditing'),
2314 'bool', // data type
2315 '0', // default
2316 xl('Enable Audit Trail and Node Authentication (ATNA).')
2319 'atna_audit_host' => array(
2320 xl('ATNA audit host'),
2321 'text', // data type
2322 '', // default
2323 xl('The hostname of the ATNA audit repository machine.')
2326 'atna_audit_port' => array(
2327 xl('ATNA audit port'),
2328 'text', // data type
2329 '6514', // default
2330 xl('Listening port of the RFC 5425 TLS syslog server.')
2333 'atna_audit_localcert' => array(
2334 xl('ATNA audit local certificate'),
2335 'text', // data type
2336 '', // default
2337 xl('Certificate to send to RFC 5425 TLS syslog server.')
2340 'atna_audit_cacert' => array(
2341 xl('ATNA audit CA certificate'),
2342 'text', // data type
2343 '', // default
2344 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2347 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
2348 'enable_auditlog_encryption' => array(
2349 xl('Enable Audit Log Encryption'),
2350 'bool', // data type
2351 '0', // default
2352 xl('Enable Audit Log Encryption')
2355 'billing_log_option' => array(
2356 xl('Billing Log Option'),
2357 array(
2358 '1' => xl('Billing Log Append'),
2359 '2' => xl('Billing Log Overwrite')
2361 '1', // default
2362 xl('Billing log setting to append or overwrite the log file.')
2365 'gbl_print_log_option' => array(
2366 xl('Printing Log Option'),
2367 array(
2368 '0' => xl('No logging'),
2369 '1' => xl('Hide print feature'),
2370 '2' => xl('Log entire document'),
2372 '0', // default
2373 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2378 // Miscellaneous Tab
2380 'Miscellaneous' => array(
2382 'mysql_bin_dir' => array(
2383 xl('Path to MySQL Binaries'),
2384 'text', // data type
2385 $mysql_bin_dir, // default
2386 xl('Full path to directory containing MySQL executables.')
2389 'perl_bin_dir' => array(
2390 xl('Path to Perl Binaries'),
2391 'text', // data type
2392 $perl_bin_dir, // default
2393 xl('Full path to directory containing Perl executables.')
2396 'temporary_files_dir' => array(
2397 xl('Path to Temporary Files'),
2398 'text', // data type
2399 $temporary_files_dir, // default
2400 xl('Full path to directory used for temporary files.')
2403 'backup_log_dir' => array(
2404 xl('Path for Event Log Backup'),
2405 'text', // data type
2406 $backup_log_dir, // default
2407 xl('Full path to directory for event log backup.')
2410 'state_data_type' => array(
2411 xl('State Data Type'),
2412 array(
2413 '2' => xl('Text field'),
2414 '1' => xl('Single-selection list'),
2415 '26' => xl('Single-selection list with ability to add to the list'),
2417 '26', // default
2418 xl('Field type to use for employer or subscriber state in demographics.')
2421 'state_list' => array(
2422 xl('State list'),
2423 'text', // data type
2424 'state', // default
2425 xl('List used by above State Data Type option.')
2428 'state_custom_addlist_widget' => array(
2429 xl('State List Widget Custom Fields'),
2430 'bool', // data type
2431 '1', // default
2432 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2435 'country_data_type' => array(
2436 xl('Country Data Type'),
2437 array(
2438 '2' => xl('Text field'),
2439 '1' => xl('Single-selection list'),
2440 '26' => xl('Single-selection list with ability to add to the list'),
2442 '26', // default
2443 xl('Field type to use for employer or subscriber country in demographics.')
2446 'country_list' => array(
2447 xl('Country list'),
2448 'text', // data type
2449 'country', // default
2450 xl('List used by above Country Data Type option.')
2453 'print_command' => array(
2454 xl('Print Command'),
2455 'text', // data type
2456 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2457 xl('Shell command for printing from the server.')
2460 'default_chief_complaint' => array(
2461 xl('Default Reason for Visit'),
2462 'text', // data type
2464 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2467 'MedicareReferrerIsRenderer' => array(
2468 xl('Medicare Referrer Is Renderer'),
2469 'bool', // data type
2470 '0', // default = true
2471 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2474 'post_to_date_benchmark' => array(
2475 xl('Financial Close Date (yyyy-mm-dd)'),
2476 'text', // data type
2477 date('Y-m-d', time() - (10 * 24 * 60 * 60)), // default
2478 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2481 'enable_hylafax' => array(
2482 xl('Enable Hylafax Support'),
2483 'bool', // data type
2484 '0', // default
2485 xl('Enable Hylafax Support')
2488 'hylafax_server' => array(
2489 xl('Hylafax Server'),
2490 'text', // data type
2491 'localhost', // default
2492 xl('Hylafax server hostname.')
2495 'hylafax_basedir' => array(
2496 xl('Hylafax Directory'),
2497 'text', // data type
2498 '/var/spool/hylafax', // default
2499 xl('Location where Hylafax stores faxes.')
2502 'hylafax_enscript' => array(
2503 xl('Hylafax Enscript Command'),
2504 'text', // data type
2505 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2506 xl('Enscript command used by Hylafax.')
2509 'enable_scanner' => array(
2510 xl('Enable Scanner Support'),
2511 'bool', // data type
2512 '0', // default
2513 xl('Enable Scanner Support')
2516 'scanner_output_directory' => array(
2517 xl('Scanner Directory'),
2518 'text', // data type
2519 '/mnt/scan_docs', // default
2520 xl('Location where scans are stored.')
2524 // Portal Tab
2526 'Portal' => array(
2528 'portal_onsite_two_enable' => array(
2529 xl('Enable Version 2 Onsite Patient Portal'),
2530 'bool', // data type
2531 '0',
2532 xl('Enable Version 2 Onsite Patient Portal')
2535 'portal_onsite_two_address' => array(
2536 xl('Version 2 Onsite Patient Portal Site Address'),
2537 'text', // data type
2538 'https://your_web_site.com/openemr/portal',
2539 xl('Website link for the Version 2 Onsite Patient Portal.')
2542 'portal_onsite_two_basepath' => array(
2543 xl('Portal Uses Server Base Path (internal)'),
2544 'bool',
2545 '0',
2546 xl('Use servers protocol and host in urls (portal internal only).')
2549 'enforce_signin_email' => array(
2550 xl('Enforce E-Mail in Portal Log On Dialog'),
2551 'bool', // data type
2552 '1',
2553 xl('Patient is required to enter their contact e-mail if present in Demographics Contact.')
2556 'portal_onsite_two_register' => array(
2557 xl('Allow Version 2 Onsite New Patient Registration Widget'),
2558 'bool', // data type
2559 '1',
2560 xl('Enable Version 2 Onsite Patient Portal new patient to self register.')
2563 'allow_portal_appointments' => array(
2564 xl('Allow Version 2 Onsite Online Appointments'),
2565 'bool', // data type
2566 '1',
2567 xl('Allow Version 2 Onsite Patient to make and view appointments online.')
2570 'allow_portal_chat' => array(
2571 xl('Allow Version 2 Onsite Online Secure Chat'),
2572 'bool', // data type
2573 '1',
2574 xl('Allow Version 2 Onsite Patient to use Secure Chat Application.')
2577 'portal_two_ledger' => array(
2578 xl('Allow Version 2 Onsite Patient Ledger'),
2579 'bool', // data type
2580 '1',
2581 xl('Allow Version 2 Onsite Patient to view their accounting ledger online.')
2584 'portal_two_payments' => array(
2585 xl('Allow Version 2 Onsite Online Payments'),
2586 'bool', // data type
2587 '0',
2588 xl('Allow Version 2 Onsite Patient to make payments online.')
2591 'portal_two_pass_reset' => array(
2592 xl('Allow Version 2 Patients to Reset Credentials'),
2593 'bool', // data type
2594 '0',
2595 xl('Patient may change their logon from portal login dialog.')
2598 'portal_onsite_document_download' => array(
2599 xl('Enable Onsite Patient Portal Document Download'),
2600 'bool', // data type
2601 '1',
2602 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2605 'portal_onsite_enable' => array(
2606 xl('Enable Version 1 Onsite Patient Portal'),
2607 'bool', // data type
2608 '0',
2609 xl('Enable Version 1 Onsite Patient Portal')
2612 'portal_onsite_address' => array(
2613 xl('Version 1 Onsite Patient Portal Site Address'),
2614 'text', // data type
2615 'https://your_web_site.com/openemr/patients',
2616 xl('Website link for the Version 1 Onsite Patient Portal.')
2619 'portal_offsite_enable' => array(
2620 xl('Enable Offsite Patient Portal'),
2621 'bool', // data type
2622 '0',
2623 xl('Enable Offsite Patient Portal.')
2625 'portal_offsite_providerid' => array(
2626 xl('Offsite Patient Portal Provider ID'),
2627 'text', // data type
2629 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2632 'portal_offsite_username' => array(
2633 xl('Offsite Patient Portal Username'),
2634 'text', // data type
2636 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2639 'portal_offsite_password' => array(
2640 xl('Offsite Patient Portal Password'),
2641 'pwd', // data type
2643 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2646 'portal_offsite_address' => array(
2647 xl('Offsite Patient Portal Site Address'),
2648 'text', // data type
2649 'https://ssh.mydocsportal.com/provider.php',
2650 xl('Offsite Https link for the Patient Portal.')
2653 'portal_offsite_address_patient_link' => array(
2654 xl('Offsite Patient Portal Site Address (Patient Link)'),
2655 'text', // data type
2656 'https://ssh.mydocsportal.com',
2657 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2660 // Currently the "CMS Portal" supports WordPress. Other Content Management
2661 // Systems may be supported in the future.
2663 'gbl_portal_cms_enable' => array(
2664 xl('Enable CMS Portal'),
2665 'bool', // data type
2666 '0',
2667 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2670 'gbl_portal_cms_address' => array(
2671 xl('CMS Portal Site Address'),
2672 'text', // data type
2673 'https://your_cms_site.com/',
2674 xl('URL for the WordPress site that supports the portal')
2677 'gbl_portal_cms_username' => array(
2678 xl('CMS Portal Username'),
2679 'text', // data type
2681 xl('Login name of WordPress user for portal access')
2684 'gbl_portal_cms_password' => array(
2685 xl('CMS Portal Password'),
2686 'encrypted', // data type
2688 xl('Password for the above user')
2693 // Connectors Tab
2695 'Connectors' => array(
2697 'fhir_enable' => array(
2698 xl('Enable FHIR Provider Client Service'),
2699 array(
2700 0 => xl('Off: No Service.'),
2701 1 => xl('On: HAPI FHIR.'),
2702 2 => xl('On: Smart on FHIR.'),
2704 '0',
2705 xl('Enable FHIR Provider Client Service')
2708 'fhir_base_url' => array(
2709 xl('FHIR Server Base Address'),
2710 'text',
2711 'https://hapi.fhir.org/baseDstu3/',
2712 xl('Base URL for FHIR Server.')
2715 'rest_api' => array(
2716 xl('Enable OpenEMR REST API'),
2717 'bool',
2718 '0',
2719 xl('Enable OpenEMR RESTful API. SSL Required')
2722 'payment_gateway' => array(
2723 xl('Select Credit Card Payment Gateway'),
2724 array(
2725 'InHouse' => xl('In House'),
2726 'AuthorizeNet' => xl('Authorize.Net'),
2727 'Stripe' => xl('Stripe')
2729 'InHouse',
2730 xl('Enable a Payment Gateway Service for processing credit card transactions')
2733 'gateway_mode_production' => array(
2734 xl('Set Gateway to Production Mode'),
2735 'bool', // data type
2736 '0',
2737 xl('Check this to go live. Not checked is testing mode.')
2740 'gateway_public_key' => array(
2741 xl('Gateway Publishable Key'),
2742 'encrypted',
2744 xl('The public access key for secure tokenize of credit or debit card authorization. PCI compliance')
2747 'gateway_api_key' => array(
2748 xl('Gateway API Login Auth Name or Secret'),
2749 'encrypted',
2751 xl('The Auth Name or API key for selected account.Auth Name for Authorize.Net and API Secret for Stripe')
2754 'gateway_transaction_key' => array(
2755 xl('Gateway Transaction Key'),
2756 'encrypted',
2758 xl('Mainly Authorize.Net uses two keys')
2761 'medex_enable' => array(
2762 xl('Enable MedEx Communication Service'),
2763 'bool', // data type
2764 '0',
2765 xl('Enable MedEx Communication Service')
2768 'erx_enable' => array(
2769 xl('Enable NewCrop eRx Service'),
2770 'bool',
2771 '0',
2772 xl('Enable NewCrop eRx Service.') . ' ' .
2773 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.')
2776 'erx_newcrop_path' => array(
2777 xl('NewCrop eRx Site Address'),
2778 'text',
2779 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2780 xl('URL for NewCrop eRx Site Address.')
2783 'erx_newcrop_path_soap' => array(
2784 xl('NewCrop eRx Web Service Address'),
2785 'text',
2786 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2787 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2790 'erx_soap_ttl_allergies' => array(
2791 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2792 'num',
2793 '21600',
2794 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2797 'erx_soap_ttl_medications' => array(
2798 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2799 'num',
2800 '21600',
2801 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2804 'erx_account_partner_name' => array(
2805 xl('NewCrop eRx Partner Name'),
2806 'text',
2808 xl('Partner Name issued for NewCrop eRx service.')
2811 'erx_account_name' => array(
2812 xl('NewCrop eRx Name'),
2813 'text',
2815 xl('Account Name issued for NewCrop eRx service.')
2818 'erx_account_password' => array(
2819 xl('NewCrop eRx Password'),
2820 'encrypted',
2822 xl('Account Password issued for NewCrop eRx service.')
2825 'erx_account_id' => array(
2826 xl('NewCrop eRx Account Id'),
2827 'text',
2828 '1',
2829 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2832 'erx_upload_active' => array(
2833 xl('Only upload active prescriptions'),
2834 'bool',
2835 '0',
2836 xl('Only upload active prescriptions to NewCrop eRx.')
2839 'erx_import_status_message' => array(
2840 xl('Enable NewCrop eRx import status message'),
2841 'bool',
2842 '0',
2843 xl('Enable import status message after visiting NewCrop eRx.')
2846 'erx_medication_display' => array(
2847 xl('Do not display NewCrop eRx Medications uploaded'),
2848 'bool',
2849 '0',
2850 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2853 'erx_allergy_display' => array(
2854 xl('Do not display NewCrop eRx Allergy uploaded'),
2855 'bool',
2856 '0',
2857 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2860 'erx_default_patient_country' => array(
2861 xl('NewCrop eRx Default Patient Country'),
2862 array(
2863 '' => '',
2864 'US' => xl('USA'),
2865 'CA' => xl('Canada'),
2866 'MX' => xl('Mexico'),
2869 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2872 'erx_debug_setting' => array(
2873 xl('NewCrop eRx Debug Setting'),
2874 array(
2875 0 => xl('None'),
2876 1 => xl('Request Only'),
2877 2 => xl('Response Only'),
2878 3 => xl('Request & Response'),
2880 '0',
2881 xl('Log all NewCrop eRx Requests and / or Responses.'),
2884 'weno_rx_enable' => array(
2885 xl('Enable Weno eRx Service'),
2886 'bool',
2887 '0',
2888 xl('Enable Weno eRx Service') . ' ' . xl('Contact Open Med Practice, www.openmedpractice.com for subscribing to the Weno Free eRx service.')
2891 'weno_account_id' => array(
2892 xl('Weno eRx Account Id'),
2893 'text',
2894 '137',
2895 xl('Account Id issued for Weno eRx service.')
2898 'weno_account_pass' => array(
2899 xl('Weno eRx Account Pass'),
2900 'encrypted', // data type
2901 '7C84773D5063B20BC9E41636A091C6F17E9C1E34',
2902 xl('Account Id issued for Weno eRx service.')
2905 'weno_provider_id' => array(
2906 xl('Weno eRx Clinic ID'),
2907 'text',
2908 'C36275',
2909 xl('Account Id issued for Your clinics eRx service.')
2912 'ccda_alt_service_enable' => array(
2913 xl('Enable C-CDA Alternate Service'),
2914 array(
2915 0 => xl('Off'),
2916 1 => xl('Care Coordination Only'),
2917 2 => xl('Portal Only'),
2918 3 => xl('Both'),
2920 '0',
2921 xl('Enable C-CDA Alternate Service')
2924 'phimail_enable' => array(
2925 xl('Enable phiMail Direct Messaging Service'),
2926 'bool', // data type
2927 '0',
2928 xl('Enable phiMail Direct Messaging Service')
2931 'phimail_server_address' => array(
2932 xl('phiMail Server Address'),
2933 'text', // data type
2934 'https://phimail.example.com:32541',
2935 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2938 'phimail_username' => array(
2939 xl('phiMail Username'),
2940 'text', // data type
2942 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2945 'phimail_password' => array(
2946 xl('phiMail Password'),
2947 'encrypted', // data type
2949 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2952 'phimail_notify' => array(
2953 xl('phiMail notification user'),
2954 'text', // data type
2955 'admin',
2956 xl('This user will receive notification of new incoming Direct messages')
2959 'phimail_interval' => array(
2960 xl('phiMail Message Check Interval (minutes)'),
2961 'num', // data type
2962 '5',
2963 xl('Interval between message checks (set to zero for manual checks only)')
2966 'phimail_ccd_enable' => array(
2967 xl('phiMail Allow CCD Send'),
2968 'bool', // data type
2969 '0',
2970 xl('phiMail Allow CCD Send')
2973 'phimail_ccr_enable' => array(
2974 xl('phiMail Allow CCR Send'),
2975 'bool', // data type
2976 '0',
2977 xl('phiMail Allow CCR Send')
2981 'Rx' => array(
2982 'rx_enable_DEA' => array(
2983 xl('Rx Enable DEA #'),
2984 'bool', // data type
2985 '1',
2986 xl('Rx Enable DEA #')
2988 'rx_show_DEA' => array(
2989 xl('Rx Show DEA #'),
2990 'bool', // data type
2991 '0',
2992 xl('Rx Show DEA #')
2994 'rx_enable_NPI' => array(
2995 xl('Rx Enable NPI'),
2996 'bool', // data type
2997 '0',
2998 xl('Rx Enable NPI')
3000 'rx_show_NPI' => array(
3001 xl('Rx Show NPI'),
3002 'bool', // data type
3003 '0',
3004 xl('Rx Show NPI')
3006 'rx_enable_SLN' => array(
3007 xl('Rx Enable State Lic. #'),
3008 'bool', // data type
3009 '0',
3010 xl('Rx Enable State Lic. #')
3012 'rx_show_SLN' => array(
3013 xl('Rx Show State Lic. #'),
3014 'bool', // data type
3015 '0',
3016 xl('Rx Show State Lic. #')
3018 'rx_show_drug_drug' => array(
3019 xl('Rx NLM Drug-Drug'),
3020 'bool', // data type
3021 '0',
3022 xl('Rx NLM Drug-Drug')
3024 'rx_paper_size' => array(
3025 xl('Rx Paper Size'), // descriptive name
3026 array(
3027 'LETTER' => xl('Letter Paper Size'),
3028 'LEGAL' => xl('Legal Paper Size'),
3029 'FOLIO' => xl('Folio Paper Size'),
3030 'EXECUTIVE' => xl('Executive Paper Size'),
3031 '4A0' => ('4A0' . " " . xl('Paper Size')),
3032 '2A0' => ('2A0' . " " . xl('Paper Size')),
3033 'A0' => ('A0' . " " . xl('Paper Size')),
3034 'A1' => ('A1' . " " . xl('Paper Size')),
3035 'A2' => ('A2' . " " . xl('Paper Size')),
3036 'A3' => ('A3' . " " . xl('Paper Size')),
3037 'A4' => ('A4' . " " . xl('Paper Size')),
3038 'A5' => ('A5' . " " . xl('Paper Size')),
3039 'A6' => ('A6' . " " . xl('Paper Size')),
3040 'A7' => ('A7' . " " . xl('Paper Size')),
3041 'A8' => ('A8' . " " . xl('Paper Size')),
3042 'A9' => ('A9' . " " . xl('Paper Size')),
3043 'A10' => ('A10' . " " . xl('Paper Size')),
3044 'B0' => ('B0' . " " . xl('Paper Size')),
3045 'B1' => ('B1' . " " . xl('Paper Size')),
3046 'B2' => ('B2' . " " . xl('Paper Size')),
3047 'B3' => ('B3' . " " . xl('Paper Size')),
3048 'B4' => ('B4' . " " . xl('Paper Size')),
3049 'B5' => ('B5' . " " . xl('Paper Size')),
3050 'B6' => ('B6' . " " . xl('Paper Size')),
3051 'B7' => ('B7' . " " . xl('Paper Size')),
3052 'B8' => ('B8' . " " . xl('Paper Size')),
3053 'B9' => ('B9' . " " . xl('Paper Size')),
3054 'B10' => ('B10' . " " . xl('Paper Size')),
3055 'C0' => ('C0' . " " . xl('Paper Size')),
3056 'C1' => ('C1' . " " . xl('Paper Size')),
3057 'C2' => ('C2' . " " . xl('Paper Size')),
3058 'C3' => ('C3' . " " . xl('Paper Size')),
3059 'C4' => ('C4' . " " . xl('Paper Size')),
3060 'C5' => ('C5' . " " . xl('Paper Size')),
3061 'C6' => ('C6' . " " . xl('Paper Size')),
3062 'C7' => ('C7' . " " . xl('Paper Size')),
3063 'C8' => ('C8' . " " . xl('Paper Size')),
3064 'C9' => ('C9' . " " . xl('Paper Size')),
3065 'C10' => ('C10' . " " . xl('Paper Size')),
3066 'RA0' => ('RA0' . " " . xl('Paper Size')),
3067 'RA1' => ('RA1' . " " . xl('Paper Size')),
3068 'RA2' => ('RA2' . " " . xl('Paper Size')),
3069 'RA3' => ('RA3' . " " . xl('Paper Size')),
3070 'RA4' => ('RA4' . " " . xl('Paper Size')),
3071 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3072 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3073 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3074 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3075 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3077 'LETTER', // default = tree menu
3078 xl('Rx Paper Size')
3080 'rx_left_margin' => array(
3081 xl('Rx Left Margin (px)'),
3082 'num',
3083 '30',
3084 xl('Rx Left Margin (px)')
3086 'rx_right_margin' => array(
3087 xl('Rx Right Margin (px)'),
3088 'num',
3089 '30',
3090 xl('Rx Right Margin (px)')
3092 'rx_top_margin' => array(
3093 xl('Rx Top Margin (px)'),
3094 'num',
3095 '72',
3096 xl('Rx Top Margin (px)')
3098 'rx_bottom_margin' => array(
3099 xl('Rx Bottom Margin (px)'),
3100 'num',
3101 '30',
3102 xl('Rx Bottom Margin (px)')
3104 'rx_use_fax_template' => array(
3105 xl('Show button for download fax template'),
3106 'bool', // data type
3107 '1', // default = true
3108 xl('Show button in the prescription list for download fax template')
3110 'rx_zend_html_template' => array(
3111 xl('Rx html print - zend module'),
3112 'bool', // data type
3113 '0', // default = false
3114 xl('Use an html template from zend module')
3116 'rx_zend_html_action' => array(
3117 xl('Name of zend template for html print'),
3118 'text', // data type
3119 'default',
3120 xl('Name of zend template for html print, possible to add custom template in the PrescriptionTemplate module')
3122 'rx_zend_pdf_template' => array(
3123 xl('Rx pdf - zend template'),
3124 'bool', // data type
3125 '0', // default = false
3126 xl('Use a pdf template from zend module')
3128 'rx_zend_pdf_action' => array(
3129 xl('Name of zend template for pdf export'),
3130 'text', // data type
3131 'default',
3132 xl('Name of zend template for pdf export, possible to add custom template in the PrescriptionTemplate module')
3135 'PDF' => array(
3136 'pdf_layout' => array(
3137 xl('Layout'),
3138 array(
3139 'P' => xl('Portrait'),
3140 'L' => xl('Landscape')
3142 'P', //defaut
3143 xl("Choose Layout Direction"),
3145 'pdf_language' => array(
3146 xl('PDF Language'),
3147 array(
3148 'aa' => xl('Afar'),
3149 'af' => xl('Afrikaans'),
3150 'ak' => xl('Akan'),
3151 'sq' => xl('Albanian'),
3152 'am' => xl('Amharic'),
3153 'ar' => xl('Arabic'),
3154 'an' => xl('Aragonese'),
3155 'hy' => xl('Armenian'),
3156 'as' => xl('Assamese'),
3157 'av' => xl('Avaric'),
3158 'ae' => xl('Avestan'),
3159 'ay' => xl('Aymara'),
3160 'az' => xl('Azerbaijani'),
3161 'bm' => xl('Bambara'),
3162 'ba' => xl('Bashkir'),
3163 'eu' => xl('Basque'),
3164 'be' => xl('Belarusian'),
3165 'bn' => xl('Bengali- Bangla'),
3166 'bh' => xl('Bihari'),
3167 'bi' => xl('Bislama'),
3168 'bs' => xl('Bosnian'),
3169 'br' => xl('Breton'),
3170 'bg' => xl('Bulgarian'),
3171 'my' => xl('Burmese'),
3172 'ca' => xl('Catalan- Valencian'),
3173 'ch' => xl('Chamorro'),
3174 'ce' => xl('Chechen'),
3175 'ny' => xl('Chichewa- Chewa- Nyanja'),
3176 'zh' => xl('Chinese'),
3177 'cv' => xl('Chuvash'),
3178 'kw' => xl('Cornish'),
3179 'co' => xl('Corsican'),
3180 'cr' => xl('Cree'),
3181 'hr' => xl('Croatian'),
3182 'cs' => xl('Czech'),
3183 'da' => xl('Danish'),
3184 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
3185 'nl' => xl('Dutch'),
3186 'dz' => xl('Dzongkha'),
3187 'en' => xl('English'),
3188 'eo' => xl('Esperanto'),
3189 'et' => xl('Estonian'),
3190 'ee' => xl('Ewe'),
3191 'fo' => xl('Faroese'),
3192 'fj' => xl('Fijian'),
3193 'fi' => xl('Finnish'),
3194 'fr' => xl('French'),
3195 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
3196 'gl' => xl('Galician'),
3197 'ka' => xl('Georgian'),
3198 'de' => xl('German'),
3199 'el' => xl('Greek, Modern'),
3200 'gn' => xl('Guarani'),
3201 'gu' => xl('Gujarati'),
3202 'ht' => xl('Haitian- Haitian Creole'),
3203 'ha' => xl('Hausa'),
3204 'he' => xl('Hebrew (modern)'),
3205 'hz' => xl('Herero'),
3206 'hi' => xl('Hindi'),
3207 'ho' => xl('Hiri Motu'),
3208 'hu' => xl('Hungarian'),
3209 'ia' => xl('Interlingua'),
3210 'id' => xl('Indonesian'),
3211 'ie' => xl('Interlingue'),
3212 'ga' => xl('Irish'),
3213 'ig' => xl('Igbo'),
3214 'ik' => xl('Inupiaq'),
3215 'io' => xl('Ido'),
3216 'is' => xl('Icelandic'),
3217 'it' => xl('Italian'),
3218 'iu' => xl('Inuktitut'),
3219 'ja' => xl('Japanese'),
3220 'jv' => xl('Javanese'),
3221 'kl' => xl('Kalaallisut, Greenlandic'),
3222 'kn' => xl('Kannada'),
3223 'kr' => xl('Kanuri'),
3224 'ks' => xl('Kashmiri'),
3225 'kk' => xl('Kazakh'),
3226 'km' => xl('Khmer'),
3227 'ki' => xl('Kikuyu, Gikuyu'),
3228 'rw' => xl('Kinyarwanda'),
3229 'ky' => xl('Kyrgyz'),
3230 'kv' => xl('Komi'),
3231 'kg' => xl('Kongo'),
3232 'ko' => xl('Korean'),
3233 'ku' => xl('Kurdish'),
3234 'kj' => xl('Kwanyama, Kuanyama'),
3235 'la' => xl('Latin'),
3236 'lb' => xl('Luxembourgish, Letzeburgesch'),
3237 'lg' => xl('Ganda'),
3238 'li' => xl('Limburgish, Limburgan, Limburger'),
3239 'ln' => xl('Lingala'),
3240 'lo' => xl('Lao'),
3241 'lt' => xl('Lithuanian'),
3242 'lu' => xl('Luba-Katanga'),
3243 'lv' => xl('Latvian'),
3244 'gv' => xl('Manx'),
3245 'mk' => xl('Macedonian'),
3246 'mg' => xl('Malagasy'),
3247 'ms' => xl('Malay'),
3248 'ml' => xl('Malayalam'),
3249 'mt' => xl('Maltese'),
3250 'mi' => xl('Maori'),
3251 'mr' => xl('Marathi (Marathi)'),
3252 'mh' => xl('Marshallese'),
3253 'mn' => xl('Mongolian'),
3254 'na' => xl('Nauru'),
3255 'nv' => xl('Navajo, Navaho'),
3256 'nb' => xl('Norwegian Bokmal'),
3257 'nd' => xl('North Ndebele'),
3258 'ne' => xl('Nepali'),
3259 'ng' => xl('Ndonga'),
3260 'nn' => xl('Norwegian Nynorsk'),
3261 'no' => xl('Norwegian'),
3262 'ii' => xl('Nuosu'),
3263 'nr' => xl('South Ndebele'),
3264 'oc' => xl('Occitan'),
3265 'oj' => xl('Ojibwe, Ojibwa'),
3266 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
3267 'om' => xl('Oromo'),
3268 'or' => xl('Oriya'),
3269 'os' => xl('Ossetian, Ossetic'),
3270 'pa' => xl('Panjabi, Punjabi'),
3271 'pi' => xl('Pali'),
3272 'fa' => xl('Persian (Farsi)'),
3273 'pl' => xl('Polish'),
3274 'ps' => xl('Pashto, Pushto'),
3275 'pt' => xl('Portuguese'),
3276 'qu' => xl('Quechua'),
3277 'rm' => xl('Romansh'),
3278 'rn' => xl('Kirundi'),
3279 'ro' => xl('Romanian'),
3280 'ru' => xl('Russian'),
3281 'sa' => xl('Sanskrit (Samskrta)'),
3282 'sc' => xl('Sardinian'),
3283 'sd' => xl('Sindhi'),
3284 'se' => xl('Northern Sami'),
3285 'sm' => xl('Samoan'),
3286 'sg' => xl('Sango'),
3287 'sr' => xl('Serbian'),
3288 'gd' => xl('Scottish Gaelic- Gaelic'),
3289 'sn' => xl('Shona'),
3290 'si' => xl('Sinhala, Sinhalese'),
3291 'sk' => xl('Slovak'),
3292 'sl' => xl('Slovene'),
3293 'so' => xl('Somali'),
3294 'st' => xl('Southern Sotho'),
3295 'es' => xl('Spanish- Castilian'),
3296 'su' => xl('Sundanese'),
3297 'sw' => xl('Swahili'),
3298 'ss' => xl('Swati'),
3299 'sv' => xl('Swedish'),
3300 'ta' => xl('Tamil'),
3301 'te' => xl('Telugu'),
3302 'tg' => xl('Tajik'),
3303 'th' => xl('Thai'),
3304 'ti' => xl('Tigrinya'),
3305 'bo' => xl('Tibetan Standard, Tibetan, Central'),
3306 'tk' => xl('Turkmen'),
3307 'tl' => xl('Tagalog'),
3308 'tn' => xl('Tswana'),
3309 'to' => xl('Tonga (Tonga Islands)'),
3310 'tr' => xl('Turkish'),
3311 'ts' => xl('Tsonga'),
3312 'tt' => xl('Tatar'),
3313 'tw' => xl('Twi'),
3314 'ty' => xl('Tahitian'),
3315 'ug' => xl('Uyghur, Uighur'),
3316 'uk' => xl('Ukrainian'),
3317 'ur' => xl('Urdu'),
3318 'uz' => xl('Uzbek'),
3319 've' => xl('Venda'),
3320 'vi' => xl('Vietnamese'),
3321 'vo' => xl('Volapuk'),
3322 'wa' => xl('Walloon'),
3323 'cy' => xl('Welsh'),
3324 'wo' => xl('Wolof'),
3325 'fy' => xl('Western Frisian'),
3326 'xh' => xl('Xhosa'),
3327 'yi' => xl('Yiddish'),
3328 'yo' => xl('Yoruba'),
3329 'za' => xl('Zhuang, Chuang'),
3330 'zu' => xl('Zulu'),
3332 'en', // default English
3333 xl('Choose PDF languange Preference'),
3335 'pdf_size' => array(
3336 xl('Paper Size'), // Descriptive Name
3337 array(
3338 'LETTER' => xl('Letter Paper Size'),
3339 'LEGAL' => xl('Legal Paper Size'),
3340 'FOLIO' => xl('Folio Paper Size'),
3341 'EXECUTIVE' => xl('Executive Paper Size'),
3342 '4A0' => ('4A0' . " " . xl('Paper Size')),
3343 '2A0' => ('2A0' . " " . xl('Paper Size')),
3344 'A0' => ('A0' . " " . xl('Paper Size')),
3345 'A1' => ('A1' . " " . xl('Paper Size')),
3346 'A2' => ('A2' . " " . xl('Paper Size')),
3347 'A3' => ('A3' . " " . xl('Paper Size')),
3348 'A4' => ('A4' . " " . xl('Paper Size')),
3349 'A5' => ('A5' . " " . xl('Paper Size')),
3350 'A6' => ('A6' . " " . xl('Paper Size')),
3351 'A7' => ('A7' . " " . xl('Paper Size')),
3352 'A8' => ('A8' . " " . xl('Paper Size')),
3353 'A9' => ('A9' . " " . xl('Paper Size')),
3354 'A10' => ('A10' . " " . xl('Paper Size')),
3355 'B0' => ('B0' . " " . xl('Paper Size')),
3356 'B1' => ('B1' . " " . xl('Paper Size')),
3357 'B2' => ('B2' . " " . xl('Paper Size')),
3358 'B3' => ('B3' . " " . xl('Paper Size')),
3359 'B4' => ('B4' . " " . xl('Paper Size')),
3360 'B5' => ('B5' . " " . xl('Paper Size')),
3361 'B6' => ('B6' . " " . xl('Paper Size')),
3362 'B7' => ('B7' . " " . xl('Paper Size')),
3363 'B8' => ('B8' . " " . xl('Paper Size')),
3364 'B9' => ('B9' . " " . xl('Paper Size')),
3365 'B10' => ('B10' . " " . xl('Paper Size')),
3366 'C0' => ('C0' . " " . xl('Paper Size')),
3367 'C1' => ('C1' . " " . xl('Paper Size')),
3368 'C2' => ('C2' . " " . xl('Paper Size')),
3369 'C3' => ('C3' . " " . xl('Paper Size')),
3370 'C4' => ('C4' . " " . xl('Paper Size')),
3371 'C5' => ('C5' . " " . xl('Paper Size')),
3372 'C6' => ('C6' . " " . xl('Paper Size')),
3373 'C7' => ('C7' . " " . xl('Paper Size')),
3374 'C8' => ('C8' . " " . xl('Paper Size')),
3375 'C9' => ('C9' . " " . xl('Paper Size')),
3376 'C10' => ('C10' . " " . xl('Paper Size')),
3377 'RA0' => ('RA0' . " " . xl('Paper Size')),
3378 'RA1' => ('RA1' . " " . xl('Paper Size')),
3379 'RA2' => ('RA2' . " " . xl('Paper Size')),
3380 'RA3' => ('RA3' . " " . xl('Paper Size')),
3381 'RA4' => ('RA4' . " " . xl('Paper Size')),
3382 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3383 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3384 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3385 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3386 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3388 'LETTER',
3389 xl('Choose Paper Size')
3391 'pdf_left_margin' => array(
3392 xl('Left Margin (mm)'),
3393 'num',
3394 '5',
3395 xl('Left Margin (mm)')
3397 'pdf_right_margin' => array(
3398 xl('Right Margin (mm)'),
3399 'num',
3400 '5',
3401 xl('Right Margin (mm)')
3403 'pdf_top_margin' => array(
3404 xl('Top Margin (mm)'),
3405 'num',
3406 '5',
3407 xl('Top Margin (mm)')
3409 'pdf_bottom_margin' => array(
3410 xl('Bottom Margin (px)'),
3411 'num',
3412 '8',
3413 xl('Bottom Margin (px)')
3415 'pdf_output' => array(
3416 xl('Output Type'),
3417 array(
3418 'D' => xl('Download'),
3419 'I' => xl('Inline')
3421 'D', //defaut
3422 xl("Choose Download or Display Inline"),
3425 'chart_label_type' => array(
3426 xl('Patient Label Type'),
3427 array(
3428 '0' => xl('None'),
3429 '1' => '5160',
3430 '2' => '5161',
3431 '3' => '5162'
3433 '1', // default
3434 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3437 'barcode_label_type' => array(
3438 xl('Barcode Label Type'),
3439 array(
3440 '0' => xl('None'),
3441 '1' => 'std25',
3442 '2' => 'int25',
3443 '3' => 'ean8',
3444 '4' => 'ean13',
3445 '5' => 'upc',
3446 '6' => 'code11',
3447 '7' => 'code39',
3448 '8' => 'code93',
3449 '9' => 'code128',
3450 '10' => 'codabar',
3451 '11' => 'msi',
3452 '12' => 'datamatrix'
3454 '9', // default = None
3455 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3458 'addr_label_type' => array(
3459 xl('Print Patient Address Label'),
3460 'bool', // data type
3461 '1', // default = false
3462 xl('Select to print patient address labels from popups in left nav screen.')
3465 'env_x_width' => array(
3466 xl('Envelope Width in mm'),
3467 'num', // data type
3468 '104.775',
3469 xl('In Portrait mode, determines the width of the envelope along the x-axis in mm')
3472 'env_y_height' => array(
3473 xl('Envelope Height in mm'),
3474 'num', // data type
3475 '241.3',
3476 xl('In Portrait mode, determines the height of the envelope along the y-axis in mm')
3479 'env_font_size' => array(
3480 xl('Font Size in Pt'),
3481 'num', // data type
3482 '14',
3483 xl('Sets the font of the address text on the envelope in mm')
3486 'env_x_dist' => array(
3487 xl('Envelope x-axis starting pt'),
3488 'num', // data type
3489 '65',
3490 xl('Distance from the \'top\' of the envelope in mm')
3493 'env_y_dist' => array(
3494 xl('Envelope y-axis starting pt'),
3495 'num', // data type
3496 '220',
3497 xl('Distance from the right most edge of the envelope in portrait position in mm')