minor fixes to prior commit
[openemr.git] / library / globals.inc.php
blob42b86fe5c9aa2c8413ffae73dfd5d6fc19a83916
1 <?php
2 // Copyright (C) 2010-2015 Rod Roark <rod@sunsetsystems.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 // $GLOBALS['print_command'] is the
10 // Print command for spooling to printers, used by statements.inc.php
11 // This is the command to be used for printing (without the filename).
12 // The word following "-P" should be the name of your printer. This
13 // example is designed for 8.5x11-inch paper with 1-inch margins,
14 // 10 CPI, 6 LPI, 65 columns, 54 lines per page.
16 // IF lpr services are installed on Windows this setting will be similar
17 // Otherwise configure it as needed (print /d:PRN) might be an option for Windows parallel printers
19 // Current supported languages: // Allow capture of term for translation:
20 // Albanian // xl('Albanian')
21 // Amharic // xl('Amharic')
22 // Arabic // xl('Arabic')
23 // Armenian // xl('Armenian')
24 // Bahasa Indonesia // xl('Bahasa Indonesia')
25 // Bengali // xl('Bengali')
26 // Bosnian // xl('Bosnian')
27 // Chinese (Simplified) // xl('Chinese (Simplified)')
28 // Chinese (Traditional) // xl('Chinese (Traditional)')
29 // Croatian // xl('Croatian')
30 // Czech // xl('Czech')
31 // Danish // xl('Danish')
32 // Dutch // xl('Dutch')
33 // English (Indian) // xl('English (Indian)')
34 // English (Standard) // xl('English (Standard)')
35 // Estonian // xl('Estonian')
36 // Filipino // xl('Filipino')
37 // Finnish // xl('Finnish')
38 // French // xl('French (Standard)')
39 // French // xl('French (Canadian)')
40 // Georgian // xl('Georgian')
41 // German // xl('German')
42 // Greek // xl('Greek')
43 // Hebrew // xl('Hebrew')
44 // Hindi // xl('Hindi')
45 // Hungarian // xl('Hungarian')
46 // Italian // xl('Italian')
47 // Japanese // xl('Japanese')
48 // Korean // xl('Korean')
49 // Lithuanian // xl('Lithuanian')
50 // Marathi // xl('Marathi')
51 // Mongolian // xl('Mongolian')
52 // Norwegian // xl('Norwegian')
53 // Persian // xl('Persian')
54 // Polish // xl('Polish')
55 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
56 // Portuguese (European) // xl('Portuguese (European)')
57 // Romanian // xl('Romanian')
58 // Russian // xl('Russian')
59 // Serbian // xl('Serbian')
60 // Sinhala // xl('Sinhala')
61 // Slovak // xl('Slovak')
62 // Somali // xl('Somali')
63 // Spanish (Latin American) // xl('Spanish (Latin American)')
64 // Spanish (Spain) // xl('Spanish (Spain)')
65 // Swedish // xl('Swedish')
66 // Tamil // xl('Tamil')
67 // Thai // xl('Thai')
68 // Turkish // xl('Turkish')
69 // Ukrainian // xl('Ukrainian')
70 // Urdu // xl('Urdu')
71 // Vietnamese // xl('Vietnamese')
73 // OS-dependent stuff.
74 if (stristr(PHP_OS, 'WIN')) {
75 // MS Windows
76 $mysql_bin_dir = 'C:/xampp/mysql/bin';
77 $perl_bin_dir = 'C:/xampp/perl/bin';
78 $temporary_files_dir = 'C:/windows/temp';
79 $backup_log_dir = 'C:/windows/temp';
80 } else {
81 // Everything else
82 $mysql_bin_dir = '/usr/bin';
83 $perl_bin_dir = '/usr/bin';
84 $temporary_files_dir = '/tmp';
85 $backup_log_dir = '/tmp';
88 // Language constant declarations:
89 // xl('Appearance')
90 // xl('Locale')
91 // xl('Features')
92 // xl('Calendar')
93 // xl('Security')
94 // xl('Notifications')
95 // xl('Miscellaneous')
97 // List of user specific tabs and globals
98 $USER_SPECIFIC_TABS = array('Appearance',
99 'Locale',
100 'Report',
101 'Calendar',
102 'CDR',
103 'Connectors');
104 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
105 'default_second_tab',
106 'new_tabs_layout',
107 'theme_tabs_layout',
108 'css_header',
109 'menu_styling_vertical',
110 'default_encounter_view',
111 'gbl_pt_list_page_size',
112 'gbl_pt_list_new_window',
113 'units_of_measurement',
114 'us_weight_format',
115 'date_display_format',
116 'time_display_format',
117 'ledger_begin_date',
118 'print_next_appointment_on_ledger',
119 'calendar_view_type',
120 'event_color',
121 'pat_trkr_timer',
122 'ptkr_visit_reason',
123 'ptkr_date_range',
124 'ptkr_end_date',
125 'checkout_roll_off',
126 'patient_birthday_alert',
127 'patient_birthday_alert_manual_off',
128 'erx_import_status_message');
130 // Gets array of time zones supported by PHP.
132 function gblTimeZones()
134 $zones = timezone_identifiers_list();
135 $arr = array('' => xl('Unassigned'));
136 foreach ($zones as $zone) {
137 $arr[$zone] = str_replace('_', ' ', $zone);
140 return $arr;
143 $GLOBALS_METADATA = array(
145 // Appearance Tab
147 'Appearance' => array(
149 'default_top_pane' => array(
150 xl('Main Top Pane Screen(Or Default First Tab)'), // descriptive name
151 array(
152 'main_info.php' => xl('Calendar Screen'),
153 '../new/new.php' => xl('Patient Search/Add Screen'),
154 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
155 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
156 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen')
158 'main_info.php', // default = calendar
159 xl('Main Top Pane Screen(Or Default First Tab)')
162 'default_second_tab' => array(
163 xl('Default Second Tab'), // descriptive name
164 array(
165 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen'),
166 'main_info.php' => xl('Calendar Screen'),
167 '../new/new.php' => xl('Patient Search/Add Screen'),
168 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
169 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
171 '../../interface/main/messages/messages.php?form_active=1', // default = messages
172 xl('Default Second Tab')
175 'new_tabs_layout' => array(
176 xl('Layout (need to logout/login after change this setting)'),
177 array(
178 '0' => xl('Frame'),
179 '1' => xl('Tabs'),
181 '1',
182 xl('Choose the layout (need to logout and then login to see this new setting).')
185 'theme_tabs_layout' => array(
186 xl('Tabs Layout Theme (need to logout/login after change this setting)'),
187 'tabs_css',
188 'tabs_style_full.css',
189 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.')
192 'css_header' => array(
193 xl('General Theme (need to logout/login after change this setting)'),
194 'css',
195 'style_light.css',
196 xl('Pick a general theme (need to logout/login after change this setting).')
199 'font-family' => array(
200 xl('Default font (need to logout/login after change this setting)'),
201 array(
202 '__default__' => 'Use Theme Font',
203 'Arial, Helvetica, sans-serif' => "Arial",
204 '"Arial Black", Gadget, sans-serif' => "Arial Black",
205 'Impact, Charcoal, sans-serif' => "Impact",
206 '"Lucida Sans Unicode", "Lucida Grande", sans-serif' => "Lucida Sans",
207 'Tahoma, Geneva, sans-serif' => "Tahoma",
208 '"Trebuchet MS", Helvetica, sans-serif' => "Trebuchet MS",
209 'Verdana, Geneva, sans-serif' => "Verdana",
210 'lato' => "Lato",
212 '__default__',
213 xl('Select the default font'),
216 'font-size' => array(
217 xl('Default font size (need to logout/login after change this setting)'),
218 array(
219 '__default__' => 'Use Theme Font Size',
220 '10px' => '10px',
221 '12px' => '12px',
222 '14px' => '14px',
223 '16px' => '16px',
224 '18px' => '18px',
226 '__default__',
227 xl("Select the default font size"),
230 'menu_styling_vertical' => array(
231 xl('Vertical Menu Style'),
232 array(
233 '0' => xl('Tree'),
234 '1' => xl('Sliding'),
236 '1',
237 xl('Vertical Menu Style')
240 'default_encounter_view' => array(
241 xl('Default Encounter View'), // descriptive name
242 array(
243 '0' => xl('Clinical View'),
244 '1' => xl('Billing View'),
246 '0', // default = tree menu
247 xl('Choose your default encounter view')
250 'gbl_nav_area_width' => array(
251 xl('Navigation Area Width'),
252 'num',
253 '175',
254 xl('Width in pixels of the left navigation frame.')
257 'openemr_name' => array(
258 xl('Application Title'),
259 'text',
260 'OpenEMR',
261 xl('Application name for login page and main window title.')
264 'enable_group_therapy' => array(
265 xl('Enable Group Therapy'),
266 'bool', // data type
267 '0', // default = false
268 xl('Enables groups module in system.')
271 'full_new_patient_form' => array(
272 xl('New Patient Form'),
274 array(
275 '0' => xl('Old-style static form without search or duplication check'),
276 '1' => xl('All demographics fields, with search and duplication check'),
277 '2' => xl('Mandatory or specified fields only, search and dup check'),
278 '3' => xl('Mandatory or specified fields only, dup check, no search'),
279 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
281 '1', // default
282 xl('Style of form used for adding new patients')
285 'gbl_edit_patient_form' => array(
286 xl('Modify Patient Form'),
288 array(
289 '0' => xl('Standard check'),
290 '1' => xl('Zend Module check in addition to standard check')
292 '0', // default
293 xl('Validation mechanism for when modifying patient demographics.')
296 'patient_search_results_style' => array(
297 xl('Patient Search Results Style'),
298 array(
299 '0' => xl('Encounter statistics'),
300 '1' => xl('Mandatory and specified fields'),
302 '0', // default
303 xl('Type of columns displayed for patient search results')
306 'gbl_tall_nav_area' => array(
307 xl('Tall Navigation Area'),
308 'bool', // data type
309 '0', // default = false
310 xl('Navigation area uses full height of frameset')
313 'gbl_nav_visit_forms' => array(
314 xl('Navigation Area Visit Forms'),
315 'bool', // data type
316 '1', // default = true
317 xl('Navigation area includes encounter forms')
320 'simplified_demographics' => array(
321 xl('Simplified Demographics'),
322 'bool', // data type
323 '0', // default = false
324 xl('Omit insurance and some other things from the demographics form')
327 'simplified_prescriptions' => array(
328 xl('Simplified Prescriptions'),
329 'bool', // data type
330 '0', // default = false
331 xl('Omit form, route and interval which then become part of dosage')
334 'simplified_copay' => array(
335 xl('Simplified Co-Pay'),
336 'bool', // data type
337 '0', // default = false
338 xl('Omit method of payment from the co-pay panel')
341 'use_charges_panel' => array(
342 xl('Use Charges Panel'),
343 'bool', // data type
344 '0', // default = false
345 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
348 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
349 'enable_fees_in_left_menu' => array(
350 xl('Enable Fees Submenu'),
351 'bool', // data type
352 '1', // default = true
353 xl('Enable Fees Submenu')
355 'enable_batch_payment' => array(
356 xl('Enable Batch Payment'),
357 'bool', // data type
358 '1', // default = true
359 xl('Enable Batch Payment')
361 'enable_posting' => array(
362 xl('Enable Posting'),
363 'bool', // data type
364 '1', // default = true
365 xl('Enable Posting')
367 // EDI history 2012-09-13
368 'enable_edihistory_in_left_menu' => array(
369 xl('Enable EDI History'),
370 'bool', // data type
371 '1', // default = true
372 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
375 'online_support_link' => array(
376 xl('Online Support Link'),
377 'text', // data type
378 'http://open-emr.org/',
379 xl('URL for OpenEMR support.')
382 'support_phone_number' => array(
383 xl('Support Phone Number'),
384 'text',
386 xl('Phone Number for Vendor Support that Appears on the About Page.')
389 'encounter_page_size' => array(
390 xl('Encounter Page Size'),
391 array(
392 '0' => xl('Show All'),
393 '5' => '5',
394 '10' => '10',
395 '15' => '15',
396 '20' => '20',
397 '25' => '25',
398 '50' => '50',
400 '20',
401 xl('Number of encounters to display per page.')
404 'gbl_pt_list_page_size' => array(
405 xl('Patient List Page Size'),
406 array(
407 '10' => '10',
408 '25' => '25',
409 '50' => '50',
410 '100' => '100',
412 '10',
413 xl('Number of patients to display per page in the patient list.')
416 'gbl_pt_list_new_window' => array(
417 xl('Patient List New Window'),
418 'bool', // data type
419 '0', // default = false
420 xl('Default state of New Window checkbox in the patient list.')
423 'gbl_vitals_options' => array(
424 xl('Vitals Form Options'),
425 array(
426 '0' => xl('Standard'),
427 '1' => xl('Omit circumferences'),
429 '0', // default
430 xl('Special treatment for the Vitals form')
433 'insurance_information' => array(
434 xl('Show Additional Insurance Information'), // descriptive name
435 array(
436 '0' => xl('None'),
437 '1' => xl('Address Only'),
438 '2' => xl('Address and Postal Code'),
439 '3' => xl('Address and State'),
440 '4' => xl('Address, State and Postal Code'),
441 '5' => xl('Address, City, State and Postal Code'),
442 '6' => xl('Postal Code and Box Number')
444 '5', // default
445 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
448 'gb_how_sort_list' => array(
449 xl('How to sort a drop-lists'),
450 array(
451 '0' => xl('Sort by seq'),
452 '1' => xl('Sort alphabetically')
454 '0',
455 xl('What kind of sorting will be in the drop lists.')
458 'show_label_login' => array(
459 xl('Show Title on Login'),
460 'bool', // data type
461 '0', // default = false
462 xl('Show Title on Login')
465 'extra_logo_login' => array(
466 xl('Show Extra Logo on Login'),
467 'bool', // data type
468 '0', // default = false
469 xl('Show Extra Logo on Login')
472 'tiny_logo_1' => array(
473 xl('Show Mini Logo 1'),
474 'bool', // data type
475 '0', // default = false
476 xl('Show Mini Logo 1')
479 'tiny_logo_2' => array(
480 xl('Show Mini Logo 2'),
481 'bool', // data type
482 '0', // default = false
483 xl('Show Mini Logo 2')
488 // Locale Tab
490 'Locale' => array(
492 'language_default' => array(
493 xl('Default Language'),
494 'lang', // data type
495 'English (Standard)', // default = english
496 xl('Default language if no other is allowed or chosen.')
499 'language_menu_showall' => array(
500 xl('All Languages Allowed'),
501 'bool', // data type
502 '1', // default = true
503 xl('Allow all available languages as choices on menu at login.')
506 'language_menu_other' => array(
507 xl('Allowed Languages'),
508 'm_lang', // data type
509 '', // default = none
510 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
513 'allow_debug_language' => array(
514 xl('Allow Debugging Language'),
515 'bool', // data type
516 '1', // default = true during development and false for production releases
517 xl('This will allow selection of the debugging (\'dummy\') language.')
520 'translate_no_safe_apostrophe' => array(
521 xl('Do Not Use Safe Apostrophe'),
522 'bool', // data type
523 '0', // default = false
524 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)')
527 'translate_layout' => array(
528 xl('Translate Layouts'),
529 'bool', // data type
530 '1', // default = true
531 xl('Is text from form layouts to be translated?')
534 'translate_lists' => array(
535 xl('Translate Lists'),
536 'bool', // data type
537 '1', // default = true
538 xl('Is text from lists to be translated?')
541 'translate_gacl_groups' => array(
542 xl('Translate Access Control Groups'),
543 'bool', // data type
544 '1', // default = true
545 xl('Are access control group names to be translated?')
548 'translate_form_titles' => array(
549 xl('Translate Patient Note Titles'),
550 'bool', // data type
551 '1', // default = true
552 xl('Are patient note titles to be translated?')
555 'translate_document_categories' => array(
556 xl('Translate Document Categories'),
557 'bool', // data type
558 '1', // default = true
559 xl('Are document category names to be translated?')
562 'translate_appt_categories' => array(
563 xl('Translate Appointment Categories'),
564 'bool', // data type
565 '1', // default = true
566 xl('Are appointment category names to be translated?')
569 'units_of_measurement' => array(
570 xl('Units for Visit Forms'),
571 array(
572 '1' => xl('Show both US and metric (main unit is US)'),
573 '2' => xl('Show both US and metric (main unit is metric)'),
574 '3' => xl('Show US only'),
575 '4' => xl('Show metric only'),
577 '1', // default = Both/US
578 xl('Applies to the Vitals form and Growth Chart')
581 'us_weight_format' => array(
582 xl('Display Format for US Weights'),
583 array(
584 '1' => xl('Show pounds as decimal value'),
585 '2' => xl('Show pounds and ounces')
587 '1',
588 xl('Applies to Vitals form')
591 'phone_country_code' => array(
592 xl('Telephone Country Code'),
593 'num',
594 '1', // default = North America
595 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
598 'date_display_format' => array(
599 xl('Date Display Format'),
600 array(
601 '0' => xl('YYYY-MM-DD'),
602 '1' => xl('MM/DD/YYYY'),
603 '2' => xl('DD/MM/YYYY'),
605 '0',
606 xl('Format used to display most dates.')
609 'time_display_format' => array(
610 xl('Time Display Format'),
611 array(
612 '0' => xl('24 hr'),
613 '1' => xl('12 hr'),
615 '0',
616 xl('Format used to display most times.')
619 'gbl_time_zone' => array(
620 xl('Time Zone'),
621 gblTimeZones(),
623 xl('If unassigned will default to php.ini setting for date.timezone.')
626 'currency_decimals' => array(
627 xl('Currency Decimal Places'),
628 array(
629 '0' => xl('0'),
630 '1' => xl('1'),
631 '2' => xl('2'),
633 '2',
634 xl('Number of digits after decimal point for currency, usually 0 or 2.')
637 'currency_dec_point' => array(
638 xl('Currency Decimal Point Symbol'),
639 array(
640 '.' => xl('Period'),
641 ',' => xl('Comma'),
643 '.',
644 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
647 'currency_thousands_sep' => array(
648 xl('Currency Thousands Separator'),
649 array(
650 ',' => xl('Comma'),
651 '.' => xl('Period'),
652 ' ' => xl('Space'),
653 '' => xl('None'),
655 ',',
656 xl('Symbol used to separate thousands for currency.')
659 'gbl_currency_symbol' => array(
660 xl('Currency Designator'),
661 'text', // data type
662 '$', // default
663 xl('Code or symbol to indicate currency')
665 'age_display_format' => array(xl('Age Display Format'),
666 array(
667 '0' => xl('Years or months'),
668 '1' => xl('Years, months and days')
670 '0',
671 xl('Format for age display')
673 'age_display_limit' => array(
674 xl('Age in Years for Display Format Change'),
675 'num',
676 '3',
677 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
679 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
680 'weekend_days' => array(
681 xl('Your weekend days'),
682 array(
683 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
684 '0' => xl('Sunday'),
685 '5' => xl('Friday'),
686 '6' => xl('Saturday'),
687 '5,6' => xl('Friday') . ' - ' . xl('Saturday'),
689 '6,0'
690 , xl('which days are your weekend days?')
695 // Features Tab
697 'Features' => array(
699 'specific_application' => array(
700 xl('Specific Application'),
701 array(
702 '0' => xl('None'),
703 '2' => xl('IPPF'),
704 '3' => xl('Weight loss clinic'),
706 '0', // default
707 xl('Indicator for specialized usage')
710 'inhouse_pharmacy' => array(
711 xl('Drugs and Products'),
712 array(
713 '0' => xl('Do not inventory and sell any products'),
714 '1' => xl('Inventory and sell drugs only'),
715 '2' => xl('Inventory and sell both drugs and non-drug products'),
716 '3' => xl('Products but no prescription drugs and no templates'),
718 '0', // default
719 xl('Option to support inventory and sales of products')
722 'default_visit_category' => array(
723 xl('Default Visit Category'),
724 'default_visit_category',
725 '_blank',
726 xl('Define a default visit category'),
729 'disable_chart_tracker' => array(
730 xl('Disable Chart Tracker'),
731 'bool', // data type
732 '0', // default = false
733 xl('Removes the Chart Tracker feature')
736 'disable_immunizations' => array(
737 xl('Disable Immunizations'),
738 'bool', // data type
739 '0', // default = false
740 xl('Removes support for immunizations')
743 'disable_prescriptions' => array(
744 xl('Disable Prescriptions'),
745 'bool', // data type
746 '0', // default = false
747 xl('Removes support for prescriptions')
750 'omit_employers' => array(
751 xl('Omit Employers'),
752 'bool', // data type
753 '0', // default = false
754 xl('Omit employer information in patient demographics')
757 'select_multi_providers' => array(
758 xl('Support Multi-Provider Events'),
759 'bool', // data type
760 '0', // default = false
761 xl('Support calendar events that apply to multiple providers')
764 'disable_non_default_groups' => array(
765 xl('Disable User Groups'),
766 'bool', // data type
767 '1', // default = true
768 xl('Normally this should be checked. Not related to access control.')
771 'ignore_pnotes_authorization' => array(
772 xl('Skip Authorization of Patient Notes'),
773 'bool', // data type
774 '1', // default = true
775 xl('Do not require patient notes to be authorized')
778 'support_encounter_claims' => array(
779 xl('Allow Encounter Claims'),
780 'bool', // data type
781 '0', // default = false
782 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
785 'advance_directives_warning' => array(
786 xl('Advance Directives Warning'),
787 'bool', // data type
788 '0', // default = false
789 xl('Display advance directives in the demographics page.')
792 'configuration_import_export' => array(
793 xl('Configuration Export/Import'),
794 'bool', // data type
795 '0', // default = false
796 xl('Support export/import of configuration data via the Backup page.')
799 'restrict_user_facility' => array(
800 xl('Restrict Users to Facilities'),
801 'bool', // data type
802 '0', // default
803 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
806 'set_facility_cookie' => array(
807 xl('Remember Selected Facility'),
808 'bool', // data type
809 '0', // default
810 xl('Set a facility cookie to remember the selected facility between logins.')
813 'receipts_by_provider' => array(
814 xl('Print Receipts by Provider'),
815 'bool',
816 '0', // default
817 xl('Causes Receipts to Print Encounter/Primary Provider Info')
820 'discount_by_money' => array(
821 xl('Discounts as Monetary Amounts'),
822 'bool', // data type
823 '1', // default = true
824 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
827 'gbl_visit_referral_source' => array(
828 xl('Referral Source for Encounters'),
829 'bool', // data type
830 '0', // default = false
831 xl('A referral source may be specified for each visit.')
834 'gbl_mask_patient_id' => array(
835 xl('Mask for Patient IDs'),
836 'text', // data type
837 '', // default
838 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
841 'gbl_mask_invoice_number' => array(
842 xl('Mask for Invoice Numbers'),
843 'text', // data type
844 '', // default
845 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
848 'gbl_mask_product_id' => array(
849 xl('Mask for Product IDs'),
850 'text', // data type
851 '', // default
852 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
855 'hide_billing_widget' => array(
856 xl('Hide Billing Widget'),
857 'bool', // data type
858 '0', // default = false
859 xl('This will hide the Billing Widget in the Patient Summary screen')
862 'force_billing_widget_open' => array(
863 xl('Force Billing Widget Open'),
864 'bool', // data type
865 '0', // default = false
866 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
869 'activate_ccr_ccd_report' => array(
870 xl('Activate CCR/CCD Reporting'),
871 'bool', // data type
872 '1', // default = true
873 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
876 'hide_document_encryption' => array(
877 xl('Hide Encryption/Decryption Options In Document Management'),
878 'bool', // data type
879 '1', // default = true
880 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
883 'use_custom_immun_list' => array(
884 xl('Use Custom Immunization List'),
885 'bool', // data type
886 '0', // default = true
887 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
890 'amendments' => array(
891 xl('Amendments'),
892 'bool', // data type
893 '1', // default = true
894 xl('Enable amendments feature')
897 'allow_pat_delete' => array(
898 xl('Allow Administrators to Delete Patients'),
899 'bool', // data type
900 '0', // default = false
901 xl('Allow Administrators to Delete Patients')
905 'observation_results_immunization' => array(
906 xl('Immunization Observation Results'),
907 'bool', // data type
908 '1', // default
909 xl('Observation Results in Immunization')
913 // Report Tab
915 'Report' => array(
917 'use_custom_daysheet' => array(
918 xl('Use Custom End of Day Report'),
919 array(
920 '0' => xl('None'),
921 '1' => xl('Print End of Day Report 1'),
922 '2' => xl('Print End of Day Report 2'),
923 '3' => xl('Print End of Day Report 3'),
924 ), // data type
925 '1', // default = Print End of Day Report 1
926 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
929 'daysheet_provider_totals' => array(
930 xl('End of Day by Provider or allow Totals Only'),
931 array(
932 '0' => xl('Provider'),
933 '1' => xl('Totals Only'),
935 '1', // default
936 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
939 'ledger_begin_date' => array(
940 xl('Beginning Date for Ledger Report'),
941 array(
942 'Y1' => xl('One Year Ago'),
943 'Y2' => xl('Two Years Ago'),
944 'M6' => xl('Six Months Ago'),
945 'M3' => xl('Three Months Ago'),
946 'M1' => xl('One Month Ago'),
947 'D1' => xl('One Day Ago'),
949 'Y1', // default = One Year
950 xl('This is the Beginning date for the Ledger Report.')
953 'print_next_appointment_on_ledger' => array(
954 xl('Print the Next Appointment on the Bottom of the Ledger'),
955 'bool', // data type
956 '1', // default = true
957 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
960 'sales_report_invoice' => array(
961 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
962 array(
963 '0' => xl('Invoice Number'),
964 '1' => xl('Patient Name and ID'),
965 '2' => xl('Patient Name and Invoice'),
967 '2', // default = 2
968 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
971 'cash_receipts_report_invoice' => array(
972 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
973 array(
974 '0' => xl('Invoice Number'),
975 '1' => xl('Patient Name'),
977 '0', // default = 0
978 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
983 // Billing Tab
985 'Billing' => array(
987 'ub04_support' => array(
988 xl('Activate UB04/837I Claim Support'),
989 'bool', // data type
990 '0', // default = false
991 xl('Allow institutional claims support.')
994 'top_ubmargin_default' => array(
995 xl('Default top print margin for UB04'),
996 'num', // data type
997 '14', // default
998 xl('This is the default top print margin for UB04. It will adjust the final printed output up or down.')
1001 'left_ubmargin_default' => array(
1002 xl('Default left print margin for UB04'),
1003 'num', // data type
1004 '11', // default
1005 xl('This is the default left print margin for UB04. It will adjust the final printed output left or right.')
1008 'cms_top_margin_default' => array(
1009 xl('Default top print margin for CMS 1500'),
1010 'num', // data type
1011 '24', // default
1012 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
1015 'cms_left_margin_default' => array(
1016 xl('Default left print margin for CMS 1500'),
1017 'num', // data type
1018 '20', // default
1019 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
1022 'preprinted_cms_1500' => array(
1023 xl('Prints the CMS 1500 on the Preprinted form'),
1024 'bool', // data type
1025 '0', // default = false
1026 xl('Overlay CMS 1500 on the Preprinted form')
1029 'cms_1500' => array(
1030 xl('CMS 1500 Paper Form Format'),
1031 array(
1032 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
1033 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
1035 '1', // default
1036 xl('This specifies which revision of the form the billing module should generate')
1039 'cms_1500_box_31_format' => array(
1040 xl('CMS 1500: Box 31 Format'),
1041 array(
1042 '0' => xl('Signature on File'),
1043 '1' => xl('Firstname Lastname'),
1044 '2' => xl('None'),
1046 '0', // default
1047 xl('This specifies whether to include date in Box 31.')
1050 'cms_1500_box_31_date' => array(
1051 xl('CMS 1500: Date in Box 31 (Signature)'),
1052 array(
1053 '0' => xl('None'),
1054 '1' => xl('Date of Service'),
1055 '2' => xl('Today'),
1057 '0', // default
1058 xl('This specifies whether to include date in Box 31.')
1061 'default_search_code_type' => array(
1062 xl('Default Search Code Type'),
1063 'all_code_types', // data type
1064 'ICD10', // default
1065 xl('The default code type to search for in the Fee Sheet.')
1068 'default_rendering_provider' => array(
1069 xl('Default Rendering Provider in Fee Sheet'),
1070 array(
1071 '0' => xl('Please Select'),
1072 '1' => xl('Current Provider'),
1073 '2' => xl('Current Logged in User'),
1075 '1',
1076 xl('Default selection for rendering provider in fee sheet.')
1079 'show_payment_history' => array(
1080 xl('Show all payment history in Patient Ledger'),
1081 'bool', // data type
1082 '1', // default = true
1083 xl('Turn on to show all payment history in Patient Ledger')
1086 'support_fee_sheet_line_item_provider' => array(
1087 xl('Support provider in line item in fee sheet'),
1088 'bool', // data type
1089 '0', // default = false
1090 xl('This Enables provider in line item in the fee sheet')
1093 'default_fee_sheet_line_item_provider' => array(
1094 xl('Default to a provider for line item in the fee sheet'),
1095 'bool', // data type
1096 '0', // default = false
1097 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1100 'replicate_justification' => array(
1101 xl('Automatically replicate justification codes in Fee Sheet'),
1102 'bool', // data type
1103 '0', // default = false
1104 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1107 'display_units_in_billing' => array(
1108 xl('Display the Units Column on the Billing Screen'),
1109 'bool', // data type
1110 '0', // default = false
1111 xl('Display the Units Column on the Billing Screen')
1114 'notes_to_display_in_Billing' => array(
1115 xl('Which notes are to be displayed in the Billing Screen'),
1116 array(
1117 '0' => xl('None'),
1118 '1' => xl('Encounter Billing Note'),
1119 '2' => xl('Patient Billing Note'),
1120 '3' => xl('All'),
1122 '3',
1123 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1126 'set_pos_code_encounter' => array(
1127 xl('Set POS code in encounter'),
1128 'bool', // data type
1129 '0', // default = false
1130 xl('This feature will allow the default POS facility code to be overriden from the encounter.')
1133 'use_custom_statement' => array(
1134 xl('Use Custom Statement'),
1135 'bool', // data type
1136 '0', // default = false
1137 xl('This will use the custom Statment showing the description instead of the codes.')
1140 'statement_appearance' => array(
1141 xl('Statement Appearance'),
1142 array(
1143 '0' => xl('Plain Text'),
1144 '1' => xl('Modern/images')
1145 ), // data type
1146 '1', // default = true
1147 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1150 'billing_phone_number' => array(
1151 xl('Custom Billing Phone Number'),
1152 'text', // data type
1154 xl('Phone number for billing inquiries')
1157 'show_aging_on_custom_statement' => array(
1158 xl('Show Aging on Custom Statement'),
1159 'bool', // data type
1160 '0', // default = false
1161 xl('This will Show Aging on the custom Statement.')
1164 'use_statement_print_exclusion' => array(
1165 xl('Allow Statement Exclusions from Printing'),
1166 'bool', // data type
1167 '0', // default = false
1168 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1171 'minimum_amount_to_print' => array(
1172 xl('Total Minimum Amount of Statement to Allow Printing'),
1173 'num', // data type
1174 '1.00',
1175 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1178 'statement_bill_note_print' => array(
1179 xl('Print Patient Billing Note'),
1180 'bool', // data type
1181 '0', // default = false
1182 xl('This will allow printing of the Patient Billing Note on the statements.')
1185 'number_appointments_on_statement' => array(
1186 xl('Number of Appointments on Statement'),
1187 'num', // data type
1188 '0', // default = 0
1189 xl('The Number of Future Appointments to Display on the Statement.')
1192 'statement_message_to_patient' => array(
1193 xl('Print Custom Message'),
1194 'bool', // data type
1195 '0', // default = false
1196 xl('This will allow printing of a custom Message on the statements.')
1199 'statement_msg_text' => array(
1200 xl('Custom Statement message'),
1201 'text', // data type
1203 xl('Text for Custom statement message.')
1206 'use_dunning_message' => array(
1207 xl('Use Custom Dunning Messages'),
1208 'bool', // data type
1209 '0', // default = false
1210 xl('This will allow use of the custom Dunning Messages on the statements.')
1213 'first_dun_msg_set' => array(
1214 xl('Number of days before showing first account message'),
1215 'num', // data type
1216 '30',
1217 xl('Number of days before showing first account message.')
1220 'first_dun_msg_text' => array(
1221 xl('First account message'),
1222 'text', // data type
1224 xl('Text for first account message.')
1227 'second_dun_msg_set' => array(
1228 xl('Number of days before showing second account message'),
1229 'num', // data type
1230 '60',
1231 xl('Number of days before showing second account message')
1234 'second_dun_msg_text' => array(
1235 xl('Second account message'),
1236 'text', // data type
1238 xl('Text for second account message.')
1241 'third_dun_msg_set' => array(
1242 xl('Number of days before showing third account message'),
1243 'num', // data type
1244 '90',
1245 xl('Number of days before showing third account message')
1248 'third_dun_msg_text' => array(
1249 xl('Third account message'),
1250 'text', // data type
1252 xl('Text for third account message.')
1255 'fourth_dun_msg_set' => array(
1256 xl('Number of days before showing fourth account message'),
1257 'num', // data type
1258 '120',
1259 xl('Number of days before showing fourth account message')
1262 'fourth_dun_msg_text' => array(
1263 xl('Fourth account message'),
1264 'text', // data type
1266 xl('Text for fourth account message.')
1269 'fifth_dun_msg_set' => array(
1270 xl('Number of days before showing fifth account message'),
1271 'num', // data type
1272 '150',
1273 xl('Number of days before showing fifth account message')
1276 'fifth_dun_msg_text' => array(
1277 xl('Fifth account message'),
1278 'text', // data type
1280 xl('Text for fifth account message.')
1282 'save_codes_history' => array(
1283 xl('Save codes history'),
1284 'bool', // data type
1285 '1', // default
1286 xl('Save codes history')
1290 // E-Sign Tab
1292 'E-Sign' => array(
1294 'esign_all' => array(
1295 xl('Allows E-Sign on the entire encounter'),
1296 'bool', // data type
1297 '0', // default = false
1298 xl('This will enable signing an entire encounter, rather than individual forms')
1301 'lock_esign_all' => array(
1302 xl('Lock e-signed encounters and their forms'),
1303 'bool', // data type
1304 '0', // default = false
1305 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1308 'esign_individual' => array(
1309 xl('Allows E-Signing Individual Forms'),
1310 'bool', // data type
1311 '1', // default = false
1312 xl('This will enable signing individual forms separately')
1315 'lock_esign_individual' => array(
1316 xl('Lock an e-signed form individually'),
1317 'bool', // data type
1318 '1', // default = false
1319 xl('This will disable the Edit button on any form that is e-signed')
1322 'esign_lock_toggle' => array(
1323 xl('Enable lock toggle'),
1324 'bool', // data type
1325 '0', // default = false
1326 xl('This will give the user the option to lock (separate locking and signing)')
1329 'esign_report_hide_empty_sig' => array(
1330 xl('Hide Empty E-Sign Logs On Report'),
1331 'bool', // data type
1332 '1', // default = false
1333 xl('This will hide empty e-sign logs on the patient report')
1337 //Documents Tab
1338 'Documents' => array(
1340 'document_storage_method' => array(
1341 xl('Document Storage Method'),
1342 array(
1343 '0' => xl('Hard Disk'),
1344 '1' => xl('CouchDB')
1346 '0', // default
1347 xl('Option to save method of document storage.')
1350 'couchdb_host' => array(
1351 xl('CouchDB HostName'),
1352 'text',
1353 'localhost',
1354 xl('CouchDB host'),
1356 'couchdb_user' => array(
1357 xl('CouchDB UserName'),
1358 'text',
1360 xl('Username to connect to CouchDB'),
1362 'couchdb_pass' => array(
1363 xl('CouchDB Password'),
1364 'text',
1366 xl('Password to connect to CouchDB'),
1368 'couchdb_port' => array(
1369 xl('CouchDB Port'),
1370 'text',
1371 '5984',
1372 xl('CouchDB port'),
1374 'couchdb_dbase' => array(
1375 xl('CouchDB Database'),
1376 'text',
1378 xl('CouchDB database name'),
1380 'couchdb_log' => array(
1381 xl('CouchDB Log Enable'),
1382 'bool',
1383 '0',
1384 xl('Enable log for document uploads/downloads to CouchDB'),
1387 'expand_document_tree' => array(
1388 xl('Expand All Document Categories'),
1389 'bool', // data type
1390 '0', // default = false
1391 xl('Expand All Document Categories by Default')
1394 'patient_id_category_name' => array(
1395 xl('Patient ID Category Name'),
1396 'text', // data type
1397 'Patient ID card', // default
1398 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1401 'patient_photo_category_name' => array(
1402 xl('Patient Photo Category Name'),
1403 'text', // data type
1404 'Patient Photograph', // default
1405 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1408 'lab_results_category_name' => array(
1409 xl('Lab Results Category Name'),
1410 'text', // data type
1411 'Lab Report', // default
1412 xl('Document category name for storage of electronically received lab results.')
1415 'gbl_mdm_category_name' => array(
1416 xl('MDM Document Category Name'),
1417 'text', // data type
1418 'Lab Report', // default
1419 xl('Document category name for storage of electronically received MDM documents.')
1421 'generate_doc_thumb' => array(
1422 xl('Generate thumbnail'),
1423 'bool',
1424 '0',
1425 xl('Generate thumbnail images'),
1427 'thumb_doc_max_size' => array(
1428 xl('Thumbnail size'),
1429 'text', // data type
1430 '100', // default
1431 xl('Maximum size of thumbnail file')
1435 // Calendar Tab
1437 'Calendar' => array(
1439 'disable_calendar' => array(
1440 xl('Disable Calendar'),
1441 'bool', // data type
1442 '0', // default
1443 xl('Do not display the calendar.')
1446 'schedule_start' => array(
1447 xl('Calendar Starting Hour'),
1448 'hour',
1449 '8', // default
1450 xl('Beginning hour of day for calendar events.')
1453 'schedule_end' => array(
1454 xl('Calendar Ending Hour'),
1455 'hour',
1456 '17', // default
1457 xl('Ending hour of day for calendar events.')
1460 'calendar_interval' => array(
1461 xl('Calendar Interval'),
1462 array(
1463 '5' => '5',
1464 '10' => '10',
1465 '15' => '15',
1466 '20' => '20',
1467 '30' => '30',
1468 '60' => '60',
1470 '15', // default
1471 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1474 'calendar_view_type' => array(
1475 xl('Default Calendar View'),
1476 array(
1477 'day' => xl('Day'),
1478 'week' => xl('Week'),
1479 'month' => xl('Month'),
1481 'day', // default
1482 xl('This sets the Default Calendar View, Default is Day.')
1484 'first_day_week' => array(
1485 xl('First day in the week'),
1486 array(
1487 '1' => xl('Monday'),
1488 '0' => xl('Sunday'),
1489 '6' => xl('Saturday')
1491 '1',
1492 xl('Your first day of the week.')
1494 'calendar_appt_style' => array(
1495 xl('Appointment Display Style'),
1496 array(
1497 '1' => xl('Last name'),
1498 '2' => xl('Last name, first name'),
1499 '3' => xl('Last name, first name (title)'),
1500 '4' => xl('Last name, first name (title: comments)'),
1502 '2', // default
1503 xl('This determines how appointments display on the calendar.')
1506 'event_color' => array(
1507 xl('Appointment/Event Color'),
1508 array(
1509 '1' => xl('Category Color Schema'),
1510 '2' => xl('Facility Color Schema'),
1511 ), // data type
1512 '1', // default
1513 xl('This determines which color schema used for appointment')
1516 'number_of_appts_to_show' => array(
1517 xl('Appointments - Patient Summary - Number to Display'),
1518 'num',
1519 '10',
1520 xl('Number of Appointments to display in the Patient Summary')
1523 'number_of_group_appts_to_show' => array(
1524 xl('Appointments - Group Summary - Number to Display'),
1525 'num',
1526 '10',
1527 xl('Number of Appointments to display in the Group Summary')
1529 'number_of_ex_appts_to_show' => array(
1530 xl('Excluded Appointments - Tooltip - Number to Display'),
1531 'num',
1532 '15',
1533 xl('Number of Excluded Appointments to display in the Tooltip')
1537 'patient_portal_appt_display_num' => array(
1538 xl('Appointments - Onsite Patient Portal - Number to Display'),
1539 'num',
1540 '20',
1541 xl('Number of Appointments to display in the Onsite Patient Portal')
1544 'appt_display_sets_option' => array(
1545 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1546 'bool', // data type
1547 '1', // default
1548 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1551 'appt_display_sets_color_1' => array(
1552 xl('Appointment Display Sets - Color 1'),
1553 'color_code',
1554 '#FFFFFF',
1555 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).')
1558 'appt_display_sets_color_2' => array(
1559 xl('Appointment Display Sets - Color 2'),
1560 'color_code',
1561 '#E6E6FF',
1562 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).')
1565 'appt_display_sets_color_3' => array(
1566 xl('Appointment Display Sets - Color 3'),
1567 'color_code',
1568 '#E6FFE6',
1569 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1572 'appt_display_sets_color_4' => array(
1573 xl('Appointment Display Sets - Color 4'),
1574 'color_code',
1575 '#FFE6FF',
1576 xl('Color for the last set when not all member appointments are displayed.')
1579 'appt_recurrences_widget' => array(
1580 xl('Recurrent Appointment Display Widget'),
1581 'bool', // data type
1582 '1', // default
1583 xl('Display the recurrent appointment widget in the patient summary.')
1586 'num_past_appointments_to_show' => array(
1587 xl('Past Appointment Display Widget'),
1588 'num', // data type
1589 '0', // default = false
1590 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)')
1593 'docs_see_entire_calendar' => array(
1594 xl('Providers See Entire Calendar'),
1595 'bool', // data type
1596 '0', // default
1597 xl('Check this if you want providers to see all appointments by default and not just their own.')
1600 'auto_create_new_encounters' => array(
1601 xl('Auto-Create New Encounters'),
1602 'bool', // data type
1603 '1', // default
1604 xl('Automatically create a new encounter when an appointment check in status is selected.')
1607 'allow_early_check_in' => array(
1608 xl('Allow Early Check In'),
1609 'bool', // data type
1610 '1', // default
1611 xl("Allow Check In before the appointment's time.")
1614 'submit_changes_for_all_appts_at_once' => array(
1615 xl('Submit Changes For All Appts At Once'),
1616 'bool', // data type
1617 '1', // default
1618 xl('Enables to submit changes for all appointments of a recurrence at once.')
1621 'disable_pat_trkr' => array(
1622 xl('Flow Board: Disable'),
1623 'bool', // data type
1624 '0', // default
1625 xl('Completely remove the ability to display the Patient Flow Board.')
1628 'ptkr_visit_reason' => array(
1629 xl('Flow Board: Show Visit Reason'),
1630 'bool', // data type
1631 '0', // default = false
1632 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1635 'ptkr_show_pid' => array(
1636 xl('Flow Board: Show Patient ID'),
1637 'bool', // data type
1638 '1', // default = true
1639 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1642 'ptkr_show_encounter' => array(
1643 xl('Flow Board: Show Encounter Number'),
1644 'bool', // data type
1645 '1', // default = true
1646 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1649 'ptkr_show_staff' => array(
1650 xl('Flow Board: Show Staff Action'),
1651 'bool', // data type
1652 '1', // default = true
1653 xl('When Checked, Last Staff to Update Board Will Show in Patient Flow Board.')
1656 'ptkr_date_range' => array(
1657 xl('Flow Board: Allow Date Range'),
1658 'bool', // data type
1659 '1', // default = true
1660 xl('This Allows a Date Range to be Selected in Patient Flow Board.')
1663 'ptkr_end_date' => array(
1664 xl('Flow Board: Ending Date'),
1665 array(
1666 'Y1' => xl('One Year Ahead'),
1667 'Y2' => xl('Two Years Ahead'),
1668 'M6' => xl('Six Months Ahead'),
1669 'M3' => xl('Three Months Ahead'),
1670 'M1' => xl('One Month Ahead'),
1671 'D1' => xl('One Day Ahead'),
1672 'D0' => xl('Same Day'),
1674 'D0', // default = One Day Ahead
1675 xl('This is the Ending date for the Patient Flow Board Date Range. (only applicable if Allow Date Range in option above is Enabled)')
1678 'pat_trkr_timer' => array(
1679 xl('Flow Board: Timer Refresh Interval'),
1680 array(
1681 '0' => xl('No automatic refresh'),
1682 '0:10' => '10',
1683 '0:20' => '20',
1684 '0:30' => '30',
1685 '0:40' => '40',
1686 '0:50' => '50',
1687 '0:59' => '60',
1689 '0:20', // default
1690 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1693 'checkout_roll_off' => array(
1694 xl('Flow Board: display completed checkouts (minutes)'),
1695 'num',
1696 '0', // default
1697 xl('Flow Board will only display completed checkouts for this many minutes. Zero is continuous display.')
1700 'drug_screen' => array(
1701 xl('Flow Board: Enable Random Drug Testing'),
1702 'bool', // data type
1703 '0', // default
1704 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1707 'drug_testing_percentage' => array(
1708 xl('Flow Board: Percentage of Patients to Drug Test'),
1709 'num',
1710 '33', // default
1711 xl('Percentage of Patients to select for Random Drug Testing.')
1714 'maximum_drug_test_yearly' => array(
1715 xl('Flow Board: Max tests per Patient per year'),
1716 'num',
1717 '0', // default
1718 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1721 'disable_rcb' => array(
1722 xl('Recall Board: Disable'),
1723 'bool', // data type
1724 '0', // default
1725 xl('Do not display the Recall Board.')
1733 // Security Tab
1735 'Security' => array(
1736 'sql_string_no_show_screen' => array(
1737 xl('Mode - Do Not Show SQL Queries'),
1738 'bool', // data type
1739 '0', // default
1740 xl('Do not allow SQL queries to be outputted to screen.')
1742 'timeout' => array(
1743 xl('Idle Session Timeout Seconds'),
1744 'num', // data type
1745 '7200', // default
1746 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1748 'secure_upload' => array(
1749 xl('Secure Upload Files with White List'),
1750 'bool', // data type
1751 '0', // default
1752 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1754 'secure_password' => array(
1755 xl('Require Strong Passwords'),
1756 'bool', // data type
1757 '0', // default
1758 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1760 'password_history' => array(
1761 xl('Require Unique Passwords'),
1762 'bool', // data type
1763 '0', // default
1764 xl('Means none of last three passwords are allowed when changing a password.')
1766 'password_compatibility' => array(
1767 xl('Permit unsalted passwords'),
1768 'bool', // data type
1769 '1', // default
1770 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')
1773 'password_expiration_days' => array(
1774 xl('Default Password Expiration Days'),
1775 'num', // data type
1776 '0', // default
1777 xl('Default password expiration period in days. 0 means this feature is disabled.')
1780 'password_grace_time' => array(
1781 xl('Password Expiration Grace Period'),
1782 'num', // data type
1783 '0', // default
1784 xl('Period in days where a user may login with an expired password.')
1787 'is_client_ssl_enabled' => array(
1788 xl('Enable Client SSL'),
1789 'bool', // data type
1790 '0', // default
1791 xl('Enable client SSL certificate authentication.')
1794 'certificate_authority_crt' => array(
1795 xl('Path to CA Certificate File'),
1796 'text', // data type
1797 '', // default
1798 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1801 'certificate_authority_key' => array(
1802 xl('Path to CA Key File'),
1803 'text', // data type
1804 '', // default
1805 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1808 'client_certificate_valid_in_days' => array(
1809 xl('Client Certificate Expiration Days'),
1810 'num', // data type
1811 '365', // default
1812 xl('Number of days that the client certificate is valid.')
1815 'Emergency_Login_email_id' => array(
1816 xl('Emergency Login Email Address'),
1817 'text', // data type
1818 '', // default
1819 xl('Email address, if any, to receive emergency login user activation messages.')
1822 'new_validate' => array(
1823 xl('New form validation'),
1824 'bool',
1825 '1',
1826 xl('New form validation')
1829 'allow_multiple_databases' => array(
1830 xl('Allow multiple databases'),
1831 'bool',
1832 '0',
1833 xl('Allow to use with multiple database')
1836 'safe_key_database' => array(
1837 xl('Safe key database'),
1838 'text', // data type
1839 '', // default
1840 xl('Key for multiple database credentials encryption')
1843 'use_active_directory' => array(
1844 xl('Use Active Directory'),
1845 'bool',
1846 '0',
1847 xl('If enabled, uses the specified active directory for login and authentication.')
1850 'account_suffix' => array(
1851 xl('Active Directory - Suffix Of Account'),
1852 'text',
1854 xl('The suffix of the account.')
1857 'base_dn' => array(
1858 xl('Active Directory - Domains Base'),
1859 'text',
1861 xl('Users is the standard windows CN, replace the DC stuff with your domain.')
1864 'domain_controllers' => array(
1865 xl('Active Directory - Domains Controllers'),
1866 'text',
1868 xl('The IP address of your domain controller(s).')
1873 // Notifications Tab
1875 'Notifications' => array(
1877 'patient_reminder_sender_name' => array(
1878 xl('Patient Reminder Sender Name'),
1879 'text', // data type
1880 '', // default
1881 xl('Name of the sender for patient reminders.')
1884 'patient_reminder_sender_email' => array(
1885 xl('Patient Reminder Sender Email'),
1886 'text', // data type
1887 '', // default
1888 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.')
1891 'practice_return_email_path' => array(
1892 xl('Notification Email Address'),
1893 'text', // data type
1894 '', // default
1895 xl('Email address, if any, to receive administrative notifications.')
1898 'EMAIL_METHOD' => array(
1899 xl('Email Transport Method'),
1900 array(
1901 'PHPMAIL' => 'PHPMAIL',
1902 'SENDMAIL' => 'SENDMAIL',
1903 'SMTP' => 'SMTP',
1905 'SMTP', // default
1906 xl('Method for sending outgoing email.')
1909 'SMTP_HOST' => array(
1910 xl('SMTP Server Hostname'),
1911 'text', // data type
1912 'localhost', // default
1913 xl('If SMTP is used, the server`s hostname or IP address.')
1916 'SMTP_PORT' => array(
1917 xl('SMTP Server Port Number'),
1918 'num', // data type
1919 '25', // default
1920 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1923 'SMTP_USER' => array(
1924 xl('SMTP User for Authentication'),
1925 'text', // data type
1926 '', // default
1927 xl('Must be empty if SMTP authentication is not used.')
1930 'SMTP_PASS' => array(
1931 xl('SMTP Password for Authentication'),
1932 'text', // data type
1933 '', // default
1934 xl('Must be empty if SMTP authentication is not used.')
1937 'SMTP_SECURE' => array(
1938 xl('SMTP Security Protocol'),
1939 array(
1940 '' => xl('None'),
1941 'ssl' => 'SSL',
1942 'tls' => 'TLS'
1945 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1948 'EMAIL_NOTIFICATION_HOUR' => array(
1949 xl('Email Notification Hours'),
1950 'num', // data type
1951 '50', // default
1952 xl('Number of hours in advance to send email notifications.')
1955 'SMS_NOTIFICATION_HOUR' => array(
1956 xl('SMS Notification Hours'),
1957 'num', // data type
1958 '50', // default
1959 xl('Number of hours in advance to send SMS notifications.')
1962 'SMS_GATEWAY_USENAME' => array(
1963 xl('SMS Gateway Username'),
1964 'text', // data type
1965 '', // default
1966 xl('Username for SMS Gateway.')
1969 'SMS_GATEWAY_PASSWORD' => array(
1970 xl('SMS Gateway Password'),
1971 'text', // data type
1972 '', // default
1973 xl('Password for SMS Gateway.')
1976 'SMS_GATEWAY_APIKEY' => array(
1977 xl('SMS Gateway API Key'),
1978 'text', // data type
1979 '', // default
1980 xl('API key for SMS Gateway.')
1983 'phone_notification_hour' => array(
1984 xl('Phone Notification Hour'),
1985 'num', // data type
1986 '50', // default
1987 xl('Number of hours in advance to send Phone notification.')
1990 'phone_gateway_username' => array(
1991 xl('Phone Gateway Username'),
1992 'text', // data type
1993 '', // default
1994 xl('Username for Phone Gateway.')
1997 'phone_gateway_password' => array(
1998 xl('Phone Gateway Password'),
1999 'text', // data type
2000 '', // default
2001 xl('Password for Phone Gateway.')
2004 'phone_gateway_url' => array(
2005 xl('Phone Gateway URL'),
2006 'text', // data type
2007 '', // default
2008 xl('URL for Phone Gateway.')
2013 // CDR (Clinical Decision Rules)
2015 'CDR' => array(
2017 'enable_cdr' => array(
2018 xl('Enable Clinical Decisions Rules (CDR)'),
2019 'bool', // data type
2020 '1', // default
2021 xl('Enable Clinical Decisions Rules (CDR)')
2024 'enable_allergy_check' => array(
2025 xl('Enable Allergy Check'),
2026 'bool', // data type
2027 '1', // default
2028 xl('Enable Allergy Check Against Medications and Prescriptions')
2031 'enable_alert_log' => array(
2032 xl('Enable Alert Log'),
2033 'bool', // data type
2034 '1', // default
2035 xl('Enable Alert Logging')
2038 'enable_cdr_new_crp' => array(
2039 xl('Enable Clinical Passive New Reminder(s) Popup'),
2040 'bool', // data type
2041 '1', // default
2042 xl('Enable Clinical Passive New Reminder(s) Popup')
2045 'enable_cdr_crw' => array(
2046 xl('Enable Clinical Passive Reminder Widget'),
2047 'bool', // data type
2048 '1', // default
2049 xl('Enable Clinical Passive Reminder Widget')
2052 'enable_cdr_crp' => array(
2053 xl('Enable Clinical Active Reminder Popup'),
2054 'bool', // data type
2055 '1', // default
2056 xl('Enable Clinical Active Reminder Popup')
2059 'enable_cdr_prw' => array(
2060 xl('Enable Patient Reminder Widget'),
2061 'bool', // data type
2062 '1', // default
2063 xl('Enable Patient Reminder Widget')
2066 'enable_cqm' => array(
2067 xl('Enable CQM Reporting'),
2068 'bool', // data type
2069 '1', // default
2070 xl('Enable Clinical Quality Measure (CQM) Reporting')
2073 'pqri_registry_name' => array(
2074 xl('PQRI Registry Name'),
2075 'text', // data type
2076 'Model Registry', // default
2077 xl('PQRI Registry Name')
2080 'pqri_registry_id' => array(
2081 xl('PQRI Registry ID'),
2082 'text', // data type
2083 '125789123', // default
2084 xl('PQRI Registry ID')
2087 'enable_amc' => array(
2088 xl('Enable AMC Reporting'),
2089 'bool', // data type
2090 '1', // default
2091 xl('Enable Automated Measure Calculations (AMC) Reporting')
2094 'enable_amc_prompting' => array(
2095 xl('Enable AMC Prompting'),
2096 'bool', // data type
2097 '1', // default
2098 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
2101 'enable_amc_tracking' => array(
2102 xl('Enable AMC Tracking'),
2103 'bool', // data type
2104 '1', // default
2105 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
2108 'cdr_report_nice' => array(
2109 xl('CDR Reports Processing Priority'),
2110 array(
2111 '' => xl('Default Priority'),
2112 '5' => xl('Moderate Priority'),
2113 '10' => xl('Moderate/Low Priority'),
2114 '15' => xl('Low Priority'),
2115 '20' => xl('Lowest Priority')
2117 '', // default
2118 xl('Set processing priority for CDR engine based reports.')
2121 'pat_rem_clin_nice' => array(
2122 xl('Patient Reminder Creation Processing Priority'),
2123 array(
2124 '' => xl('Default Priority'),
2125 '5' => xl('Moderate Priority'),
2126 '10' => xl('Moderate/Low Priority'),
2127 '15' => xl('Low Priority'),
2128 '20' => xl('Lowest Priority')
2130 '', // default
2131 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2134 'report_itemizing_standard' => array(
2135 xl('Enable Standard Report Itemization'),
2136 'bool', // data type
2137 '1', // default
2138 xl('Enable Itemization of Standard Clinical Rules Reports')
2141 'report_itemizing_cqm' => array(
2142 xl('Enable CQM Report Itemization'),
2143 'bool', // data type
2144 '1', // default
2145 xl('Enable Itemization of CQM Reports')
2148 'report_itemizing_amc' => array(
2149 xl('Enable AMC Report Itemization'),
2150 'bool', // data type
2151 '1', // default
2152 xl('Enable Itemization of AMC Reports')
2154 'dated_reminders_max_alerts_to_show' => array(
2155 xl('Dated reminders maximum alerts to show'),
2156 'num', // data type
2157 '5', // default
2158 xl('Dated reminders maximum alerts to show')
2160 'patient_birthday_alert' => array(
2161 xl('Alert on patient birthday'),
2162 array(
2163 '0' => xl('No alert'),
2164 '1' => xl('Alert only on birthday'),
2165 '2' => xl('Alert on and after birthday')
2167 '1', // default
2168 xl('Alert on patient birthday')
2170 'patient_birthday_alert_manual_off' => array(
2171 xl('Patient birthday alert requires turning off'),
2172 'bool', // data type
2173 '0', // default
2174 xl('Patient birthday alert requires turning off')
2178 // Logging
2180 'Logging' => array(
2182 'enable_auditlog' => array(
2183 xl('Enable Audit Logging'),
2184 'bool', // data type
2185 '1', // default
2186 xl('Enable Audit Logging')
2189 'audit_events_patient-record' => array(
2190 xl('Audit Logging Patient Record'),
2191 'bool', // data type
2192 '1', // default
2193 xl('Enable logging of patient record modifications.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2196 'audit_events_scheduling' => array(
2197 xl('Audit Logging Scheduling'),
2198 'bool', // data type
2199 '1', // default
2200 xl('Enable logging of scheduling activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2203 'audit_events_order' => array(
2204 xl('Audit Logging Order'),
2205 'bool', // data type
2206 '1', // default
2207 xl('Enable logging of ordering activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2210 'audit_events_security-administration' => array(
2211 xl('Audit Logging Security Administration'),
2212 'bool', // data type
2213 '1', // default
2214 xl('Enable logging of security and administration activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2217 'audit_events_backup' => array(
2218 xl('Audit Logging Backups'),
2219 'bool', // data type
2220 '1', // default
2221 xl('Enable logging of backup related activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2224 'audit_events_other' => array(
2225 xl('Audit Logging Miscellaneous'),
2226 'bool', // data type
2227 '1', // default
2228 xl('Enable logging of miscellaneous activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2231 'audit_events_query' => array(
2232 xl('Audit Logging SELECT Query'),
2233 'bool', // data type
2234 '0', // default
2235 xl('Enable logging of all SQL SELECT queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2238 'audit_events_cdr' => array(
2239 xl('Audit CDR Engine Queries'),
2240 'bool', // data type
2241 '0', // default
2242 xl('Enable logging of CDR Engine Queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2245 'enable_atna_audit' => array(
2246 xl('Enable ATNA Auditing'),
2247 'bool', // data type
2248 '0', // default
2249 xl('Enable Audit Trail and Node Authentication (ATNA).')
2252 'atna_audit_host' => array(
2253 xl('ATNA audit host'),
2254 'text', // data type
2255 '', // default
2256 xl('The hostname of the ATNA audit repository machine.')
2259 'atna_audit_port' => array(
2260 xl('ATNA audit port'),
2261 'text', // data type
2262 '6514', // default
2263 xl('Listening port of the RFC 5425 TLS syslog server.')
2266 'atna_audit_localcert' => array(
2267 xl('ATNA audit local certificate'),
2268 'text', // data type
2269 '', // default
2270 xl('Certificate to send to RFC 5425 TLS syslog server.')
2273 'atna_audit_cacert' => array(
2274 xl('ATNA audit CA certificate'),
2275 'text', // data type
2276 '', // default
2277 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2280 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
2281 'enable_auditlog_encryption' => array(
2282 xl('Enable Audit Log Encryption'),
2283 'bool', // data type
2284 '0', // default
2285 xl('Enable Audit Log Encryption')
2288 'billing_log_option' => array(
2289 xl('Billing Log Option'),
2290 array(
2291 '1' => xl('Billing Log Append'),
2292 '2' => xl('Billing Log Overwrite')
2294 '1', // default
2295 xl('Billing log setting to append or overwrite the log file.')
2298 'gbl_print_log_option' => array(
2299 xl('Printing Log Option'),
2300 array(
2301 '0' => xl('No logging'),
2302 '1' => xl('Hide print feature'),
2303 '2' => xl('Log entire document'),
2305 '0', // default
2306 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2311 // Miscellaneous Tab
2313 'Miscellaneous' => array(
2315 'mysql_bin_dir' => array(
2316 xl('Path to MySQL Binaries'),
2317 'text', // data type
2318 $mysql_bin_dir, // default
2319 xl('Full path to directory containing MySQL executables.')
2322 'perl_bin_dir' => array(
2323 xl('Path to Perl Binaries'),
2324 'text', // data type
2325 $perl_bin_dir, // default
2326 xl('Full path to directory containing Perl executables.')
2329 'temporary_files_dir' => array(
2330 xl('Path to Temporary Files'),
2331 'text', // data type
2332 $temporary_files_dir, // default
2333 xl('Full path to directory used for temporary files.')
2336 'backup_log_dir' => array(
2337 xl('Path for Event Log Backup'),
2338 'text', // data type
2339 $backup_log_dir, // default
2340 xl('Full path to directory for event log backup.')
2343 'state_data_type' => array(
2344 xl('State Data Type'),
2345 array(
2346 '2' => xl('Text field'),
2347 '1' => xl('Single-selection list'),
2348 '26' => xl('Single-selection list with ability to add to the list'),
2350 '26', // default
2351 xl('Field type to use for employer or subscriber state in demographics.')
2354 'state_list' => array(
2355 xl('State list'),
2356 'text', // data type
2357 'state', // default
2358 xl('List used by above State Data Type option.')
2361 'state_custom_addlist_widget' => array(
2362 xl('State List Widget Custom Fields'),
2363 'bool', // data type
2364 '1', // default
2365 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2368 'country_data_type' => array(
2369 xl('Country Data Type'),
2370 array(
2371 '2' => xl('Text field'),
2372 '1' => xl('Single-selection list'),
2373 '26' => xl('Single-selection list with ability to add to the list'),
2375 '26', // default
2376 xl('Field type to use for employer or subscriber country in demographics.')
2379 'country_list' => array(
2380 xl('Country list'),
2381 'text', // data type
2382 'country', // default
2383 xl('List used by above Country Data Type option.')
2386 'print_command' => array(
2387 xl('Print Command'),
2388 'text', // data type
2389 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2390 xl('Shell command for printing from the server.')
2393 'default_chief_complaint' => array(
2394 xl('Default Reason for Visit'),
2395 'text', // data type
2397 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2400 'default_new_encounter_form' => array(
2401 xl('Default Encounter Form ID'),
2402 'text', // data type
2404 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
2407 'MedicareReferrerIsRenderer' => array(
2408 xl('Medicare Referrer Is Renderer'),
2409 'bool', // data type
2410 '0', // default = true
2411 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2414 'post_to_date_benchmark' => array(
2415 xl('Financial Close Date (yyyy-mm-dd)'),
2416 'text', // data type
2417 date('Y-m-d', time() - (10 * 24 * 60 * 60)), // default
2418 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2421 'enable_hylafax' => array(
2422 xl('Enable Hylafax Support'),
2423 'bool', // data type
2424 '0', // default
2425 xl('Enable Hylafax Support')
2428 'hylafax_server' => array(
2429 xl('Hylafax Server'),
2430 'text', // data type
2431 'localhost', // default
2432 xl('Hylafax server hostname.')
2435 'hylafax_basedir' => array(
2436 xl('Hylafax Directory'),
2437 'text', // data type
2438 '/var/spool/hylafax', // default
2439 xl('Location where Hylafax stores faxes.')
2442 'hylafax_enscript' => array(
2443 xl('Hylafax Enscript Command'),
2444 'text', // data type
2445 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2446 xl('Enscript command used by Hylafax.')
2449 'enable_scanner' => array(
2450 xl('Enable Scanner Support'),
2451 'bool', // data type
2452 '0', // default
2453 xl('Enable Scanner Support')
2456 'scanner_output_directory' => array(
2457 xl('Scanner Directory'),
2458 'text', // data type
2459 '/mnt/scan_docs', // default
2460 xl('Location where scans are stored.')
2464 // Portal Tab
2466 'Portal' => array(
2468 'portal_onsite_two_enable' => array(
2469 xl('Enable Version 2 Onsite Patient Portal'),
2470 'bool', // data type
2471 '0',
2472 xl('Enable Version 2 Onsite Patient Portal')
2475 'portal_onsite_two_address' => array(
2476 xl('Version 2 Onsite Patient Portal Site Address'),
2477 'text', // data type
2478 'https://your_web_site.com/openemr/portal',
2479 xl('Website link for the Version 2 Onsite Patient Portal.')
2482 'portal_onsite_two_basepath' => array(
2483 xl('Portal Uses Server Base Path (internal)'),
2484 'bool',
2485 '0',
2486 xl('Use servers protocol and host in urls (portal internal only).')
2489 'portal_onsite_two_register' => array(
2490 xl('Allow Version 2 Onsite New Patient Registration Widget'),
2491 'bool', // data type
2492 '1',
2493 xl('Enable Version 2 Onsite Patient Portal new patient to self register.')
2496 'portal_two_payments' => array(
2497 xl('Allow Version 2 Onsite Online Payments'),
2498 'bool', // data type
2499 '0',
2500 xl('Allow Version 2 Onsite Patient to make payments online.')
2503 'portal_two_pass_reset' => array(
2504 xl('Allow Version 2 Patients to Reset Credentials'),
2505 'bool', // data type
2506 '0',
2507 xl('Patient may change their logon from portal login dialog.')
2510 'portal_onsite_enable' => array(
2511 xl('Enable Version 1 Onsite Patient Portal'),
2512 'bool', // data type
2513 '0',
2514 xl('Enable Version 1 Onsite Patient Portal')
2517 'portal_onsite_address' => array(
2518 xl('Version 1 Onsite Patient Portal Site Address'),
2519 'text', // data type
2520 'https://your_web_site.com/openemr/patients',
2521 xl('Website link for the Version 1 Onsite Patient Portal.')
2524 'portal_onsite_document_download' => array(
2525 xl('Enable Onsite Patient Portal Document Download'),
2526 'bool', // data type
2527 '1',
2528 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2531 'portal_offsite_enable' => array(
2532 xl('Enable Offsite Patient Portal'),
2533 'bool', // data type
2534 '0',
2535 xl('Enable Offsite Patient Portal.')
2537 'portal_offsite_providerid' => array(
2538 xl('Offsite Patient Portal Provider ID'),
2539 'text', // data type
2541 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2544 'portal_offsite_username' => array(
2545 xl('Offsite Patient Portal Username'),
2546 'text', // data type
2548 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2551 'portal_offsite_password' => array(
2552 xl('Offsite Patient Portal Password'),
2553 'pwd', // data type
2555 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2558 'portal_offsite_address' => array(
2559 xl('Offsite Patient Portal Site Address'),
2560 'text', // data type
2561 'https://ssh.mydocsportal.com/provider.php',
2562 xl('Offsite Https link for the Patient Portal.')
2565 'portal_offsite_address_patient_link' => array(
2566 xl('Offsite Patient Portal Site Address (Patient Link)'),
2567 'text', // data type
2568 'https://ssh.mydocsportal.com',
2569 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2572 // Currently the "CMS Portal" supports WordPress. Other Content Management
2573 // Systems may be supported in the future.
2575 'gbl_portal_cms_enable' => array(
2576 xl('Enable CMS Portal'),
2577 'bool', // data type
2578 '0',
2579 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2582 'gbl_portal_cms_address' => array(
2583 xl('CMS Portal Site Address'),
2584 'text', // data type
2585 'https://your_cms_site.com/',
2586 xl('URL for the WordPress site that supports the portal')
2589 'gbl_portal_cms_username' => array(
2590 xl('CMS Portal Username'),
2591 'text', // data type
2593 xl('Login name of WordPress user for portal access')
2596 'gbl_portal_cms_password' => array(
2597 xl('CMS Portal Password'),
2598 'text', // data type
2600 xl('Password for the above user')
2605 // Connectors Tab
2607 'Connectors' => array(
2609 'fhir_enable' => array(
2610 xl('Enable FHIR Provider Client Service'),
2611 array(
2612 0 => xl('Off: No Service.'),
2613 1 => xl('On: HAPI FHIR.'),
2614 2 => xl('On: Smart on FHIR.'),
2616 '0',
2617 xl('Enable FHIR Provider Client Service')
2620 'fhir_base_url' => array(
2621 xl('FHIR Server Base Address'),
2622 'text',
2623 'https://hapi.fhir.org/baseDstu3/',
2624 xl('Base URL for FHIR Server. Url should end with /')
2627 'medex_enable' => array(
2628 xl('Enable MedEx Communication Service'),
2629 'bool', // data type
2630 '0',
2631 xl('Enable MedEx Communication Service')
2634 'erx_enable' => array(
2635 xl('Enable NewCrop eRx Service'),
2636 'bool',
2637 '0',
2638 xl('Enable NewCrop eRx Service.') . ' ' .
2639 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.')
2642 'erx_newcrop_path' => array(
2643 xl('NewCrop eRx Site Address'),
2644 'text',
2645 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2646 xl('URL for NewCrop eRx Site Address.')
2649 'erx_newcrop_path_soap' => array(
2650 xl('NewCrop eRx Web Service Address'),
2651 'text',
2652 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2653 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2656 'erx_soap_ttl_allergies' => array(
2657 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2658 'num',
2659 '21600',
2660 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2663 'erx_soap_ttl_medications' => array(
2664 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2665 'num',
2666 '21600',
2667 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2670 'erx_account_partner_name' => array(
2671 xl('NewCrop eRx Partner Name'),
2672 'text',
2674 xl('Partner Name issued for NewCrop eRx service.')
2677 'erx_account_name' => array(
2678 xl('NewCrop eRx Name'),
2679 'text',
2681 xl('Account Name issued for NewCrop eRx service.')
2684 'erx_account_password' => array(
2685 xl('NewCrop eRx Password'),
2686 'pass',
2688 xl('Account Password issued for NewCrop eRx service.')
2691 'erx_account_id' => array(
2692 xl('NewCrop eRx Account Id'),
2693 'text',
2694 '1',
2695 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2698 'erx_upload_active' => array(
2699 xl('Only upload active prescriptions'),
2700 'bool',
2701 '0',
2702 xl('Only upload active prescriptions to NewCrop eRx.')
2705 'erx_import_status_message' => array(
2706 xl('Enable NewCrop eRx import status message'),
2707 'bool',
2708 '0',
2709 xl('Enable import status message after visiting NewCrop eRx.')
2712 'erx_medication_display' => array(
2713 xl('Do not display NewCrop eRx Medications uploaded'),
2714 'bool',
2715 '0',
2716 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2719 'erx_allergy_display' => array(
2720 xl('Do not display NewCrop eRx Allergy uploaded'),
2721 'bool',
2722 '0',
2723 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2726 'erx_default_patient_country' => array(
2727 xl('NewCrop eRx Default Patient Country'),
2728 array(
2729 '' => '',
2730 'US' => xl('USA'),
2731 'CA' => xl('Canada'),
2732 'MX' => xl('Mexico'),
2735 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2738 'erx_debug_setting' => array(
2739 xl('NewCrop eRx Debug Setting'),
2740 array(
2741 0 => xl('None'),
2742 1 => xl('Request Only'),
2743 2 => xl('Response Only'),
2744 3 => xl('Request & Response'),
2746 '0',
2747 xl('Log all NewCrop eRx Requests and / or Responses.'),
2750 'weno_rx_enable' => array(
2751 xl('Enable Weno eRx Service'),
2752 'bool',
2753 '0',
2754 xl('Enable Weno eRx Service') . ' ' . xl('Contact Open Med Practice, www.openmedpractice.com for subscribing to the Weno Free eRx service.')
2757 'weno_account_id' => array(
2758 xl('Weno eRx Account Id'),
2759 'text',
2761 xl('Account Id issued for Weno eRx service.')
2764 'weno_account_pass' => array(
2765 xl('Weno eRx Account Pass'),
2766 'text',
2768 xl('Account Id issued for Weno eRx service.')
2771 'weno_provider_id' => array(
2772 xl('Weno eRx Clinic ID'),
2773 'text',
2775 xl('Account Id issued for Your clinics eRx service.')
2778 'ccda_alt_service_enable' => array(
2779 xl('Enable C-CDA Alternate Service'),
2780 array(
2781 0 => xl('Off'),
2782 1 => xl('Care Coordination Only'),
2783 2 => xl('Portal Only'),
2784 3 => xl('Both'),
2786 '0',
2787 xl('Enable C-CDA Alternate Service')
2790 'phimail_enable' => array(
2791 xl('Enable phiMail Direct Messaging Service'),
2792 'bool', // data type
2793 '0',
2794 xl('Enable phiMail Direct Messaging Service')
2797 'phimail_server_address' => array(
2798 xl('phiMail Server Address'),
2799 'text', // data type
2800 'https://phimail.example.com:32541',
2801 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2804 'phimail_username' => array(
2805 xl('phiMail Username'),
2806 'text', // data type
2808 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2811 'phimail_password' => array(
2812 xl('phiMail Password'),
2813 'pass', // data type
2815 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2818 'phimail_notify' => array(
2819 xl('phiMail notification user'),
2820 'text', // data type
2821 'admin',
2822 xl('This user will receive notification of new incoming Direct messages')
2825 'phimail_interval' => array(
2826 xl('phiMail Message Check Interval (minutes)'),
2827 'num', // data type
2828 '5',
2829 xl('Interval between message checks (set to zero for manual checks only)')
2832 'phimail_ccd_enable' => array(
2833 xl('phiMail Allow CCD Send'),
2834 'bool', // data type
2835 '0',
2836 xl('phiMail Allow CCD Send')
2839 'phimail_ccr_enable' => array(
2840 xl('phiMail Allow CCR Send'),
2841 'bool', // data type
2842 '0',
2843 xl('phiMail Allow CCR Send')
2847 'Rx' => array(
2848 'rx_enable_DEA' => array(
2849 xl('Rx Enable DEA #'),
2850 'bool', // data type
2851 '1',
2852 xl('Rx Enable DEA #')
2854 'rx_show_DEA' => array(
2855 xl('Rx Show DEA #'),
2856 'bool', // data type
2857 '0',
2858 xl('Rx Show DEA #')
2860 'rx_enable_NPI' => array(
2861 xl('Rx Enable NPI'),
2862 'bool', // data type
2863 '0',
2864 xl('Rx Enable NPI')
2866 'rx_show_NPI' => array(
2867 xl('Rx Show NPI'),
2868 'bool', // data type
2869 '0',
2870 xl('Rx Show NPI')
2872 'rx_enable_SLN' => array(
2873 xl('Rx Enable State Lic. #'),
2874 'bool', // data type
2875 '0',
2876 xl('Rx Enable State Lic. #')
2878 'rx_show_SLN' => array(
2879 xl('Rx Show State Lic. #'),
2880 'bool', // data type
2881 '0',
2882 xl('Rx Show State Lic. #')
2884 'rx_show_drug-drug' => array(
2885 xl('Rx NLM Drug-Drug'),
2886 'bool', // data type
2887 '0',
2888 xl('Rx NLM Drug-Drug')
2890 'rx_paper_size' => array(
2891 xl('Rx Paper Size'), // descriptive name
2892 array(
2893 'LETTER' => xl('Letter Paper Size'),
2894 'LEGAL' => xl('Legal Paper Size'),
2895 'FOLIO' => xl('Folio Paper Size'),
2896 'EXECUTIVE' => xl('Executive Paper Size'),
2897 '4A0' => ('4A0' . " " . xl('Paper Size')),
2898 '2A0' => ('2A0' . " " . xl('Paper Size')),
2899 'A0' => ('A0' . " " . xl('Paper Size')),
2900 'A1' => ('A1' . " " . xl('Paper Size')),
2901 'A2' => ('A2' . " " . xl('Paper Size')),
2902 'A3' => ('A3' . " " . xl('Paper Size')),
2903 'A4' => ('A4' . " " . xl('Paper Size')),
2904 'A5' => ('A5' . " " . xl('Paper Size')),
2905 'A6' => ('A6' . " " . xl('Paper Size')),
2906 'A7' => ('A7' . " " . xl('Paper Size')),
2907 'A8' => ('A8' . " " . xl('Paper Size')),
2908 'A9' => ('A9' . " " . xl('Paper Size')),
2909 'A10' => ('A10' . " " . xl('Paper Size')),
2910 'B0' => ('B0' . " " . xl('Paper Size')),
2911 'B1' => ('B1' . " " . xl('Paper Size')),
2912 'B2' => ('B2' . " " . xl('Paper Size')),
2913 'B3' => ('B3' . " " . xl('Paper Size')),
2914 'B4' => ('B4' . " " . xl('Paper Size')),
2915 'B5' => ('B5' . " " . xl('Paper Size')),
2916 'B6' => ('B6' . " " . xl('Paper Size')),
2917 'B7' => ('B7' . " " . xl('Paper Size')),
2918 'B8' => ('B8' . " " . xl('Paper Size')),
2919 'B9' => ('B9' . " " . xl('Paper Size')),
2920 'B10' => ('B10' . " " . xl('Paper Size')),
2921 'C0' => ('C0' . " " . xl('Paper Size')),
2922 'C1' => ('C1' . " " . xl('Paper Size')),
2923 'C2' => ('C2' . " " . xl('Paper Size')),
2924 'C3' => ('C3' . " " . xl('Paper Size')),
2925 'C4' => ('C4' . " " . xl('Paper Size')),
2926 'C5' => ('C5' . " " . xl('Paper Size')),
2927 'C6' => ('C6' . " " . xl('Paper Size')),
2928 'C7' => ('C7' . " " . xl('Paper Size')),
2929 'C8' => ('C8' . " " . xl('Paper Size')),
2930 'C9' => ('C9' . " " . xl('Paper Size')),
2931 'C10' => ('C10' . " " . xl('Paper Size')),
2932 'RA0' => ('RA0' . " " . xl('Paper Size')),
2933 'RA1' => ('RA1' . " " . xl('Paper Size')),
2934 'RA2' => ('RA2' . " " . xl('Paper Size')),
2935 'RA3' => ('RA3' . " " . xl('Paper Size')),
2936 'RA4' => ('RA4' . " " . xl('Paper Size')),
2937 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2938 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2939 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2940 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2941 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2943 'LETTER', // default = tree menu
2944 xl('Rx Paper Size')
2946 'rx_left_margin' => array(
2947 xl('Rx Left Margin (px)'),
2948 'num',
2949 '30',
2950 xl('Rx Left Margin (px)')
2952 'rx_right_margin' => array(
2953 xl('Rx Right Margin (px)'),
2954 'num',
2955 '30',
2956 xl('Rx Right Margin (px)')
2958 'rx_top_margin' => array(
2959 xl('Rx Top Margin (px)'),
2960 'num',
2961 '72',
2962 xl('Rx Top Margin (px)')
2964 'rx_bottom_margin' => array(
2965 xl('Rx Bottom Margin (px)'),
2966 'num',
2967 '30',
2968 xl('Rx Bottom Margin (px)')
2972 'PDF' => array(
2973 'pdf_layout' => array(
2974 xl('Layout'),
2975 array(
2976 'P' => xl('Portrait'),
2977 'L' => xl('Landscape')
2979 'P', //defaut
2980 xl("Choose Layout Direction"),
2982 'pdf_language' => array(
2983 xl('PDF Language'),
2984 array(
2985 'aa' => xl('Afar'),
2986 'af' => xl('Afrikaans'),
2987 'ak' => xl('Akan'),
2988 'sq' => xl('Albanian'),
2989 'am' => xl('Amharic'),
2990 'ar' => xl('Arabic'),
2991 'an' => xl('Aragonese'),
2992 'hy' => xl('Armenian'),
2993 'as' => xl('Assamese'),
2994 'av' => xl('Avaric'),
2995 'ae' => xl('Avestan'),
2996 'ay' => xl('Aymara'),
2997 'az' => xl('Azerbaijani'),
2998 'bm' => xl('Bambara'),
2999 'ba' => xl('Bashkir'),
3000 'eu' => xl('Basque'),
3001 'be' => xl('Belarusian'),
3002 'bn' => xl('Bengali- Bangla'),
3003 'bh' => xl('Bihari'),
3004 'bi' => xl('Bislama'),
3005 'bs' => xl('Bosnian'),
3006 'br' => xl('Breton'),
3007 'bg' => xl('Bulgarian'),
3008 'my' => xl('Burmese'),
3009 'ca' => xl('Catalan- Valencian'),
3010 'ch' => xl('Chamorro'),
3011 'ce' => xl('Chechen'),
3012 'ny' => xl('Chichewa- Chewa- Nyanja'),
3013 'zh' => xl('Chinese'),
3014 'cv' => xl('Chuvash'),
3015 'kw' => xl('Cornish'),
3016 'co' => xl('Corsican'),
3017 'cr' => xl('Cree'),
3018 'hr' => xl('Croatian'),
3019 'cs' => xl('Czech'),
3020 'da' => xl('Danish'),
3021 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
3022 'nl' => xl('Dutch'),
3023 'dz' => xl('Dzongkha'),
3024 'en' => xl('English'),
3025 'eo' => xl('Esperanto'),
3026 'et' => xl('Estonian'),
3027 'ee' => xl('Ewe'),
3028 'fo' => xl('Faroese'),
3029 'fj' => xl('Fijian'),
3030 'fi' => xl('Finnish'),
3031 'fr' => xl('French'),
3032 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
3033 'gl' => xl('Galician'),
3034 'ka' => xl('Georgian'),
3035 'de' => xl('German'),
3036 'el' => xl('Greek, Modern'),
3037 'gn' => xl('Guarani'),
3038 'gu' => xl('Gujarati'),
3039 'ht' => xl('Haitian- Haitian Creole'),
3040 'ha' => xl('Hausa'),
3041 'he' => xl('Hebrew (modern)'),
3042 'hz' => xl('Herero'),
3043 'hi' => xl('Hindi'),
3044 'ho' => xl('Hiri Motu'),
3045 'hu' => xl('Hungarian'),
3046 'ia' => xl('Interlingua'),
3047 'id' => xl('Indonesian'),
3048 'ie' => xl('Interlingue'),
3049 'ga' => xl('Irish'),
3050 'ig' => xl('Igbo'),
3051 'ik' => xl('Inupiaq'),
3052 'io' => xl('Ido'),
3053 'is' => xl('Icelandic'),
3054 'it' => xl('Italian'),
3055 'iu' => xl('Inuktitut'),
3056 'ja' => xl('Japanese'),
3057 'jv' => xl('Javanese'),
3058 'kl' => xl('Kalaallisut, Greenlandic'),
3059 'kn' => xl('Kannada'),
3060 'kr' => xl('Kanuri'),
3061 'ks' => xl('Kashmiri'),
3062 'kk' => xl('Kazakh'),
3063 'km' => xl('Khmer'),
3064 'ki' => xl('Kikuyu, Gikuyu'),
3065 'rw' => xl('Kinyarwanda'),
3066 'ky' => xl('Kyrgyz'),
3067 'kv' => xl('Komi'),
3068 'kg' => xl('Kongo'),
3069 'ko' => xl('Korean'),
3070 'ku' => xl('Kurdish'),
3071 'kj' => xl('Kwanyama, Kuanyama'),
3072 'la' => xl('Latin'),
3073 'lb' => xl('Luxembourgish, Letzeburgesch'),
3074 'lg' => xl('Ganda'),
3075 'li' => xl('Limburgish, Limburgan, Limburger'),
3076 'ln' => xl('Lingala'),
3077 'lo' => xl('Lao'),
3078 'lt' => xl('Lithuanian'),
3079 'lu' => xl('Luba-Katanga'),
3080 'lv' => xl('Latvian'),
3081 'gv' => xl('Manx'),
3082 'mk' => xl('Macedonian'),
3083 'mg' => xl('Malagasy'),
3084 'ms' => xl('Malay'),
3085 'ml' => xl('Malayalam'),
3086 'mt' => xl('Maltese'),
3087 'mi' => xl('Maori'),
3088 'mr' => xl('Marathi (Marathi)'),
3089 'mh' => xl('Marshallese'),
3090 'mn' => xl('Mongolian'),
3091 'na' => xl('Nauru'),
3092 'nv' => xl('Navajo, Navaho'),
3093 'nb' => xl('Norwegian Bokmal'),
3094 'nd' => xl('North Ndebele'),
3095 'ne' => xl('Nepali'),
3096 'ng' => xl('Ndonga'),
3097 'nn' => xl('Norwegian Nynorsk'),
3098 'no' => xl('Norwegian'),
3099 'ii' => xl('Nuosu'),
3100 'nr' => xl('South Ndebele'),
3101 'oc' => xl('Occitan'),
3102 'oj' => xl('Ojibwe, Ojibwa'),
3103 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
3104 'om' => xl('Oromo'),
3105 'or' => xl('Oriya'),
3106 'os' => xl('Ossetian, Ossetic'),
3107 'pa' => xl('Panjabi, Punjabi'),
3108 'pi' => xl('Pali'),
3109 'fa' => xl('Persian (Farsi)'),
3110 'pl' => xl('Polish'),
3111 'ps' => xl('Pashto, Pushto'),
3112 'pt' => xl('Portuguese'),
3113 'qu' => xl('Quechua'),
3114 'rm' => xl('Romansh'),
3115 'rn' => xl('Kirundi'),
3116 'ro' => xl('Romanian'),
3117 'ru' => xl('Russian'),
3118 'sa' => xl('Sanskrit (Samskrta)'),
3119 'sc' => xl('Sardinian'),
3120 'sd' => xl('Sindhi'),
3121 'se' => xl('Northern Sami'),
3122 'sm' => xl('Samoan'),
3123 'sg' => xl('Sango'),
3124 'sr' => xl('Serbian'),
3125 'gd' => xl('Scottish Gaelic- Gaelic'),
3126 'sn' => xl('Shona'),
3127 'si' => xl('Sinhala, Sinhalese'),
3128 'sk' => xl('Slovak'),
3129 'sl' => xl('Slovene'),
3130 'so' => xl('Somali'),
3131 'st' => xl('Southern Sotho'),
3132 'es' => xl('Spanish- Castilian'),
3133 'su' => xl('Sundanese'),
3134 'sw' => xl('Swahili'),
3135 'ss' => xl('Swati'),
3136 'sv' => xl('Swedish'),
3137 'ta' => xl('Tamil'),
3138 'te' => xl('Telugu'),
3139 'tg' => xl('Tajik'),
3140 'th' => xl('Thai'),
3141 'ti' => xl('Tigrinya'),
3142 'bo' => xl('Tibetan Standard, Tibetan, Central'),
3143 'tk' => xl('Turkmen'),
3144 'tl' => xl('Tagalog'),
3145 'tn' => xl('Tswana'),
3146 'to' => xl('Tonga (Tonga Islands)'),
3147 'tr' => xl('Turkish'),
3148 'ts' => xl('Tsonga'),
3149 'tt' => xl('Tatar'),
3150 'tw' => xl('Twi'),
3151 'ty' => xl('Tahitian'),
3152 'ug' => xl('Uyghur, Uighur'),
3153 'uk' => xl('Ukrainian'),
3154 'ur' => xl('Urdu'),
3155 'uz' => xl('Uzbek'),
3156 've' => xl('Venda'),
3157 'vi' => xl('Vietnamese'),
3158 'vo' => xl('Volapuk'),
3159 'wa' => xl('Walloon'),
3160 'cy' => xl('Welsh'),
3161 'wo' => xl('Wolof'),
3162 'fy' => xl('Western Frisian'),
3163 'xh' => xl('Xhosa'),
3164 'yi' => xl('Yiddish'),
3165 'yo' => xl('Yoruba'),
3166 'za' => xl('Zhuang, Chuang'),
3167 'zu' => xl('Zulu'),
3169 'en', // default English
3170 xl('Choose PDF languange Preference'),
3172 'pdf_size' => array(
3173 xl('Paper Size'), // Descriptive Name
3174 array(
3175 'LETTER' => xl('Letter Paper Size'),
3176 'LEGAL' => xl('Legal Paper Size'),
3177 'FOLIO' => xl('Folio Paper Size'),
3178 'EXECUTIVE' => xl('Executive Paper Size'),
3179 '4A0' => ('4A0' . " " . xl('Paper Size')),
3180 '2A0' => ('2A0' . " " . xl('Paper Size')),
3181 'A0' => ('A0' . " " . xl('Paper Size')),
3182 'A1' => ('A1' . " " . xl('Paper Size')),
3183 'A2' => ('A2' . " " . xl('Paper Size')),
3184 'A3' => ('A3' . " " . xl('Paper Size')),
3185 'A4' => ('A4' . " " . xl('Paper Size')),
3186 'A5' => ('A5' . " " . xl('Paper Size')),
3187 'A6' => ('A6' . " " . xl('Paper Size')),
3188 'A7' => ('A7' . " " . xl('Paper Size')),
3189 'A8' => ('A8' . " " . xl('Paper Size')),
3190 'A9' => ('A9' . " " . xl('Paper Size')),
3191 'A10' => ('A10' . " " . xl('Paper Size')),
3192 'B0' => ('B0' . " " . xl('Paper Size')),
3193 'B1' => ('B1' . " " . xl('Paper Size')),
3194 'B2' => ('B2' . " " . xl('Paper Size')),
3195 'B3' => ('B3' . " " . xl('Paper Size')),
3196 'B4' => ('B4' . " " . xl('Paper Size')),
3197 'B5' => ('B5' . " " . xl('Paper Size')),
3198 'B6' => ('B6' . " " . xl('Paper Size')),
3199 'B7' => ('B7' . " " . xl('Paper Size')),
3200 'B8' => ('B8' . " " . xl('Paper Size')),
3201 'B9' => ('B9' . " " . xl('Paper Size')),
3202 'B10' => ('B10' . " " . xl('Paper Size')),
3203 'C0' => ('C0' . " " . xl('Paper Size')),
3204 'C1' => ('C1' . " " . xl('Paper Size')),
3205 'C2' => ('C2' . " " . xl('Paper Size')),
3206 'C3' => ('C3' . " " . xl('Paper Size')),
3207 'C4' => ('C4' . " " . xl('Paper Size')),
3208 'C5' => ('C5' . " " . xl('Paper Size')),
3209 'C6' => ('C6' . " " . xl('Paper Size')),
3210 'C7' => ('C7' . " " . xl('Paper Size')),
3211 'C8' => ('C8' . " " . xl('Paper Size')),
3212 'C9' => ('C9' . " " . xl('Paper Size')),
3213 'C10' => ('C10' . " " . xl('Paper Size')),
3214 'RA0' => ('RA0' . " " . xl('Paper Size')),
3215 'RA1' => ('RA1' . " " . xl('Paper Size')),
3216 'RA2' => ('RA2' . " " . xl('Paper Size')),
3217 'RA3' => ('RA3' . " " . xl('Paper Size')),
3218 'RA4' => ('RA4' . " " . xl('Paper Size')),
3219 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3220 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3221 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3222 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3223 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3225 'LETTER',
3226 xl('Choose Paper Size')
3228 'pdf_left_margin' => array(
3229 xl('Left Margin (mm)'),
3230 'num',
3231 '5',
3232 xl('Left Margin (mm)')
3234 'pdf_right_margin' => array(
3235 xl('Right Margin (mm)'),
3236 'num',
3237 '5',
3238 xl('Right Margin (mm)')
3240 'pdf_top_margin' => array(
3241 xl('Top Margin (mm)'),
3242 'num',
3243 '5',
3244 xl('Top Margin (mm)')
3246 'pdf_bottom_margin' => array(
3247 xl('Bottom Margin (px)'),
3248 'num',
3249 '8',
3250 xl('Bottom Margin (px)')
3252 'pdf_output' => array(
3253 xl('Output Type'),
3254 array(
3255 'D' => xl('Download'),
3256 'I' => xl('Inline')
3258 'D', //defaut
3259 xl("Choose Download or Display Inline"),
3262 'chart_label_type' => array(
3263 xl('Patient Label Type'),
3264 array(
3265 '0' => xl('None'),
3266 '1' => '5160',
3267 '2' => '5161',
3268 '3' => '5162'
3270 '1', // default
3271 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3274 'barcode_label_type' => array(
3275 xl('Barcode Label Type'),
3276 array(
3277 '0' => xl('None'),
3278 '1' => 'std25',
3279 '2' => 'int25',
3280 '3' => 'ean8',
3281 '4' => 'ean13',
3282 '5' => 'upc',
3283 '6' => 'code11',
3284 '7' => 'code39',
3285 '8' => 'code93',
3286 '9' => 'code128',
3287 '10' => 'codabar',
3288 '11' => 'msi',
3289 '12' => 'datamatrix'
3291 '9', // default = None
3292 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3295 'addr_label_type' => array(
3296 xl('Print Patient Address Label'),
3297 'bool', // data type
3298 '1', // default = false
3299 xl('Select to print patient address labels from popups in left nav screen.')
3302 'env_x_width' => array(
3303 xl('Envelope Width in mm'),
3304 'num', // data type
3305 '104.775',
3306 xl('In Portrait mode, determines the width of the envelope along the x-axis in mm')
3309 'env_y_height' => array(
3310 xl('Envelope Height in mm'),
3311 'num', // data type
3312 '241.3',
3313 xl('In Portrait mode, determines the height of the envelope along the y-axis in mm')
3316 'env_font_size' => array(
3317 xl('Font Size in Pt'),
3318 'num', // data type
3319 '14',
3320 xl('Sets the font of the address text on the envelope in mm')
3323 'env_x_dist' => array(
3324 xl('Envelope x-axis starting pt'),
3325 'num', // data type
3326 '65',
3327 xl('Distance from the \'top\' of the envelope in mm')
3330 'env_y_dist' => array(
3331 xl('Envelope y-axis starting pt'),
3332 'num', // data type
3333 '220',
3334 xl('Distance from the right most edge of the envelope in portrait position in mm')