mysql 8 fixes (#1639)
[openemr.git] / library / globals.inc.php
blob991a3eef0f8ab72e9faf565fe1e49c2d8913ac58
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 // Chinese (Simplified) // xl('Chinese (Simplified)')
33 // Chinese (Traditional) // xl('Chinese (Traditional)')
34 // Croatian // xl('Croatian')
35 // Czech // xl('Czech')
36 // Danish // xl('Danish')
37 // Dutch // xl('Dutch')
38 // English (Indian) // xl('English (Indian)')
39 // English (Standard) // xl('English (Standard)')
40 // Estonian // xl('Estonian')
41 // Filipino // xl('Filipino')
42 // Finnish // xl('Finnish')
43 // French // xl('French (Standard)')
44 // French // xl('French (Canadian)')
45 // Georgian // xl('Georgian')
46 // German // xl('German')
47 // Greek // xl('Greek')
48 // Hebrew // xl('Hebrew')
49 // Hindi // xl('Hindi')
50 // Hungarian // xl('Hungarian')
51 // Italian // xl('Italian')
52 // Japanese // xl('Japanese')
53 // Korean // xl('Korean')
54 // Lithuanian // xl('Lithuanian')
55 // Marathi // xl('Marathi')
56 // Mongolian // xl('Mongolian')
57 // Norwegian // xl('Norwegian')
58 // Persian // xl('Persian')
59 // Polish // xl('Polish')
60 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
61 // Portuguese (European) // xl('Portuguese (European)')
62 // Romanian // xl('Romanian')
63 // Russian // xl('Russian')
64 // Serbian // xl('Serbian')
65 // Sinhala // xl('Sinhala')
66 // Slovak // xl('Slovak')
67 // Somali // xl('Somali')
68 // Spanish (Latin American) // xl('Spanish (Latin American)')
69 // Spanish (Spain) // xl('Spanish (Spain)')
70 // Swedish // xl('Swedish')
71 // Tamil // xl('Tamil')
72 // Thai // xl('Thai')
73 // Turkish // xl('Turkish')
74 // Ukrainian // xl('Ukrainian')
75 // Urdu // xl('Urdu')
76 // Vietnamese // xl('Vietnamese')
78 // OS-dependent stuff.
79 if (stristr(PHP_OS, 'WIN')) {
80 // MS Windows
81 $mysql_bin_dir = 'C:/xampp/mysql/bin';
82 $perl_bin_dir = 'C:/xampp/perl/bin';
83 $temporary_files_dir = 'C:/windows/temp';
84 $backup_log_dir = 'C:/windows/temp';
85 } else {
86 // Everything else
87 $mysql_bin_dir = '/usr/bin';
88 $perl_bin_dir = '/usr/bin';
89 $temporary_files_dir = '/tmp';
90 $backup_log_dir = '/tmp';
93 // Language constant declarations:
94 // xl('Appearance')
95 // xl('Locale')
96 // xl('Features')
97 // xl('Calendar')
98 // xl('Security')
99 // xl('Notifications')
100 // xl('Miscellaneous')
102 // List of user specific tabs and globals
103 $USER_SPECIFIC_TABS = array('Appearance',
104 'Locale',
105 'Report',
106 'Calendar',
107 'CDR',
108 'Connectors');
109 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
110 'default_second_tab',
111 'new_tabs_layout',
112 'theme_tabs_layout',
113 'css_header',
114 'menu_styling_vertical',
115 'default_encounter_view',
116 'gbl_pt_list_page_size',
117 'gbl_pt_list_new_window',
118 'units_of_measurement',
119 'us_weight_format',
120 'date_display_format',
121 'time_display_format',
122 'ledger_begin_date',
123 'print_next_appointment_on_ledger',
124 'calendar_view_type',
125 'event_color',
126 'pat_trkr_timer',
127 'ptkr_visit_reason',
128 'ptkr_date_range',
129 'ptkr_start_date',
130 'ptkr_end_date',
131 'checkout_roll_off',
132 'patient_birthday_alert',
133 'patient_birthday_alert_manual_off',
134 'erx_import_status_message');
136 // Gets array of time zones supported by PHP.
138 function gblTimeZones()
140 $zones = timezone_identifiers_list();
141 $arr = array('' => xl('Unassigned'));
142 foreach ($zones as $zone) {
143 $arr[$zone] = str_replace('_', ' ', $zone);
146 return $arr;
149 $GLOBALS_METADATA = array(
151 // Appearance Tab
153 'Appearance' => array(
155 'default_top_pane' => array(
156 xl('Main Top Pane Screen(Or Default First Tab)'), // descriptive name
157 array(
158 'main_info.php' => xl('Calendar Screen'),
159 '../new/new.php' => xl('Patient Search/Add Screen'),
160 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
161 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
162 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen')
164 'main_info.php', // default = calendar
165 xl('Main Top Pane Screen(Or Default First Tab)')
168 'default_second_tab' => array(
169 xl('Default Second Tab'), // descriptive name
170 array(
171 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen'),
172 'main_info.php' => xl('Calendar Screen'),
173 '../new/new.php' => xl('Patient Search/Add Screen'),
174 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
175 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
177 '../../interface/main/messages/messages.php?form_active=1', // default = messages
178 xl('Default Second Tab')
181 'new_tabs_layout' => array(
182 xl('Layout (need to logout/login after change this setting)'),
183 array(
184 '0' => xl('Frame'),
185 '1' => xl('Tabs'),
187 '1',
188 xl('Choose the layout (need to logout and then login to see this new setting).')
191 'theme_tabs_layout' => array(
192 xl('Tabs Layout Theme (need to logout/login after change this setting)'),
193 'tabs_css',
194 'tabs_style_full.css',
195 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.')
198 'css_header' => array(
199 xl('General Theme (need to logout/login after change this setting)'),
200 'css',
201 'style_light.css',
202 xl('Pick a general theme (need to logout/login after change this setting).')
205 'font-family' => array(
206 xl('Default font (need to logout/login after change this setting)'),
207 array(
208 '__default__' => 'Use Theme Font',
209 'Arial, Helvetica, sans-serif' => "Arial",
210 '"Arial Black", Gadget, sans-serif' => "Arial Black",
211 'Impact, Charcoal, sans-serif' => "Impact",
212 '"Lucida Sans Unicode", "Lucida Grande", sans-serif' => "Lucida Sans",
213 'Tahoma, Geneva, sans-serif' => "Tahoma",
214 '"Trebuchet MS", Helvetica, sans-serif' => "Trebuchet MS",
215 'Verdana, Geneva, sans-serif' => "Verdana",
216 'lato' => "Lato",
218 '__default__',
219 xl('Select the default font'),
222 'font-size' => array(
223 xl('Default font size (need to logout/login after change this setting)'),
224 array(
225 '__default__' => 'Use Theme Font Size',
226 '10px' => '10px',
227 '12px' => '12px',
228 '14px' => '14px',
229 '16px' => '16px',
230 '18px' => '18px',
232 '__default__',
233 xl("Select the default font size"),
236 'menu_styling_vertical' => array(
237 xl('Vertical Menu Style'),
238 array(
239 '0' => xl('Tree'),
240 '1' => xl('Sliding'),
242 '1',
243 xl('Vertical Menu Style')
246 'default_encounter_view' => array(
247 xl('Default Encounter View'), // descriptive name
248 array(
249 '0' => xl('Clinical View'),
250 '1' => xl('Billing View'),
252 '0', // default = tree menu
253 xl('Choose your default encounter view')
256 'gbl_nav_area_width' => array(
257 xl('Navigation Area Width'),
258 'num',
259 '175',
260 xl('Width in pixels of the left navigation frame.')
263 'openemr_name' => array(
264 xl('Application Title'),
265 'text',
266 'OpenEMR',
267 xl('Application name for login page and main window title.')
270 'enable_group_therapy' => array(
271 xl('Enable Group Therapy'),
272 'bool', // data type
273 '0', // default = false
274 xl('Enables groups module in system.')
277 'full_new_patient_form' => array(
278 xl('New Patient Form'),
280 array(
281 '0' => xl('Old-style static form without search or duplication check'),
282 '1' => xl('All demographics fields, with search and duplication check'),
283 '2' => xl('Mandatory or specified fields only, search and dup check'),
284 '3' => xl('Mandatory or specified fields only, dup check, no search'),
285 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
287 '1', // default
288 xl('Style of form used for adding new patients')
291 'gbl_edit_patient_form' => array(
292 xl('Modify Patient Form'),
294 array(
295 '0' => xl('Standard check'),
296 '1' => xl('Zend Module check in addition to standard check')
298 '0', // default
299 xl('Validation mechanism for when modifying patient demographics.')
302 'patient_search_results_style' => array(
303 xl('Patient Search Results Style'),
304 array(
305 '0' => xl('Encounter statistics'),
306 '1' => xl('Mandatory and specified fields'),
308 '0', // default
309 xl('Type of columns displayed for patient search results')
312 'gbl_tall_nav_area' => array(
313 xl('Tall Navigation Area'),
314 'bool', // data type
315 '0', // default = false
316 xl('Navigation area uses full height of frameset')
319 'gbl_nav_visit_forms' => array(
320 xl('Navigation Area Visit Forms'),
321 'bool', // data type
322 '1', // default = true
323 xl('Navigation area includes encounter forms')
326 'simplified_demographics' => array(
327 xl('Simplified Demographics'),
328 'bool', // data type
329 '0', // default = false
330 xl('Omit insurance and some other things from the demographics form')
333 'simplified_prescriptions' => array(
334 xl('Simplified Prescriptions'),
335 'bool', // data type
336 '0', // default = false
337 xl('Omit form, route and interval which then become part of dosage')
340 'simplified_copay' => array(
341 xl('Simplified Co-Pay'),
342 'bool', // data type
343 '0', // default = false
344 xl('Omit method of payment from the co-pay panel')
347 'use_charges_panel' => array(
348 xl('Use Charges Panel'),
349 'bool', // data type
350 '0', // default = false
351 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
354 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
355 'enable_fees_in_left_menu' => array(
356 xl('Enable Fees Submenu'),
357 'bool', // data type
358 '1', // default = true
359 xl('Enable Fees Submenu')
361 'enable_batch_payment' => array(
362 xl('Enable Batch Payment'),
363 'bool', // data type
364 '1', // default = true
365 xl('Enable Batch Payment')
367 'enable_posting' => array(
368 xl('Enable Posting'),
369 'bool', // data type
370 '1', // default = true
371 xl('Enable Posting')
373 // EDI history 2012-09-13
374 'enable_edihistory_in_left_menu' => array(
375 xl('Enable EDI History'),
376 'bool', // data type
377 '1', // default = true
378 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
381 'online_support_link' => array(
382 xl('Online Support Link'),
383 'text', // data type
384 'http://open-emr.org/',
385 xl('URL for OpenEMR support.')
388 'support_phone_number' => array(
389 xl('Support Phone Number'),
390 'text',
392 xl('Phone Number for Vendor Support that Appears on the About Page.')
395 'encounter_page_size' => array(
396 xl('Encounter Page Size'),
397 array(
398 '0' => xl('Show All'),
399 '5' => '5',
400 '10' => '10',
401 '15' => '15',
402 '20' => '20',
403 '25' => '25',
404 '50' => '50',
406 '20',
407 xl('Number of encounters to display per page.')
410 'gbl_pt_list_page_size' => array(
411 xl('Patient List Page Size'),
412 array(
413 '10' => '10',
414 '25' => '25',
415 '50' => '50',
416 '100' => '100',
418 '10',
419 xl('Number of patients to display per page in the patient list.')
422 'gbl_pt_list_new_window' => array(
423 xl('Patient List New Window'),
424 'bool', // data type
425 '0', // default = false
426 xl('Default state of New Window checkbox in the patient list.')
429 'num_of_messages_displayed' => array(
430 xl('Number of Messages Displayed in Patient Summary'),
431 'num',
432 '3',
433 xl('This is the number of messages that will be displayed in the messages widget in the patient summary screen.')
436 'gbl_vitals_options' => array(
437 xl('Vitals Form Options'),
438 array(
439 '0' => xl('Standard'),
440 '1' => xl('Omit circumferences'),
442 '0', // default
443 xl('Special treatment for the Vitals form')
446 'insurance_information' => array(
447 xl('Show Additional Insurance Information'), // descriptive name
448 array(
449 '0' => xl('None'),
450 '1' => xl('Address Only'),
451 '2' => xl('Address and Postal Code'),
452 '3' => xl('Address and State'),
453 '4' => xl('Address, State and Postal Code'),
454 '5' => xl('Address, City, State and Postal Code'),
455 '6' => xl('Postal Code and Box Number')
457 '5', // default
458 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
461 'gb_how_sort_list' => array(
462 xl('How to sort a drop-lists'),
463 array(
464 '0' => xl('Sort by seq'),
465 '1' => xl('Sort alphabetically')
467 '0',
468 xl('What kind of sorting will be in the drop lists.')
471 'show_label_login' => array(
472 xl('Show Title on Login'),
473 'bool', // data type
474 '0', // default = false
475 xl('Show Title on Login')
478 'extra_logo_login' => array(
479 xl('Show Extra Logo on Login'),
480 'bool', // data type
481 '0', // default = false
482 xl('Show Extra Logo on Login')
485 'tiny_logo_1' => array(
486 xl('Show Mini Logo 1'),
487 'bool', // data type
488 '0', // default = false
489 xl('Show Mini Logo 1')
492 'tiny_logo_2' => array(
493 xl('Show Mini Logo 2'),
494 'bool', // data type
495 '0', // default = false
496 xl('Show Mini Logo 2')
501 // Locale Tab
503 'Locale' => array(
505 'language_default' => array(
506 xl('Default Language'),
507 'lang', // data type
508 'English (Standard)', // default = english
509 xl('Default language if no other is allowed or chosen.')
512 'language_menu_showall' => array(
513 xl('All Languages Allowed'),
514 'bool', // data type
515 '1', // default = true
516 xl('Allow all available languages as choices on menu at login.')
519 'language_menu_other' => array(
520 xl('Allowed Languages'),
521 'm_lang', // data type
522 '', // default = none
523 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
526 'allow_debug_language' => array(
527 xl('Allow Debugging Language'),
528 'bool', // data type
529 '1', // default = true during development and false for production releases
530 xl('This will allow selection of the debugging (\'dummy\') language.')
533 'translate_no_safe_apostrophe' => array(
534 xl('Do Not Use Safe Apostrophe'),
535 'bool', // data type
536 '0', // default = false
537 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)')
540 'translate_layout' => array(
541 xl('Translate Layouts'),
542 'bool', // data type
543 '1', // default = true
544 xl('Is text from form layouts to be translated?')
547 'translate_lists' => array(
548 xl('Translate Lists'),
549 'bool', // data type
550 '1', // default = true
551 xl('Is text from lists to be translated?')
554 'translate_gacl_groups' => array(
555 xl('Translate Access Control Groups'),
556 'bool', // data type
557 '1', // default = true
558 xl('Are access control group names to be translated?')
561 'translate_form_titles' => array(
562 xl('Translate Patient Note Titles'),
563 'bool', // data type
564 '1', // default = true
565 xl('Are patient note titles to be translated?')
568 'translate_document_categories' => array(
569 xl('Translate Document Categories'),
570 'bool', // data type
571 '1', // default = true
572 xl('Are document category names to be translated?')
575 'translate_appt_categories' => array(
576 xl('Translate Appointment Categories'),
577 'bool', // data type
578 '1', // default = true
579 xl('Are appointment category names to be translated?')
582 'units_of_measurement' => array(
583 xl('Units for Visit Forms'),
584 array(
585 '1' => xl('Show both US and metric (main unit is US)'),
586 '2' => xl('Show both US and metric (main unit is metric)'),
587 '3' => xl('Show US only'),
588 '4' => xl('Show metric only'),
590 '1', // default = Both/US
591 xl('Applies to the Vitals form and Growth Chart')
594 'us_weight_format' => array(
595 xl('Display Format for US Weights'),
596 array(
597 '1' => xl('Show pounds as decimal value'),
598 '2' => xl('Show pounds and ounces')
600 '1',
601 xl('Applies to Vitals form')
604 'phone_country_code' => array(
605 xl('Telephone Country Code'),
606 'num',
607 '1', // default = North America
608 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
611 'date_display_format' => array(
612 xl('Date Display Format'),
613 array(
614 '0' => xl('YYYY-MM-DD'),
615 '1' => xl('MM/DD/YYYY'),
616 '2' => xl('DD/MM/YYYY'),
618 '0',
619 xl('Format used to display most dates.')
622 'time_display_format' => array(
623 xl('Time Display Format'),
624 array(
625 '0' => xl('24 hr'),
626 '1' => xl('12 hr'),
628 '0',
629 xl('Format used to display most times.')
632 'gbl_time_zone' => array(
633 xl('Time Zone'),
634 gblTimeZones(),
636 xl('If unassigned will default to php.ini setting for date.timezone.')
639 'currency_decimals' => array(
640 xl('Currency Decimal Places'),
641 array(
642 '0' => xl('0'),
643 '1' => xl('1'),
644 '2' => xl('2'),
646 '2',
647 xl('Number of digits after decimal point for currency, usually 0 or 2.')
650 'currency_dec_point' => array(
651 xl('Currency Decimal Point Symbol'),
652 array(
653 '.' => xl('Period'),
654 ',' => xl('Comma'),
656 '.',
657 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
660 'currency_thousands_sep' => array(
661 xl('Currency Thousands Separator'),
662 array(
663 ',' => xl('Comma'),
664 '.' => xl('Period'),
665 ' ' => xl('Space'),
666 '' => xl('None'),
668 ',',
669 xl('Symbol used to separate thousands for currency.')
672 'gbl_currency_symbol' => array(
673 xl('Currency Designator'),
674 'text', // data type
675 '$', // default
676 xl('Code or symbol to indicate currency')
678 'age_display_format' => array(xl('Age Display Format'),
679 array(
680 '0' => xl('Years or months'),
681 '1' => xl('Years, months and days')
683 '0',
684 xl('Format for age display')
686 'age_display_limit' => array(
687 xl('Age in Years for Display Format Change'),
688 'num',
689 '3',
690 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
692 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
693 'weekend_days' => array(
694 xl('Your weekend days'),
695 array(
696 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
697 '0' => xl('Sunday'),
698 '5' => xl('Friday'),
699 '6' => xl('Saturday'),
700 '5,6' => xl('Friday') . ' - ' . xl('Saturday'),
702 '6,0'
703 , xl('which days are your weekend days?')
708 // Features Tab
710 'Features' => array(
712 'specific_application' => array(
713 xl('Specific Application'),
714 array(
715 '0' => xl('None'),
716 '2' => xl('IPPF'),
717 '3' => xl('Weight loss clinic'),
719 '0', // default
720 xl('Indicator for specialized usage')
723 'inhouse_pharmacy' => array(
724 xl('Drugs and Products'),
725 array(
726 '0' => xl('Do not inventory and sell any products'),
727 '1' => xl('Inventory and sell drugs only'),
728 '2' => xl('Inventory and sell both drugs and non-drug products'),
729 '3' => xl('Products but no prescription drugs and no templates'),
731 '0', // default
732 xl('Option to support inventory and sales of products')
735 'default_visit_category' => array(
736 xl('Default Visit Category'),
737 'default_visit_category',
738 '_blank',
739 xl('Define a default visit category'),
742 'disable_chart_tracker' => array(
743 xl('Disable Chart Tracker'),
744 'bool', // data type
745 '0', // default = false
746 xl('Removes the Chart Tracker feature')
749 'disable_immunizations' => array(
750 xl('Disable Immunizations'),
751 'bool', // data type
752 '0', // default = false
753 xl('Removes support for immunizations')
756 'disable_prescriptions' => array(
757 xl('Disable Prescriptions'),
758 'bool', // data type
759 '0', // default = false
760 xl('Removes support for prescriptions')
763 'omit_employers' => array(
764 xl('Omit Employers'),
765 'bool', // data type
766 '0', // default = false
767 xl('Omit employer information in patient demographics')
770 'select_multi_providers' => array(
771 xl('Support Multi-Provider Events'),
772 'bool', // data type
773 '0', // default = false
774 xl('Support calendar events that apply to multiple providers')
777 'disable_non_default_groups' => array(
778 xl('Disable User Groups'),
779 'bool', // data type
780 '1', // default = true
781 xl('Normally this should be checked. Not related to access control.')
784 'ignore_pnotes_authorization' => array(
785 xl('Skip Authorization of Patient Notes'),
786 'bool', // data type
787 '1', // default = true
788 xl('Do not require patient notes to be authorized')
791 'support_encounter_claims' => array(
792 xl('Allow Encounter Claims'),
793 'bool', // data type
794 '0', // default = false
795 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
798 'advance_directives_warning' => array(
799 xl('Advance Directives Warning'),
800 'bool', // data type
801 '0', // default = false
802 xl('Display advance directives in the demographics page.')
805 'configuration_import_export' => array(
806 xl('Configuration Export/Import'),
807 'bool', // data type
808 '0', // default = false
809 xl('Support export/import of configuration data via the Backup page.')
812 'restrict_user_facility' => array(
813 xl('Restrict Users to Facilities'),
814 'bool', // data type
815 '0', // default
816 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
819 'set_facility_cookie' => array(
820 xl('Remember Selected Facility'),
821 'bool', // data type
822 '0', // default
823 xl('Set a facility cookie to remember the selected facility between logins.')
826 'receipts_by_provider' => array(
827 xl('Print Receipts by Provider'),
828 'bool',
829 '0', // default
830 xl('Causes Receipts to Print Encounter/Primary Provider Info')
833 'discount_by_money' => array(
834 xl('Discounts as Monetary Amounts'),
835 'bool', // data type
836 '1', // default = true
837 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
840 'gbl_visit_referral_source' => array(
841 xl('Referral Source for Encounters'),
842 'bool', // data type
843 '0', // default = false
844 xl('A referral source may be specified for each visit.')
847 'gbl_mask_patient_id' => array(
848 xl('Mask for Patient IDs'),
849 'text', // data type
850 '', // default
851 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
854 'gbl_mask_invoice_number' => array(
855 xl('Mask for Invoice Numbers'),
856 'text', // data type
857 '', // default
858 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
861 'gbl_mask_product_id' => array(
862 xl('Mask for Product IDs'),
863 'text', // data type
864 '', // default
865 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
868 'hide_billing_widget' => array(
869 xl('Hide Billing Widget'),
870 'bool', // data type
871 '0', // default = false
872 xl('This will hide the Billing Widget in the Patient Summary screen')
875 'force_billing_widget_open' => array(
876 xl('Force Billing Widget Open'),
877 'bool', // data type
878 '0', // default = false
879 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
882 'activate_ccr_ccd_report' => array(
883 xl('Activate CCR/CCD Reporting'),
884 'bool', // data type
885 '1', // default = true
886 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
889 'hide_document_encryption' => array(
890 xl('Hide Encryption/Decryption Options In Document Management'),
891 'bool', // data type
892 '1', // default = true
893 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
896 'use_custom_immun_list' => array(
897 xl('Use Custom Immunization List'),
898 'bool', // data type
899 '0', // default = true
900 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
903 'amendments' => array(
904 xl('Amendments'),
905 'bool', // data type
906 '1', // default = true
907 xl('Enable amendments feature')
910 'allow_pat_delete' => array(
911 xl('Allow Administrators to Delete Patients'),
912 'bool', // data type
913 '0', // default = false
914 xl('Allow Administrators to Delete Patients')
918 'observation_results_immunization' => array(
919 xl('Immunization Observation Results'),
920 'bool', // data type
921 '1', // default
922 xl('Observation Results in Immunization')
926 // Report Tab
928 'Report' => array(
930 'use_custom_daysheet' => array(
931 xl('Use Custom End of Day Report'),
932 array(
933 '0' => xl('None'),
934 '1' => xl('Print End of Day Report 1'),
935 '2' => xl('Print End of Day Report 2'),
936 '3' => xl('Print End of Day Report 3'),
937 ), // data type
938 '1', // default = Print End of Day Report 1
939 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
942 'daysheet_provider_totals' => array(
943 xl('End of Day by Provider or allow Totals Only'),
944 array(
945 '0' => xl('Provider'),
946 '1' => xl('Totals Only'),
948 '1', // default
949 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
952 'ledger_begin_date' => array(
953 xl('Beginning Date for Ledger Report'),
954 array(
955 'Y1' => xl('One Year Ago'),
956 'Y2' => xl('Two Years Ago'),
957 'M6' => xl('Six Months Ago'),
958 'M3' => xl('Three Months Ago'),
959 'M1' => xl('One Month Ago'),
960 'D1' => xl('One Day Ago'),
962 'Y1', // default = One Year
963 xl('This is the Beginning date for the Ledger Report.')
966 'print_next_appointment_on_ledger' => array(
967 xl('Print the Next Appointment on the Bottom of the Ledger'),
968 'bool', // data type
969 '1', // default = true
970 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
973 'sales_report_invoice' => array(
974 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
975 array(
976 '0' => xl('Invoice Number'),
977 '1' => xl('Patient Name and ID'),
978 '2' => xl('Patient Name and Invoice'),
980 '2', // default = 2
981 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
984 'cash_receipts_report_invoice' => array(
985 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
986 array(
987 '0' => xl('Invoice Number'),
988 '1' => xl('Patient Name'),
990 '0', // default = 0
991 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
996 // Billing Tab
998 'Billing' => array(
1000 'ub04_support' => array(
1001 xl('Activate UB04/837I Claim Support'),
1002 'bool', // data type
1003 '0', // default = false
1004 xl('Allow institutional claims support.')
1007 'top_ubmargin_default' => array(
1008 xl('Default top print margin for UB04'),
1009 'num', // data type
1010 '14', // default
1011 xl('This is the default top print margin for UB04. It will adjust the final printed output up or down.')
1014 'left_ubmargin_default' => array(
1015 xl('Default left print margin for UB04'),
1016 'num', // data type
1017 '11', // default
1018 xl('This is the default left print margin for UB04. It will adjust the final printed output left or right.')
1021 'cms_top_margin_default' => array(
1022 xl('Default top print margin for CMS 1500'),
1023 'num', // data type
1024 '24', // default
1025 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
1028 'cms_left_margin_default' => array(
1029 xl('Default left print margin for CMS 1500'),
1030 'num', // data type
1031 '20', // default
1032 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
1035 'preprinted_cms_1500' => array(
1036 xl('Prints the CMS 1500 on the Preprinted form'),
1037 'bool', // data type
1038 '0', // default = false
1039 xl('Overlay CMS 1500 on the Preprinted form')
1042 'cms_1500_box_31_format' => array(
1043 xl('CMS 1500: Box 31 Format'),
1044 array(
1045 '0' => xl('Signature on File'),
1046 '1' => xl('Firstname Lastname'),
1047 '2' => xl('None'),
1049 '0', // default
1050 xl('This specifies whether to include date in Box 31.')
1053 'cms_1500_box_31_date' => array(
1054 xl('CMS 1500: Date in Box 31 (Signature)'),
1055 array(
1056 '0' => xl('None'),
1057 '1' => xl('Date of Service'),
1058 '2' => xl('Today'),
1060 '0', // default
1061 xl('This specifies whether to include date in Box 31.')
1064 'default_search_code_type' => array(
1065 xl('Default Search Code Type'),
1066 'all_code_types', // data type
1067 'ICD10', // default
1068 xl('The default code type to search for in the Fee Sheet.')
1071 'default_rendering_provider' => array(
1072 xl('Default Rendering Provider in Fee Sheet'),
1073 array(
1074 '0' => xl('Please Select'),
1075 '1' => xl('Current Provider'),
1076 '2' => xl('Current Logged in User'),
1078 '1',
1079 xl('Default selection for rendering provider in fee sheet.')
1082 'show_payment_history' => array(
1083 xl('Show all payment history in Patient Ledger'),
1084 'bool', // data type
1085 '1', // default = true
1086 xl('Turn on to show all payment history in Patient Ledger')
1089 'support_fee_sheet_line_item_provider' => array(
1090 xl('Support provider in line item in fee sheet'),
1091 'bool', // data type
1092 '0', // default = false
1093 xl('This Enables provider in line item in the fee sheet')
1096 'default_fee_sheet_line_item_provider' => array(
1097 xl('Default to a provider for line item in the fee sheet'),
1098 'bool', // data type
1099 '0', // default = false
1100 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1103 'replicate_justification' => array(
1104 xl('Automatically replicate justification codes in Fee Sheet'),
1105 'bool', // data type
1106 '0', // default = false
1107 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1110 'display_units_in_billing' => array(
1111 xl('Display the Units Column on the Billing Screen'),
1112 'bool', // data type
1113 '0', // default = false
1114 xl('Display the Units Column on the Billing Screen')
1117 'notes_to_display_in_Billing' => array(
1118 xl('Which notes are to be displayed in the Billing Screen'),
1119 array(
1120 '0' => xl('None'),
1121 '1' => xl('Encounter Billing Note'),
1122 '2' => xl('Patient Billing Note'),
1123 '3' => xl('All'),
1125 '3',
1126 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1129 'set_pos_code_encounter' => array(
1130 xl('Set POS code in encounter'),
1131 'bool', // data type
1132 '0', // default = false
1133 xl('This feature will allow the default POS facility code to be overriden from the encounter.')
1136 'use_custom_statement' => array(
1137 xl('Use Custom Statement'),
1138 'bool', // data type
1139 '0', // default = false
1140 xl('This will use the custom Statment showing the description instead of the codes.')
1143 'statement_appearance' => array(
1144 xl('Statement Appearance'),
1145 array(
1146 '0' => xl('Plain Text'),
1147 '1' => xl('Modern/images')
1148 ), // data type
1149 '1', // default = true
1150 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1153 'billing_phone_number' => array(
1154 xl('Custom Billing Phone Number'),
1155 'text', // data type
1157 xl('Phone number for billing inquiries')
1160 'show_aging_on_custom_statement' => array(
1161 xl('Show Aging on Custom Statement'),
1162 'bool', // data type
1163 '0', // default = false
1164 xl('This will Show Aging on the custom Statement.')
1167 'use_statement_print_exclusion' => array(
1168 xl('Allow Statement Exclusions from Printing'),
1169 'bool', // data type
1170 '0', // default = false
1171 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1174 'minimum_amount_to_print' => array(
1175 xl('Total Minimum Amount of Statement to Allow Printing'),
1176 'num', // data type
1177 '1.00',
1178 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1181 'statement_bill_note_print' => array(
1182 xl('Print Patient Billing Note'),
1183 'bool', // data type
1184 '0', // default = false
1185 xl('This will allow printing of the Patient Billing Note on the statements.')
1188 'number_appointments_on_statement' => array(
1189 xl('Number of Appointments on Statement'),
1190 'num', // data type
1191 '0', // default = 0
1192 xl('The Number of Future Appointments to Display on the Statement.')
1195 'statement_message_to_patient' => array(
1196 xl('Print Custom Message'),
1197 'bool', // data type
1198 '0', // default = false
1199 xl('This will allow printing of a custom Message on the statements.')
1202 'statement_msg_text' => array(
1203 xl('Custom Statement message'),
1204 'text', // data type
1206 xl('Text for Custom statement message.')
1209 'use_dunning_message' => array(
1210 xl('Use Custom Dunning Messages'),
1211 'bool', // data type
1212 '0', // default = false
1213 xl('This will allow use of the custom Dunning Messages on the statements.')
1216 'first_dun_msg_set' => array(
1217 xl('Number of days before showing first account message'),
1218 'num', // data type
1219 '30',
1220 xl('Number of days before showing first account message.')
1223 'first_dun_msg_text' => array(
1224 xl('First account message'),
1225 'text', // data type
1227 xl('Text for first account message.')
1230 'second_dun_msg_set' => array(
1231 xl('Number of days before showing second account message'),
1232 'num', // data type
1233 '60',
1234 xl('Number of days before showing second account message')
1237 'second_dun_msg_text' => array(
1238 xl('Second account message'),
1239 'text', // data type
1241 xl('Text for second account message.')
1244 'third_dun_msg_set' => array(
1245 xl('Number of days before showing third account message'),
1246 'num', // data type
1247 '90',
1248 xl('Number of days before showing third account message')
1251 'third_dun_msg_text' => array(
1252 xl('Third account message'),
1253 'text', // data type
1255 xl('Text for third account message.')
1258 'fourth_dun_msg_set' => array(
1259 xl('Number of days before showing fourth account message'),
1260 'num', // data type
1261 '120',
1262 xl('Number of days before showing fourth account message')
1265 'fourth_dun_msg_text' => array(
1266 xl('Fourth account message'),
1267 'text', // data type
1269 xl('Text for fourth account message.')
1272 'fifth_dun_msg_set' => array(
1273 xl('Number of days before showing fifth account message'),
1274 'num', // data type
1275 '150',
1276 xl('Number of days before showing fifth account message')
1279 'fifth_dun_msg_text' => array(
1280 xl('Fifth account message'),
1281 'text', // data type
1283 xl('Text for fifth account message.')
1285 'save_codes_history' => array(
1286 xl('Save codes history'),
1287 'bool', // data type
1288 '1', // default
1289 xl('Save codes history')
1293 // E-Sign Tab
1295 'E-Sign' => array(
1297 'esign_all' => array(
1298 xl('Allows E-Sign on the entire encounter'),
1299 'bool', // data type
1300 '0', // default = false
1301 xl('This will enable signing an entire encounter, rather than individual forms')
1304 'lock_esign_all' => array(
1305 xl('Lock e-signed encounters and their forms'),
1306 'bool', // data type
1307 '0', // default = false
1308 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1311 'esign_individual' => array(
1312 xl('Allows E-Signing Individual Forms'),
1313 'bool', // data type
1314 '1', // default = false
1315 xl('This will enable signing individual forms separately')
1318 'lock_esign_individual' => array(
1319 xl('Lock an e-signed form individually'),
1320 'bool', // data type
1321 '1', // default = false
1322 xl('This will disable the Edit button on any form that is e-signed')
1325 'esign_lock_toggle' => array(
1326 xl('Enable lock toggle'),
1327 'bool', // data type
1328 '0', // default = false
1329 xl('This will give the user the option to lock (separate locking and signing)')
1332 'esign_report_hide_empty_sig' => array(
1333 xl('Hide Empty E-Sign Logs On Report'),
1334 'bool', // data type
1335 '1', // default = false
1336 xl('This will hide empty e-sign logs on the patient report')
1340 //Documents Tab
1341 'Documents' => array(
1343 'document_storage_method' => array(
1344 xl('Document Storage Method'),
1345 array(
1346 '0' => xl('Hard Disk'),
1347 '1' => xl('CouchDB')
1349 '0', // default
1350 xl('Option to save method of document storage.')
1353 'couchdb_host' => array(
1354 xl('CouchDB HostName'),
1355 'text',
1356 'localhost',
1357 xl('CouchDB host'),
1359 'couchdb_user' => array(
1360 xl('CouchDB UserName'),
1361 'text',
1363 xl('Username to connect to CouchDB'),
1365 'couchdb_pass' => array(
1366 xl('CouchDB Password'),
1367 'text',
1369 xl('Password to connect to CouchDB'),
1371 'couchdb_port' => array(
1372 xl('CouchDB Port'),
1373 'text',
1374 '5984',
1375 xl('CouchDB port'),
1377 'couchdb_dbase' => array(
1378 xl('CouchDB Database'),
1379 'text',
1381 xl('CouchDB database name'),
1383 'couchdb_log' => array(
1384 xl('CouchDB Log Enable'),
1385 'bool',
1386 '0',
1387 xl('Enable log for document uploads/downloads to CouchDB'),
1390 'expand_document_tree' => array(
1391 xl('Expand All Document Categories'),
1392 'bool', // data type
1393 '0', // default = false
1394 xl('Expand All Document Categories by Default')
1397 'patient_id_category_name' => array(
1398 xl('Patient ID Category Name'),
1399 'text', // data type
1400 'Patient ID card', // default
1401 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1404 'patient_photo_category_name' => array(
1405 xl('Patient Photo Category Name'),
1406 'text', // data type
1407 'Patient Photograph', // default
1408 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1411 'lab_results_category_name' => array(
1412 xl('Lab Results Category Name'),
1413 'text', // data type
1414 'Lab Report', // default
1415 xl('Document category name for storage of electronically received lab results.')
1418 'gbl_mdm_category_name' => array(
1419 xl('MDM Document Category Name'),
1420 'text', // data type
1421 'Lab Report', // default
1422 xl('Document category name for storage of electronically received MDM documents.')
1424 'generate_doc_thumb' => array(
1425 xl('Generate thumbnail'),
1426 'bool',
1427 '0',
1428 xl('Generate thumbnail images'),
1430 'thumb_doc_max_size' => array(
1431 xl('Thumbnail size'),
1432 'text', // data type
1433 '100', // default
1434 xl('Maximum size of thumbnail file')
1438 // Calendar Tab
1440 'Calendar' => array(
1442 'disable_calendar' => array(
1443 xl('Disable Calendar'),
1444 'bool', // data type
1445 '0', // default
1446 xl('Do not display the calendar.')
1449 'schedule_start' => array(
1450 xl('Calendar Starting Hour'),
1451 'hour',
1452 '8', // default
1453 xl('Beginning hour of day for calendar events.')
1456 'schedule_end' => array(
1457 xl('Calendar Ending Hour'),
1458 'hour',
1459 '17', // default
1460 xl('Ending hour of day for calendar events.')
1463 'calendar_interval' => array(
1464 xl('Calendar Interval'),
1465 array(
1466 '5' => '5',
1467 '10' => '10',
1468 '15' => '15',
1469 '20' => '20',
1470 '30' => '30',
1471 '60' => '60',
1473 '15', // default
1474 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1477 'calendar_view_type' => array(
1478 xl('Default Calendar View'),
1479 array(
1480 'day' => xl('Day'),
1481 'week' => xl('Week'),
1482 'month' => xl('Month'),
1484 'day', // default
1485 xl('This sets the Default Calendar View, Default is Day.')
1487 'first_day_week' => array(
1488 xl('First day in the week'),
1489 array(
1490 '1' => xl('Monday'),
1491 '0' => xl('Sunday'),
1492 '6' => xl('Saturday')
1494 '1',
1495 xl('Your first day of the week.')
1497 'calendar_appt_style' => array(
1498 xl('Appointment Display Style'),
1499 array(
1500 '1' => xl('Last name'),
1501 '2' => xl('Last name, first name'),
1502 '3' => xl('Last name, first name (title)'),
1503 '4' => xl('Last name, first name (title: comments)'),
1505 '2', // default
1506 xl('This determines how appointments display on the calendar.')
1509 'event_color' => array(
1510 xl('Appointment/Event Color'),
1511 array(
1512 '1' => xl('Category Color Schema'),
1513 '2' => xl('Facility Color Schema'),
1514 ), // data type
1515 '1', // default
1516 xl('This determines which color schema used for appointment')
1519 'number_of_appts_to_show' => array(
1520 xl('Appointments - Patient Summary - Number to Display'),
1521 'num',
1522 '10',
1523 xl('Number of Appointments to display in the Patient Summary')
1526 'number_of_group_appts_to_show' => array(
1527 xl('Appointments - Group Summary - Number to Display'),
1528 'num',
1529 '10',
1530 xl('Number of Appointments to display in the Group Summary')
1532 'number_of_ex_appts_to_show' => array(
1533 xl('Excluded Appointments - Tooltip - Number to Display'),
1534 'num',
1535 '15',
1536 xl('Number of Excluded Appointments to display in the Tooltip')
1540 'patient_portal_appt_display_num' => array(
1541 xl('Appointments - Onsite Patient Portal - Number to Display'),
1542 'num',
1543 '20',
1544 xl('Number of Appointments to display in the Onsite Patient Portal')
1547 'appt_display_sets_option' => array(
1548 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1549 'bool', // data type
1550 '1', // default
1551 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1554 'appt_display_sets_color_1' => array(
1555 xl('Appointment Display Sets - Color 1'),
1556 'color_code',
1557 '#FFFFFF',
1558 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).')
1561 'appt_display_sets_color_2' => array(
1562 xl('Appointment Display Sets - Color 2'),
1563 'color_code',
1564 '#E6E6FF',
1565 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).')
1568 'appt_display_sets_color_3' => array(
1569 xl('Appointment Display Sets - Color 3'),
1570 'color_code',
1571 '#E6FFE6',
1572 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1575 'appt_display_sets_color_4' => array(
1576 xl('Appointment Display Sets - Color 4'),
1577 'color_code',
1578 '#FFE6FF',
1579 xl('Color for the last set when not all member appointments are displayed.')
1582 'appt_recurrences_widget' => array(
1583 xl('Recurrent Appointment Display Widget'),
1584 'bool', // data type
1585 '1', // default
1586 xl('Display the recurrent appointment widget in the patient summary.')
1589 'num_past_appointments_to_show' => array(
1590 xl('Past Appointment Display Widget'),
1591 'num', // data type
1592 '0', // default = false
1593 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)')
1596 'docs_see_entire_calendar' => array(
1597 xl('Providers See Entire Calendar'),
1598 'bool', // data type
1599 '0', // default
1600 xl('Check this if you want providers to see all appointments by default and not just their own.')
1603 'auto_create_new_encounters' => array(
1604 xl('Auto-Create New Encounters'),
1605 'bool', // data type
1606 '1', // default
1607 xl('Automatically create a new encounter when an appointment check in status is selected.')
1610 'allow_early_check_in' => array(
1611 xl('Allow Early Check In'),
1612 'bool', // data type
1613 '1', // default
1614 xl("Allow Check In before the appointment's time.")
1617 'submit_changes_for_all_appts_at_once' => array(
1618 xl('Submit Changes For All Appts At Once'),
1619 'bool', // data type
1620 '1', // default
1621 xl('Enables to submit changes for all appointments of a recurrence at once.')
1624 'disable_pat_trkr' => array(
1625 xl('Flow Board: Disable'),
1626 'bool', // data type
1627 '0', // default
1628 xl('Completely remove the ability to display the Patient Flow Board.')
1631 'ptkr_visit_reason' => array(
1632 xl('Flow Board: Show Visit Reason'),
1633 'bool', // data type
1634 '0', // default = false
1635 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1638 'ptkr_show_pid' => array(
1639 xl('Flow Board: Show Patient ID'),
1640 'bool', // data type
1641 '1', // default = true
1642 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1645 'ptkr_show_encounter' => array(
1646 xl('Flow Board: Show Encounter Number'),
1647 'bool', // data type
1648 '1', // default = true
1649 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1652 'ptkr_show_staff' => array(
1653 xl('Flow Board: Show Staff Action'),
1654 'bool', // data type
1655 '1', // default = true
1656 xl('When Checked, Last Staff to Update Board Will Show in Patient Flow Board.')
1659 'ptkr_date_range' => array(
1660 xl('Flow Board: Allow Date Range'),
1661 'bool', // data type
1662 '1', // default = true
1663 xl('This Allows a Date Range to be Selected in Patient Flow Board.')
1666 'ptkr_start_date'=> array(
1667 xl('Flow Board: Default Starting Date'),
1668 array(
1669 'D0' => xl('Current Day'),
1670 'B0' => xl('Beginning of Current Work Week'),
1672 'D0', // default = Current Day
1673 xl('This is the default Beginning date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1676 'ptkr_end_date' => array(
1677 xl('Flow Board: Default Ending Date'),
1678 array(
1679 'Y1' => xl('One Year Ahead'),
1680 'Y2' => xl('Two Years Ahead'),
1681 'M6' => xl('Six Months Ahead'),
1682 'M3' => xl('Three Months Ahead'),
1683 'M1' => xl('One Month Ahead'),
1684 'D7' => xl('One Week Ahead'),
1685 'D1' => xl('One Day Ahead'),
1686 'D0' => xl('Current Day'),
1688 'D0', // default = One Day Ahead
1689 xl('This is the default Ending date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1692 'pat_trkr_timer' => array(
1693 xl('Flow Board: Timer Refresh Interval'),
1694 array(
1695 '0' => xl('No automatic refresh'),
1696 '0:10' => '10',
1697 '0:20' => '20',
1698 '0:30' => '30',
1699 '0:40' => '40',
1700 '0:50' => '50',
1701 '0:59' => '60',
1703 '0:20', // default
1704 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1707 'checkout_roll_off' => array(
1708 xl('Flow Board: display completed checkouts (minutes)'),
1709 'num',
1710 '0', // default
1711 xl('Flow Board will only display completed checkouts for this many minutes. Zero is continuous display.')
1714 'drug_screen' => array(
1715 xl('Flow Board: Enable Random Drug Testing'),
1716 'bool', // data type
1717 '0', // default
1718 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1721 'drug_testing_percentage' => array(
1722 xl('Flow Board: Percentage of Patients to Drug Test'),
1723 'num',
1724 '33', // default
1725 xl('Percentage of Patients to select for Random Drug Testing.')
1728 'maximum_drug_test_yearly' => array(
1729 xl('Flow Board: Max tests per Patient per year'),
1730 'num',
1731 '0', // default
1732 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1735 'disable_rcb' => array(
1736 xl('Recall Board: Disable'),
1737 'bool', // data type
1738 '0', // default
1739 xl('Do not display the Recall Board.')
1747 // Security Tab
1749 'Security' => array(
1750 'sql_string_no_show_screen' => array(
1751 xl('Mode - Do Not Show SQL Queries'),
1752 'bool', // data type
1753 '0', // default
1754 xl('Do not allow SQL queries to be outputted to screen.')
1756 'timeout' => array(
1757 xl('Idle Session Timeout Seconds'),
1758 'num', // data type
1759 '7200', // default
1760 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1762 'secure_upload' => array(
1763 xl('Secure Upload Files with White List'),
1764 'bool', // data type
1765 '0', // default
1766 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1768 'secure_password' => array(
1769 xl('Require Strong Passwords'),
1770 'bool', // data type
1771 '0', // default
1772 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1774 'password_history' => array(
1775 xl('Require Unique Passwords'),
1776 'bool', // data type
1777 '0', // default
1778 xl('Means none of last three passwords are allowed when changing a password.')
1780 'password_compatibility' => array(
1781 xl('Permit unsalted passwords'),
1782 'bool', // data type
1783 '1', // default
1784 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')
1787 'password_expiration_days' => array(
1788 xl('Default Password Expiration Days'),
1789 'num', // data type
1790 '0', // default
1791 xl('Default password expiration period in days. 0 means this feature is disabled.')
1794 'password_grace_time' => array(
1795 xl('Password Expiration Grace Period'),
1796 'num', // data type
1797 '0', // default
1798 xl('Period in days where a user may login with an expired password.')
1801 'is_client_ssl_enabled' => array(
1802 xl('Enable Client SSL'),
1803 'bool', // data type
1804 '0', // default
1805 xl('Enable client SSL certificate authentication.')
1808 'certificate_authority_crt' => array(
1809 xl('Path to CA Certificate File'),
1810 'text', // data type
1811 '', // default
1812 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1815 'certificate_authority_key' => array(
1816 xl('Path to CA Key File'),
1817 'text', // data type
1818 '', // default
1819 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1822 'client_certificate_valid_in_days' => array(
1823 xl('Client Certificate Expiration Days'),
1824 'num', // data type
1825 '365', // default
1826 xl('Number of days that the client certificate is valid.')
1829 'Emergency_Login_email_id' => array(
1830 xl('Emergency Login Email Address'),
1831 'text', // data type
1832 '', // default
1833 xl('Email address, if any, to receive emergency login user activation messages.')
1836 'new_validate' => array(
1837 xl('New form validation'),
1838 'bool',
1839 '1',
1840 xl('New form validation')
1843 'allow_multiple_databases' => array(
1844 xl('Allow multiple databases'),
1845 'bool',
1846 '0',
1847 xl('Allow to use with multiple database')
1850 'safe_key_database' => array(
1851 xl('Safe key database'),
1852 'text', // data type
1853 '', // default
1854 xl('Key for multiple database credentials encryption')
1857 'use_active_directory' => array(
1858 xl('Use Active Directory'),
1859 'bool',
1860 '0',
1861 xl('If enabled, uses the specified active directory for login and authentication.')
1864 'account_suffix' => array(
1865 xl('Active Directory - Suffix Of Account'),
1866 'text',
1868 xl('The suffix of the account.')
1871 'base_dn' => array(
1872 xl('Active Directory - Domains Base'),
1873 'text',
1875 xl('Users is the standard windows CN, replace the DC stuff with your domain.')
1878 'domain_controllers' => array(
1879 xl('Active Directory - Domains Controllers'),
1880 'text',
1882 xl('The IP address of your domain controller(s).')
1887 // Notifications Tab
1889 'Notifications' => array(
1891 'patient_reminder_sender_name' => array(
1892 xl('Patient Reminder Sender Name'),
1893 'text', // data type
1894 '', // default
1895 xl('Name of the sender for patient reminders.')
1898 'patient_reminder_sender_email' => array(
1899 xl('Patient Reminder Sender Email'),
1900 'text', // data type
1901 '', // default
1902 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.')
1905 'practice_return_email_path' => array(
1906 xl('Notification Email Address'),
1907 'text', // data type
1908 '', // default
1909 xl('Email address, if any, to receive administrative notifications.')
1912 'EMAIL_METHOD' => array(
1913 xl('Email Transport Method'),
1914 array(
1915 'PHPMAIL' => 'PHPMAIL',
1916 'SENDMAIL' => 'SENDMAIL',
1917 'SMTP' => 'SMTP',
1919 'SMTP', // default
1920 xl('Method for sending outgoing email.')
1923 'SMTP_HOST' => array(
1924 xl('SMTP Server Hostname'),
1925 'text', // data type
1926 'localhost', // default
1927 xl('If SMTP is used, the server`s hostname or IP address.')
1930 'SMTP_PORT' => array(
1931 xl('SMTP Server Port Number'),
1932 'num', // data type
1933 '25', // default
1934 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1937 'SMTP_USER' => array(
1938 xl('SMTP User for Authentication'),
1939 'text', // data type
1940 '', // default
1941 xl('Must be empty if SMTP authentication is not used.')
1944 'SMTP_PASS' => array(
1945 xl('SMTP Password for Authentication'),
1946 'text', // data type
1947 '', // default
1948 xl('Must be empty if SMTP authentication is not used.')
1951 'SMTP_SECURE' => array(
1952 xl('SMTP Security Protocol'),
1953 array(
1954 '' => xl('None'),
1955 'ssl' => 'SSL',
1956 'tls' => 'TLS'
1959 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1962 'EMAIL_NOTIFICATION_HOUR' => array(
1963 xl('Email Notification Hours'),
1964 'num', // data type
1965 '50', // default
1966 xl('Number of hours in advance to send email notifications.')
1969 'SMS_NOTIFICATION_HOUR' => array(
1970 xl('SMS Notification Hours'),
1971 'num', // data type
1972 '50', // default
1973 xl('Number of hours in advance to send SMS notifications.')
1976 'SMS_GATEWAY_USENAME' => array(
1977 xl('SMS Gateway Username'),
1978 'text', // data type
1979 '', // default
1980 xl('Username for SMS Gateway.')
1983 'SMS_GATEWAY_PASSWORD' => array(
1984 xl('SMS Gateway Password'),
1985 'text', // data type
1986 '', // default
1987 xl('Password for SMS Gateway.')
1990 'SMS_GATEWAY_APIKEY' => array(
1991 xl('SMS Gateway API Key'),
1992 'text', // data type
1993 '', // default
1994 xl('API key for SMS Gateway.')
1997 'phone_notification_hour' => array(
1998 xl('Phone Notification Hour'),
1999 'num', // data type
2000 '50', // default
2001 xl('Number of hours in advance to send Phone notification.')
2004 'phone_gateway_username' => array(
2005 xl('Phone Gateway Username'),
2006 'text', // data type
2007 '', // default
2008 xl('Username for Phone Gateway.')
2011 'phone_gateway_password' => array(
2012 xl('Phone Gateway Password'),
2013 'text', // data type
2014 '', // default
2015 xl('Password for Phone Gateway.')
2018 'phone_gateway_url' => array(
2019 xl('Phone Gateway URL'),
2020 'text', // data type
2021 '', // default
2022 xl('URL for Phone Gateway.')
2027 // CDR (Clinical Decision Rules)
2029 'CDR' => array(
2031 'enable_cdr' => array(
2032 xl('Enable Clinical Decisions Rules (CDR)'),
2033 'bool', // data type
2034 '1', // default
2035 xl('Enable Clinical Decisions Rules (CDR)')
2038 'enable_allergy_check' => array(
2039 xl('Enable Allergy Check'),
2040 'bool', // data type
2041 '1', // default
2042 xl('Enable Allergy Check Against Medications and Prescriptions')
2045 'enable_alert_log' => array(
2046 xl('Enable Alert Log'),
2047 'bool', // data type
2048 '1', // default
2049 xl('Enable Alert Logging')
2052 'enable_cdr_new_crp' => array(
2053 xl('Enable Clinical Passive New Reminder(s) Popup'),
2054 'bool', // data type
2055 '1', // default
2056 xl('Enable Clinical Passive New Reminder(s) Popup')
2059 'enable_cdr_crw' => array(
2060 xl('Enable Clinical Passive Reminder Widget'),
2061 'bool', // data type
2062 '1', // default
2063 xl('Enable Clinical Passive Reminder Widget')
2066 'enable_cdr_crp' => array(
2067 xl('Enable Clinical Active Reminder Popup'),
2068 'bool', // data type
2069 '1', // default
2070 xl('Enable Clinical Active Reminder Popup')
2073 'enable_cdr_prw' => array(
2074 xl('Enable Patient Reminder Widget'),
2075 'bool', // data type
2076 '1', // default
2077 xl('Enable Patient Reminder Widget')
2080 'enable_cqm' => array(
2081 xl('Enable CQM Reporting'),
2082 'bool', // data type
2083 '1', // default
2084 xl('Enable Clinical Quality Measure (CQM) Reporting')
2087 'pqri_registry_name' => array(
2088 xl('PQRI Registry Name'),
2089 'text', // data type
2090 'Model Registry', // default
2091 xl('PQRI Registry Name')
2094 'pqri_registry_id' => array(
2095 xl('PQRI Registry ID'),
2096 'text', // data type
2097 '125789123', // default
2098 xl('PQRI Registry ID')
2101 'enable_amc' => array(
2102 xl('Enable AMC Reporting'),
2103 'bool', // data type
2104 '1', // default
2105 xl('Enable Automated Measure Calculations (AMC) Reporting')
2108 'enable_amc_prompting' => array(
2109 xl('Enable AMC Prompting'),
2110 'bool', // data type
2111 '1', // default
2112 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
2115 'enable_amc_tracking' => array(
2116 xl('Enable AMC Tracking'),
2117 'bool', // data type
2118 '1', // default
2119 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
2122 'cdr_report_nice' => array(
2123 xl('CDR Reports Processing Priority'),
2124 array(
2125 '' => xl('Default Priority'),
2126 '5' => xl('Moderate Priority'),
2127 '10' => xl('Moderate/Low Priority'),
2128 '15' => xl('Low Priority'),
2129 '20' => xl('Lowest Priority')
2131 '', // default
2132 xl('Set processing priority for CDR engine based reports.')
2135 'pat_rem_clin_nice' => array(
2136 xl('Patient Reminder Creation Processing Priority'),
2137 array(
2138 '' => xl('Default Priority'),
2139 '5' => xl('Moderate Priority'),
2140 '10' => xl('Moderate/Low Priority'),
2141 '15' => xl('Low Priority'),
2142 '20' => xl('Lowest Priority')
2144 '', // default
2145 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2148 'report_itemizing_standard' => array(
2149 xl('Enable Standard Report Itemization'),
2150 'bool', // data type
2151 '1', // default
2152 xl('Enable Itemization of Standard Clinical Rules Reports')
2155 'report_itemizing_cqm' => array(
2156 xl('Enable CQM Report Itemization'),
2157 'bool', // data type
2158 '1', // default
2159 xl('Enable Itemization of CQM Reports')
2162 'report_itemizing_amc' => array(
2163 xl('Enable AMC Report Itemization'),
2164 'bool', // data type
2165 '1', // default
2166 xl('Enable Itemization of AMC Reports')
2168 'dated_reminders_max_alerts_to_show' => array(
2169 xl('Dated reminders maximum alerts to show'),
2170 'num', // data type
2171 '5', // default
2172 xl('Dated reminders maximum alerts to show')
2174 'patient_birthday_alert' => array(
2175 xl('Alert on patient birthday'),
2176 array(
2177 '0' => xl('No alert'),
2178 '1' => xl('Alert only on birthday'),
2179 '2' => xl('Alert on and after birthday'),
2180 '3' => xl('Alert on and up to 28 days after birthday')
2182 '1', // default
2183 xl('Alert on patient birthday')
2185 'patient_birthday_alert_manual_off' => array(
2186 xl('Patient birthday alert requires turning off'),
2187 'bool', // data type
2188 '0', // default
2189 xl('Patient birthday alert requires turning off')
2193 // Logging
2195 'Logging' => array(
2197 'enable_auditlog' => array(
2198 xl('Enable Audit Logging'),
2199 'bool', // data type
2200 '1', // default
2201 xl('Enable Audit Logging')
2204 'audit_events_patient-record' => array(
2205 xl('Audit Logging Patient Record'),
2206 'bool', // data type
2207 '1', // default
2208 xl('Enable logging of patient record modifications.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2211 'audit_events_scheduling' => array(
2212 xl('Audit Logging Scheduling'),
2213 'bool', // data type
2214 '1', // default
2215 xl('Enable logging of scheduling activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2218 'audit_events_order' => array(
2219 xl('Audit Logging Order'),
2220 'bool', // data type
2221 '1', // default
2222 xl('Enable logging of ordering activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2225 'audit_events_security-administration' => array(
2226 xl('Audit Logging Security Administration'),
2227 'bool', // data type
2228 '1', // default
2229 xl('Enable logging of security and administration activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2232 'audit_events_backup' => array(
2233 xl('Audit Logging Backups'),
2234 'bool', // data type
2235 '1', // default
2236 xl('Enable logging of backup related activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2239 'audit_events_other' => array(
2240 xl('Audit Logging Miscellaneous'),
2241 'bool', // data type
2242 '1', // default
2243 xl('Enable logging of miscellaneous activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2246 'audit_events_query' => array(
2247 xl('Audit Logging SELECT Query'),
2248 'bool', // data type
2249 '0', // default
2250 xl('Enable logging of all SQL SELECT queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2253 'audit_events_cdr' => array(
2254 xl('Audit CDR Engine Queries'),
2255 'bool', // data type
2256 '0', // default
2257 xl('Enable logging of CDR Engine Queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2260 'enable_atna_audit' => array(
2261 xl('Enable ATNA Auditing'),
2262 'bool', // data type
2263 '0', // default
2264 xl('Enable Audit Trail and Node Authentication (ATNA).')
2267 'atna_audit_host' => array(
2268 xl('ATNA audit host'),
2269 'text', // data type
2270 '', // default
2271 xl('The hostname of the ATNA audit repository machine.')
2274 'atna_audit_port' => array(
2275 xl('ATNA audit port'),
2276 'text', // data type
2277 '6514', // default
2278 xl('Listening port of the RFC 5425 TLS syslog server.')
2281 'atna_audit_localcert' => array(
2282 xl('ATNA audit local certificate'),
2283 'text', // data type
2284 '', // default
2285 xl('Certificate to send to RFC 5425 TLS syslog server.')
2288 'atna_audit_cacert' => array(
2289 xl('ATNA audit CA certificate'),
2290 'text', // data type
2291 '', // default
2292 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2295 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
2296 'enable_auditlog_encryption' => array(
2297 xl('Enable Audit Log Encryption'),
2298 'bool', // data type
2299 '0', // default
2300 xl('Enable Audit Log Encryption')
2303 'billing_log_option' => array(
2304 xl('Billing Log Option'),
2305 array(
2306 '1' => xl('Billing Log Append'),
2307 '2' => xl('Billing Log Overwrite')
2309 '1', // default
2310 xl('Billing log setting to append or overwrite the log file.')
2313 'gbl_print_log_option' => array(
2314 xl('Printing Log Option'),
2315 array(
2316 '0' => xl('No logging'),
2317 '1' => xl('Hide print feature'),
2318 '2' => xl('Log entire document'),
2320 '0', // default
2321 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2326 // Miscellaneous Tab
2328 'Miscellaneous' => array(
2330 'mysql_bin_dir' => array(
2331 xl('Path to MySQL Binaries'),
2332 'text', // data type
2333 $mysql_bin_dir, // default
2334 xl('Full path to directory containing MySQL executables.')
2337 'perl_bin_dir' => array(
2338 xl('Path to Perl Binaries'),
2339 'text', // data type
2340 $perl_bin_dir, // default
2341 xl('Full path to directory containing Perl executables.')
2344 'temporary_files_dir' => array(
2345 xl('Path to Temporary Files'),
2346 'text', // data type
2347 $temporary_files_dir, // default
2348 xl('Full path to directory used for temporary files.')
2351 'backup_log_dir' => array(
2352 xl('Path for Event Log Backup'),
2353 'text', // data type
2354 $backup_log_dir, // default
2355 xl('Full path to directory for event log backup.')
2358 'state_data_type' => array(
2359 xl('State Data Type'),
2360 array(
2361 '2' => xl('Text field'),
2362 '1' => xl('Single-selection list'),
2363 '26' => xl('Single-selection list with ability to add to the list'),
2365 '26', // default
2366 xl('Field type to use for employer or subscriber state in demographics.')
2369 'state_list' => array(
2370 xl('State list'),
2371 'text', // data type
2372 'state', // default
2373 xl('List used by above State Data Type option.')
2376 'state_custom_addlist_widget' => array(
2377 xl('State List Widget Custom Fields'),
2378 'bool', // data type
2379 '1', // default
2380 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2383 'country_data_type' => array(
2384 xl('Country Data Type'),
2385 array(
2386 '2' => xl('Text field'),
2387 '1' => xl('Single-selection list'),
2388 '26' => xl('Single-selection list with ability to add to the list'),
2390 '26', // default
2391 xl('Field type to use for employer or subscriber country in demographics.')
2394 'country_list' => array(
2395 xl('Country list'),
2396 'text', // data type
2397 'country', // default
2398 xl('List used by above Country Data Type option.')
2401 'print_command' => array(
2402 xl('Print Command'),
2403 'text', // data type
2404 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2405 xl('Shell command for printing from the server.')
2408 'default_chief_complaint' => array(
2409 xl('Default Reason for Visit'),
2410 'text', // data type
2412 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2415 'default_new_encounter_form' => array(
2416 xl('Default Encounter Form ID'),
2417 'text', // data type
2419 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
2422 'MedicareReferrerIsRenderer' => array(
2423 xl('Medicare Referrer Is Renderer'),
2424 'bool', // data type
2425 '0', // default = true
2426 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2429 'post_to_date_benchmark' => array(
2430 xl('Financial Close Date (yyyy-mm-dd)'),
2431 'text', // data type
2432 date('Y-m-d', time() - (10 * 24 * 60 * 60)), // default
2433 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2436 'enable_hylafax' => array(
2437 xl('Enable Hylafax Support'),
2438 'bool', // data type
2439 '0', // default
2440 xl('Enable Hylafax Support')
2443 'hylafax_server' => array(
2444 xl('Hylafax Server'),
2445 'text', // data type
2446 'localhost', // default
2447 xl('Hylafax server hostname.')
2450 'hylafax_basedir' => array(
2451 xl('Hylafax Directory'),
2452 'text', // data type
2453 '/var/spool/hylafax', // default
2454 xl('Location where Hylafax stores faxes.')
2457 'hylafax_enscript' => array(
2458 xl('Hylafax Enscript Command'),
2459 'text', // data type
2460 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2461 xl('Enscript command used by Hylafax.')
2464 'enable_scanner' => array(
2465 xl('Enable Scanner Support'),
2466 'bool', // data type
2467 '0', // default
2468 xl('Enable Scanner Support')
2471 'scanner_output_directory' => array(
2472 xl('Scanner Directory'),
2473 'text', // data type
2474 '/mnt/scan_docs', // default
2475 xl('Location where scans are stored.')
2479 // Portal Tab
2481 'Portal' => array(
2483 'portal_onsite_two_enable' => array(
2484 xl('Enable Version 2 Onsite Patient Portal'),
2485 'bool', // data type
2486 '0',
2487 xl('Enable Version 2 Onsite Patient Portal')
2490 'portal_onsite_two_address' => array(
2491 xl('Version 2 Onsite Patient Portal Site Address'),
2492 'text', // data type
2493 'https://your_web_site.com/openemr/portal',
2494 xl('Website link for the Version 2 Onsite Patient Portal.')
2497 'portal_onsite_two_basepath' => array(
2498 xl('Portal Uses Server Base Path (internal)'),
2499 'bool',
2500 '0',
2501 xl('Use servers protocol and host in urls (portal internal only).')
2504 'portal_onsite_two_register' => array(
2505 xl('Allow Version 2 Onsite New Patient Registration Widget'),
2506 'bool', // data type
2507 '1',
2508 xl('Enable Version 2 Onsite Patient Portal new patient to self register.')
2511 'portal_two_payments' => array(
2512 xl('Allow Version 2 Onsite Online Payments'),
2513 'bool', // data type
2514 '0',
2515 xl('Allow Version 2 Onsite Patient to make payments online.')
2518 'portal_two_pass_reset' => array(
2519 xl('Allow Version 2 Patients to Reset Credentials'),
2520 'bool', // data type
2521 '0',
2522 xl('Patient may change their logon from portal login dialog.')
2525 'portal_onsite_enable' => array(
2526 xl('Enable Version 1 Onsite Patient Portal'),
2527 'bool', // data type
2528 '0',
2529 xl('Enable Version 1 Onsite Patient Portal')
2532 'portal_onsite_address' => array(
2533 xl('Version 1 Onsite Patient Portal Site Address'),
2534 'text', // data type
2535 'https://your_web_site.com/openemr/patients',
2536 xl('Website link for the Version 1 Onsite Patient Portal.')
2539 'portal_onsite_document_download' => array(
2540 xl('Enable Onsite Patient Portal Document Download'),
2541 'bool', // data type
2542 '1',
2543 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2546 'portal_offsite_enable' => array(
2547 xl('Enable Offsite Patient Portal'),
2548 'bool', // data type
2549 '0',
2550 xl('Enable Offsite Patient Portal.')
2552 'portal_offsite_providerid' => array(
2553 xl('Offsite Patient Portal Provider ID'),
2554 'text', // data type
2556 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2559 'portal_offsite_username' => array(
2560 xl('Offsite Patient Portal Username'),
2561 'text', // data type
2563 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2566 'portal_offsite_password' => array(
2567 xl('Offsite Patient Portal Password'),
2568 'pwd', // data type
2570 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2573 'portal_offsite_address' => array(
2574 xl('Offsite Patient Portal Site Address'),
2575 'text', // data type
2576 'https://ssh.mydocsportal.com/provider.php',
2577 xl('Offsite Https link for the Patient Portal.')
2580 'portal_offsite_address_patient_link' => array(
2581 xl('Offsite Patient Portal Site Address (Patient Link)'),
2582 'text', // data type
2583 'https://ssh.mydocsportal.com',
2584 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2587 // Currently the "CMS Portal" supports WordPress. Other Content Management
2588 // Systems may be supported in the future.
2590 'gbl_portal_cms_enable' => array(
2591 xl('Enable CMS Portal'),
2592 'bool', // data type
2593 '0',
2594 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2597 'gbl_portal_cms_address' => array(
2598 xl('CMS Portal Site Address'),
2599 'text', // data type
2600 'https://your_cms_site.com/',
2601 xl('URL for the WordPress site that supports the portal')
2604 'gbl_portal_cms_username' => array(
2605 xl('CMS Portal Username'),
2606 'text', // data type
2608 xl('Login name of WordPress user for portal access')
2611 'gbl_portal_cms_password' => array(
2612 xl('CMS Portal Password'),
2613 'text', // data type
2615 xl('Password for the above user')
2620 // Connectors Tab
2622 'Connectors' => array(
2624 'fhir_enable' => array(
2625 xl('Enable FHIR Provider Client Service'),
2626 array(
2627 0 => xl('Off: No Service.'),
2628 1 => xl('On: HAPI FHIR.'),
2629 2 => xl('On: Smart on FHIR.'),
2631 '0',
2632 xl('Enable FHIR Provider Client Service')
2635 'fhir_base_url' => array(
2636 xl('FHIR Server Base Address'),
2637 'text',
2638 'https://hapi.fhir.org/baseDstu3/',
2639 xl('Base URL for FHIR Server. Url should end with /')
2642 'medex_enable' => array(
2643 xl('Enable MedEx Communication Service'),
2644 'bool', // data type
2645 '0',
2646 xl('Enable MedEx Communication Service')
2649 'erx_enable' => array(
2650 xl('Enable NewCrop eRx Service'),
2651 'bool',
2652 '0',
2653 xl('Enable NewCrop eRx Service.') . ' ' .
2654 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.')
2657 'erx_newcrop_path' => array(
2658 xl('NewCrop eRx Site Address'),
2659 'text',
2660 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2661 xl('URL for NewCrop eRx Site Address.')
2664 'erx_newcrop_path_soap' => array(
2665 xl('NewCrop eRx Web Service Address'),
2666 'text',
2667 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2668 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2671 'erx_soap_ttl_allergies' => array(
2672 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2673 'num',
2674 '21600',
2675 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2678 'erx_soap_ttl_medications' => array(
2679 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2680 'num',
2681 '21600',
2682 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2685 'erx_account_partner_name' => array(
2686 xl('NewCrop eRx Partner Name'),
2687 'text',
2689 xl('Partner Name issued for NewCrop eRx service.')
2692 'erx_account_name' => array(
2693 xl('NewCrop eRx Name'),
2694 'text',
2696 xl('Account Name issued for NewCrop eRx service.')
2699 'erx_account_password' => array(
2700 xl('NewCrop eRx Password'),
2701 'pass',
2703 xl('Account Password issued for NewCrop eRx service.')
2706 'erx_account_id' => array(
2707 xl('NewCrop eRx Account Id'),
2708 'text',
2709 '1',
2710 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2713 'erx_upload_active' => array(
2714 xl('Only upload active prescriptions'),
2715 'bool',
2716 '0',
2717 xl('Only upload active prescriptions to NewCrop eRx.')
2720 'erx_import_status_message' => array(
2721 xl('Enable NewCrop eRx import status message'),
2722 'bool',
2723 '0',
2724 xl('Enable import status message after visiting NewCrop eRx.')
2727 'erx_medication_display' => array(
2728 xl('Do not display NewCrop eRx Medications uploaded'),
2729 'bool',
2730 '0',
2731 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2734 'erx_allergy_display' => array(
2735 xl('Do not display NewCrop eRx Allergy uploaded'),
2736 'bool',
2737 '0',
2738 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2741 'erx_default_patient_country' => array(
2742 xl('NewCrop eRx Default Patient Country'),
2743 array(
2744 '' => '',
2745 'US' => xl('USA'),
2746 'CA' => xl('Canada'),
2747 'MX' => xl('Mexico'),
2750 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2753 'erx_debug_setting' => array(
2754 xl('NewCrop eRx Debug Setting'),
2755 array(
2756 0 => xl('None'),
2757 1 => xl('Request Only'),
2758 2 => xl('Response Only'),
2759 3 => xl('Request & Response'),
2761 '0',
2762 xl('Log all NewCrop eRx Requests and / or Responses.'),
2765 'weno_rx_enable' => array(
2766 xl('Enable Weno eRx Service'),
2767 'bool',
2768 '0',
2769 xl('Enable Weno eRx Service') . ' ' . xl('Contact Open Med Practice, www.openmedpractice.com for subscribing to the Weno Free eRx service.')
2772 'weno_account_id' => array(
2773 xl('Weno eRx Account Id'),
2774 'text',
2775 '137',
2776 xl('Account Id issued for Weno eRx service.')
2779 'weno_account_pass' => array(
2780 xl('Weno eRx Account Pass'),
2781 'text',
2782 '7C84773D5063B20BC9E41636A091C6F17E9C1E34',
2783 xl('Account Id issued for Weno eRx service.')
2786 'weno_provider_id' => array(
2787 xl('Weno eRx Clinic ID'),
2788 'text',
2789 'C36275',
2790 xl('Account Id issued for Your clinics eRx service.')
2793 'ccda_alt_service_enable' => array(
2794 xl('Enable C-CDA Alternate Service'),
2795 array(
2796 0 => xl('Off'),
2797 1 => xl('Care Coordination Only'),
2798 2 => xl('Portal Only'),
2799 3 => xl('Both'),
2801 '0',
2802 xl('Enable C-CDA Alternate Service')
2805 'phimail_enable' => array(
2806 xl('Enable phiMail Direct Messaging Service'),
2807 'bool', // data type
2808 '0',
2809 xl('Enable phiMail Direct Messaging Service')
2812 'phimail_server_address' => array(
2813 xl('phiMail Server Address'),
2814 'text', // data type
2815 'https://phimail.example.com:32541',
2816 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2819 'phimail_username' => array(
2820 xl('phiMail Username'),
2821 'text', // data type
2823 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2826 'phimail_password' => array(
2827 xl('phiMail Password'),
2828 'pass', // data type
2830 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2833 'phimail_notify' => array(
2834 xl('phiMail notification user'),
2835 'text', // data type
2836 'admin',
2837 xl('This user will receive notification of new incoming Direct messages')
2840 'phimail_interval' => array(
2841 xl('phiMail Message Check Interval (minutes)'),
2842 'num', // data type
2843 '5',
2844 xl('Interval between message checks (set to zero for manual checks only)')
2847 'phimail_ccd_enable' => array(
2848 xl('phiMail Allow CCD Send'),
2849 'bool', // data type
2850 '0',
2851 xl('phiMail Allow CCD Send')
2854 'phimail_ccr_enable' => array(
2855 xl('phiMail Allow CCR Send'),
2856 'bool', // data type
2857 '0',
2858 xl('phiMail Allow CCR Send')
2862 'Rx' => array(
2863 'rx_enable_DEA' => array(
2864 xl('Rx Enable DEA #'),
2865 'bool', // data type
2866 '1',
2867 xl('Rx Enable DEA #')
2869 'rx_show_DEA' => array(
2870 xl('Rx Show DEA #'),
2871 'bool', // data type
2872 '0',
2873 xl('Rx Show DEA #')
2875 'rx_enable_NPI' => array(
2876 xl('Rx Enable NPI'),
2877 'bool', // data type
2878 '0',
2879 xl('Rx Enable NPI')
2881 'rx_show_NPI' => array(
2882 xl('Rx Show NPI'),
2883 'bool', // data type
2884 '0',
2885 xl('Rx Show NPI')
2887 'rx_enable_SLN' => array(
2888 xl('Rx Enable State Lic. #'),
2889 'bool', // data type
2890 '0',
2891 xl('Rx Enable State Lic. #')
2893 'rx_show_SLN' => array(
2894 xl('Rx Show State Lic. #'),
2895 'bool', // data type
2896 '0',
2897 xl('Rx Show State Lic. #')
2899 'rx_show_drug-drug' => array(
2900 xl('Rx NLM Drug-Drug'),
2901 'bool', // data type
2902 '0',
2903 xl('Rx NLM Drug-Drug')
2905 'rx_paper_size' => array(
2906 xl('Rx Paper Size'), // descriptive name
2907 array(
2908 'LETTER' => xl('Letter Paper Size'),
2909 'LEGAL' => xl('Legal Paper Size'),
2910 'FOLIO' => xl('Folio Paper Size'),
2911 'EXECUTIVE' => xl('Executive Paper Size'),
2912 '4A0' => ('4A0' . " " . xl('Paper Size')),
2913 '2A0' => ('2A0' . " " . xl('Paper Size')),
2914 'A0' => ('A0' . " " . xl('Paper Size')),
2915 'A1' => ('A1' . " " . xl('Paper Size')),
2916 'A2' => ('A2' . " " . xl('Paper Size')),
2917 'A3' => ('A3' . " " . xl('Paper Size')),
2918 'A4' => ('A4' . " " . xl('Paper Size')),
2919 'A5' => ('A5' . " " . xl('Paper Size')),
2920 'A6' => ('A6' . " " . xl('Paper Size')),
2921 'A7' => ('A7' . " " . xl('Paper Size')),
2922 'A8' => ('A8' . " " . xl('Paper Size')),
2923 'A9' => ('A9' . " " . xl('Paper Size')),
2924 'A10' => ('A10' . " " . xl('Paper Size')),
2925 'B0' => ('B0' . " " . xl('Paper Size')),
2926 'B1' => ('B1' . " " . xl('Paper Size')),
2927 'B2' => ('B2' . " " . xl('Paper Size')),
2928 'B3' => ('B3' . " " . xl('Paper Size')),
2929 'B4' => ('B4' . " " . xl('Paper Size')),
2930 'B5' => ('B5' . " " . xl('Paper Size')),
2931 'B6' => ('B6' . " " . xl('Paper Size')),
2932 'B7' => ('B7' . " " . xl('Paper Size')),
2933 'B8' => ('B8' . " " . xl('Paper Size')),
2934 'B9' => ('B9' . " " . xl('Paper Size')),
2935 'B10' => ('B10' . " " . xl('Paper Size')),
2936 'C0' => ('C0' . " " . xl('Paper Size')),
2937 'C1' => ('C1' . " " . xl('Paper Size')),
2938 'C2' => ('C2' . " " . xl('Paper Size')),
2939 'C3' => ('C3' . " " . xl('Paper Size')),
2940 'C4' => ('C4' . " " . xl('Paper Size')),
2941 'C5' => ('C5' . " " . xl('Paper Size')),
2942 'C6' => ('C6' . " " . xl('Paper Size')),
2943 'C7' => ('C7' . " " . xl('Paper Size')),
2944 'C8' => ('C8' . " " . xl('Paper Size')),
2945 'C9' => ('C9' . " " . xl('Paper Size')),
2946 'C10' => ('C10' . " " . xl('Paper Size')),
2947 'RA0' => ('RA0' . " " . xl('Paper Size')),
2948 'RA1' => ('RA1' . " " . xl('Paper Size')),
2949 'RA2' => ('RA2' . " " . xl('Paper Size')),
2950 'RA3' => ('RA3' . " " . xl('Paper Size')),
2951 'RA4' => ('RA4' . " " . xl('Paper Size')),
2952 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2953 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2954 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2955 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2956 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2958 'LETTER', // default = tree menu
2959 xl('Rx Paper Size')
2961 'rx_left_margin' => array(
2962 xl('Rx Left Margin (px)'),
2963 'num',
2964 '30',
2965 xl('Rx Left Margin (px)')
2967 'rx_right_margin' => array(
2968 xl('Rx Right Margin (px)'),
2969 'num',
2970 '30',
2971 xl('Rx Right Margin (px)')
2973 'rx_top_margin' => array(
2974 xl('Rx Top Margin (px)'),
2975 'num',
2976 '72',
2977 xl('Rx Top Margin (px)')
2979 'rx_bottom_margin' => array(
2980 xl('Rx Bottom Margin (px)'),
2981 'num',
2982 '30',
2983 xl('Rx Bottom Margin (px)')
2987 'PDF' => array(
2988 'pdf_layout' => array(
2989 xl('Layout'),
2990 array(
2991 'P' => xl('Portrait'),
2992 'L' => xl('Landscape')
2994 'P', //defaut
2995 xl("Choose Layout Direction"),
2997 'pdf_language' => array(
2998 xl('PDF Language'),
2999 array(
3000 'aa' => xl('Afar'),
3001 'af' => xl('Afrikaans'),
3002 'ak' => xl('Akan'),
3003 'sq' => xl('Albanian'),
3004 'am' => xl('Amharic'),
3005 'ar' => xl('Arabic'),
3006 'an' => xl('Aragonese'),
3007 'hy' => xl('Armenian'),
3008 'as' => xl('Assamese'),
3009 'av' => xl('Avaric'),
3010 'ae' => xl('Avestan'),
3011 'ay' => xl('Aymara'),
3012 'az' => xl('Azerbaijani'),
3013 'bm' => xl('Bambara'),
3014 'ba' => xl('Bashkir'),
3015 'eu' => xl('Basque'),
3016 'be' => xl('Belarusian'),
3017 'bn' => xl('Bengali- Bangla'),
3018 'bh' => xl('Bihari'),
3019 'bi' => xl('Bislama'),
3020 'bs' => xl('Bosnian'),
3021 'br' => xl('Breton'),
3022 'bg' => xl('Bulgarian'),
3023 'my' => xl('Burmese'),
3024 'ca' => xl('Catalan- Valencian'),
3025 'ch' => xl('Chamorro'),
3026 'ce' => xl('Chechen'),
3027 'ny' => xl('Chichewa- Chewa- Nyanja'),
3028 'zh' => xl('Chinese'),
3029 'cv' => xl('Chuvash'),
3030 'kw' => xl('Cornish'),
3031 'co' => xl('Corsican'),
3032 'cr' => xl('Cree'),
3033 'hr' => xl('Croatian'),
3034 'cs' => xl('Czech'),
3035 'da' => xl('Danish'),
3036 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
3037 'nl' => xl('Dutch'),
3038 'dz' => xl('Dzongkha'),
3039 'en' => xl('English'),
3040 'eo' => xl('Esperanto'),
3041 'et' => xl('Estonian'),
3042 'ee' => xl('Ewe'),
3043 'fo' => xl('Faroese'),
3044 'fj' => xl('Fijian'),
3045 'fi' => xl('Finnish'),
3046 'fr' => xl('French'),
3047 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
3048 'gl' => xl('Galician'),
3049 'ka' => xl('Georgian'),
3050 'de' => xl('German'),
3051 'el' => xl('Greek, Modern'),
3052 'gn' => xl('Guarani'),
3053 'gu' => xl('Gujarati'),
3054 'ht' => xl('Haitian- Haitian Creole'),
3055 'ha' => xl('Hausa'),
3056 'he' => xl('Hebrew (modern)'),
3057 'hz' => xl('Herero'),
3058 'hi' => xl('Hindi'),
3059 'ho' => xl('Hiri Motu'),
3060 'hu' => xl('Hungarian'),
3061 'ia' => xl('Interlingua'),
3062 'id' => xl('Indonesian'),
3063 'ie' => xl('Interlingue'),
3064 'ga' => xl('Irish'),
3065 'ig' => xl('Igbo'),
3066 'ik' => xl('Inupiaq'),
3067 'io' => xl('Ido'),
3068 'is' => xl('Icelandic'),
3069 'it' => xl('Italian'),
3070 'iu' => xl('Inuktitut'),
3071 'ja' => xl('Japanese'),
3072 'jv' => xl('Javanese'),
3073 'kl' => xl('Kalaallisut, Greenlandic'),
3074 'kn' => xl('Kannada'),
3075 'kr' => xl('Kanuri'),
3076 'ks' => xl('Kashmiri'),
3077 'kk' => xl('Kazakh'),
3078 'km' => xl('Khmer'),
3079 'ki' => xl('Kikuyu, Gikuyu'),
3080 'rw' => xl('Kinyarwanda'),
3081 'ky' => xl('Kyrgyz'),
3082 'kv' => xl('Komi'),
3083 'kg' => xl('Kongo'),
3084 'ko' => xl('Korean'),
3085 'ku' => xl('Kurdish'),
3086 'kj' => xl('Kwanyama, Kuanyama'),
3087 'la' => xl('Latin'),
3088 'lb' => xl('Luxembourgish, Letzeburgesch'),
3089 'lg' => xl('Ganda'),
3090 'li' => xl('Limburgish, Limburgan, Limburger'),
3091 'ln' => xl('Lingala'),
3092 'lo' => xl('Lao'),
3093 'lt' => xl('Lithuanian'),
3094 'lu' => xl('Luba-Katanga'),
3095 'lv' => xl('Latvian'),
3096 'gv' => xl('Manx'),
3097 'mk' => xl('Macedonian'),
3098 'mg' => xl('Malagasy'),
3099 'ms' => xl('Malay'),
3100 'ml' => xl('Malayalam'),
3101 'mt' => xl('Maltese'),
3102 'mi' => xl('Maori'),
3103 'mr' => xl('Marathi (Marathi)'),
3104 'mh' => xl('Marshallese'),
3105 'mn' => xl('Mongolian'),
3106 'na' => xl('Nauru'),
3107 'nv' => xl('Navajo, Navaho'),
3108 'nb' => xl('Norwegian Bokmal'),
3109 'nd' => xl('North Ndebele'),
3110 'ne' => xl('Nepali'),
3111 'ng' => xl('Ndonga'),
3112 'nn' => xl('Norwegian Nynorsk'),
3113 'no' => xl('Norwegian'),
3114 'ii' => xl('Nuosu'),
3115 'nr' => xl('South Ndebele'),
3116 'oc' => xl('Occitan'),
3117 'oj' => xl('Ojibwe, Ojibwa'),
3118 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
3119 'om' => xl('Oromo'),
3120 'or' => xl('Oriya'),
3121 'os' => xl('Ossetian, Ossetic'),
3122 'pa' => xl('Panjabi, Punjabi'),
3123 'pi' => xl('Pali'),
3124 'fa' => xl('Persian (Farsi)'),
3125 'pl' => xl('Polish'),
3126 'ps' => xl('Pashto, Pushto'),
3127 'pt' => xl('Portuguese'),
3128 'qu' => xl('Quechua'),
3129 'rm' => xl('Romansh'),
3130 'rn' => xl('Kirundi'),
3131 'ro' => xl('Romanian'),
3132 'ru' => xl('Russian'),
3133 'sa' => xl('Sanskrit (Samskrta)'),
3134 'sc' => xl('Sardinian'),
3135 'sd' => xl('Sindhi'),
3136 'se' => xl('Northern Sami'),
3137 'sm' => xl('Samoan'),
3138 'sg' => xl('Sango'),
3139 'sr' => xl('Serbian'),
3140 'gd' => xl('Scottish Gaelic- Gaelic'),
3141 'sn' => xl('Shona'),
3142 'si' => xl('Sinhala, Sinhalese'),
3143 'sk' => xl('Slovak'),
3144 'sl' => xl('Slovene'),
3145 'so' => xl('Somali'),
3146 'st' => xl('Southern Sotho'),
3147 'es' => xl('Spanish- Castilian'),
3148 'su' => xl('Sundanese'),
3149 'sw' => xl('Swahili'),
3150 'ss' => xl('Swati'),
3151 'sv' => xl('Swedish'),
3152 'ta' => xl('Tamil'),
3153 'te' => xl('Telugu'),
3154 'tg' => xl('Tajik'),
3155 'th' => xl('Thai'),
3156 'ti' => xl('Tigrinya'),
3157 'bo' => xl('Tibetan Standard, Tibetan, Central'),
3158 'tk' => xl('Turkmen'),
3159 'tl' => xl('Tagalog'),
3160 'tn' => xl('Tswana'),
3161 'to' => xl('Tonga (Tonga Islands)'),
3162 'tr' => xl('Turkish'),
3163 'ts' => xl('Tsonga'),
3164 'tt' => xl('Tatar'),
3165 'tw' => xl('Twi'),
3166 'ty' => xl('Tahitian'),
3167 'ug' => xl('Uyghur, Uighur'),
3168 'uk' => xl('Ukrainian'),
3169 'ur' => xl('Urdu'),
3170 'uz' => xl('Uzbek'),
3171 've' => xl('Venda'),
3172 'vi' => xl('Vietnamese'),
3173 'vo' => xl('Volapuk'),
3174 'wa' => xl('Walloon'),
3175 'cy' => xl('Welsh'),
3176 'wo' => xl('Wolof'),
3177 'fy' => xl('Western Frisian'),
3178 'xh' => xl('Xhosa'),
3179 'yi' => xl('Yiddish'),
3180 'yo' => xl('Yoruba'),
3181 'za' => xl('Zhuang, Chuang'),
3182 'zu' => xl('Zulu'),
3184 'en', // default English
3185 xl('Choose PDF languange Preference'),
3187 'pdf_size' => array(
3188 xl('Paper Size'), // Descriptive Name
3189 array(
3190 'LETTER' => xl('Letter Paper Size'),
3191 'LEGAL' => xl('Legal Paper Size'),
3192 'FOLIO' => xl('Folio Paper Size'),
3193 'EXECUTIVE' => xl('Executive Paper Size'),
3194 '4A0' => ('4A0' . " " . xl('Paper Size')),
3195 '2A0' => ('2A0' . " " . xl('Paper Size')),
3196 'A0' => ('A0' . " " . xl('Paper Size')),
3197 'A1' => ('A1' . " " . xl('Paper Size')),
3198 'A2' => ('A2' . " " . xl('Paper Size')),
3199 'A3' => ('A3' . " " . xl('Paper Size')),
3200 'A4' => ('A4' . " " . xl('Paper Size')),
3201 'A5' => ('A5' . " " . xl('Paper Size')),
3202 'A6' => ('A6' . " " . xl('Paper Size')),
3203 'A7' => ('A7' . " " . xl('Paper Size')),
3204 'A8' => ('A8' . " " . xl('Paper Size')),
3205 'A9' => ('A9' . " " . xl('Paper Size')),
3206 'A10' => ('A10' . " " . xl('Paper Size')),
3207 'B0' => ('B0' . " " . xl('Paper Size')),
3208 'B1' => ('B1' . " " . xl('Paper Size')),
3209 'B2' => ('B2' . " " . xl('Paper Size')),
3210 'B3' => ('B3' . " " . xl('Paper Size')),
3211 'B4' => ('B4' . " " . xl('Paper Size')),
3212 'B5' => ('B5' . " " . xl('Paper Size')),
3213 'B6' => ('B6' . " " . xl('Paper Size')),
3214 'B7' => ('B7' . " " . xl('Paper Size')),
3215 'B8' => ('B8' . " " . xl('Paper Size')),
3216 'B9' => ('B9' . " " . xl('Paper Size')),
3217 'B10' => ('B10' . " " . xl('Paper Size')),
3218 'C0' => ('C0' . " " . xl('Paper Size')),
3219 'C1' => ('C1' . " " . xl('Paper Size')),
3220 'C2' => ('C2' . " " . xl('Paper Size')),
3221 'C3' => ('C3' . " " . xl('Paper Size')),
3222 'C4' => ('C4' . " " . xl('Paper Size')),
3223 'C5' => ('C5' . " " . xl('Paper Size')),
3224 'C6' => ('C6' . " " . xl('Paper Size')),
3225 'C7' => ('C7' . " " . xl('Paper Size')),
3226 'C8' => ('C8' . " " . xl('Paper Size')),
3227 'C9' => ('C9' . " " . xl('Paper Size')),
3228 'C10' => ('C10' . " " . xl('Paper Size')),
3229 'RA0' => ('RA0' . " " . xl('Paper Size')),
3230 'RA1' => ('RA1' . " " . xl('Paper Size')),
3231 'RA2' => ('RA2' . " " . xl('Paper Size')),
3232 'RA3' => ('RA3' . " " . xl('Paper Size')),
3233 'RA4' => ('RA4' . " " . xl('Paper Size')),
3234 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3235 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3236 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3237 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3238 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3240 'LETTER',
3241 xl('Choose Paper Size')
3243 'pdf_left_margin' => array(
3244 xl('Left Margin (mm)'),
3245 'num',
3246 '5',
3247 xl('Left Margin (mm)')
3249 'pdf_right_margin' => array(
3250 xl('Right Margin (mm)'),
3251 'num',
3252 '5',
3253 xl('Right Margin (mm)')
3255 'pdf_top_margin' => array(
3256 xl('Top Margin (mm)'),
3257 'num',
3258 '5',
3259 xl('Top Margin (mm)')
3261 'pdf_bottom_margin' => array(
3262 xl('Bottom Margin (px)'),
3263 'num',
3264 '8',
3265 xl('Bottom Margin (px)')
3267 'pdf_output' => array(
3268 xl('Output Type'),
3269 array(
3270 'D' => xl('Download'),
3271 'I' => xl('Inline')
3273 'D', //defaut
3274 xl("Choose Download or Display Inline"),
3277 'chart_label_type' => array(
3278 xl('Patient Label Type'),
3279 array(
3280 '0' => xl('None'),
3281 '1' => '5160',
3282 '2' => '5161',
3283 '3' => '5162'
3285 '1', // default
3286 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3289 'barcode_label_type' => array(
3290 xl('Barcode Label Type'),
3291 array(
3292 '0' => xl('None'),
3293 '1' => 'std25',
3294 '2' => 'int25',
3295 '3' => 'ean8',
3296 '4' => 'ean13',
3297 '5' => 'upc',
3298 '6' => 'code11',
3299 '7' => 'code39',
3300 '8' => 'code93',
3301 '9' => 'code128',
3302 '10' => 'codabar',
3303 '11' => 'msi',
3304 '12' => 'datamatrix'
3306 '9', // default = None
3307 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3310 'addr_label_type' => array(
3311 xl('Print Patient Address Label'),
3312 'bool', // data type
3313 '1', // default = false
3314 xl('Select to print patient address labels from popups in left nav screen.')
3317 'env_x_width' => array(
3318 xl('Envelope Width in mm'),
3319 'num', // data type
3320 '104.775',
3321 xl('In Portrait mode, determines the width of the envelope along the x-axis in mm')
3324 'env_y_height' => array(
3325 xl('Envelope Height in mm'),
3326 'num', // data type
3327 '241.3',
3328 xl('In Portrait mode, determines the height of the envelope along the y-axis in mm')
3331 'env_font_size' => array(
3332 xl('Font Size in Pt'),
3333 'num', // data type
3334 '14',
3335 xl('Sets the font of the address text on the envelope in mm')
3338 'env_x_dist' => array(
3339 xl('Envelope x-axis starting pt'),
3340 'num', // data type
3341 '65',
3342 xl('Distance from the \'top\' of the envelope in mm')
3345 'env_y_dist' => array(
3346 xl('Envelope y-axis starting pt'),
3347 'num', // data type
3348 '220',
3349 xl('Distance from the right most edge of the envelope in portrait position in mm')