default turned off fhir publish to ensure real patient info is not mistakenly publish...
[openemr.git] / library / globals.inc.php
blob0fcbd70fa06b4b1698b6896838e94bb3ab957ff0
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 'checkout_roll_off',
124 'patient_birthday_alert',
125 'patient_birthday_alert_manual_off',
126 'erx_import_status_message');
128 // Gets array of time zones supported by PHP.
130 function gblTimeZones()
132 $zones = timezone_identifiers_list();
133 $arr = array('' => xl('Unassigned'));
134 foreach ($zones as $zone) {
135 $arr[$zone] = str_replace('_', ' ', $zone);
138 return $arr;
141 $GLOBALS_METADATA = array(
143 // Appearance Tab
145 'Appearance' => array(
147 'default_top_pane' => array(
148 xl('Main Top Pane Screen(Or Default First Tab)'), // descriptive name
149 array(
150 'main_info.php' => xl('Calendar Screen'),
151 '../new/new.php' => xl('Patient Search/Add Screen'),
152 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
153 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
154 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen')
156 'main_info.php', // default = calendar
157 xl('Main Top Pane Screen(Or Default First Tab)')
160 'default_second_tab' => array(
161 xl('Default Second Tab'), // descriptive name
162 array(
163 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen'),
164 'main_info.php' => xl('Calendar Screen'),
165 '../new/new.php' => xl('Patient Search/Add Screen'),
166 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
167 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
169 '../../interface/main/messages/messages.php?form_active=1', // default = messages
170 xl('Default Second Tab')
173 'new_tabs_layout' => array(
174 xl('Layout (need to logout/login after change this setting)'),
175 array(
176 '0' => xl('Frame'),
177 '1' => xl('Tabs'),
179 '1',
180 xl('Choose the layout (need to logout and then login to see this new setting).')
183 'theme_tabs_layout' => array(
184 xl('Tabs Layout Theme (need to logout/login after change this setting)'),
185 'tabs_css',
186 'tabs_style_full.css',
187 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.')
190 'css_header' => array(
191 xl('General Theme (need to logout/login after change this setting)'),
192 'css',
193 'style_light.css',
194 xl('Pick a general theme (need to logout/login after change this setting).')
197 'font-family' => [
198 xl('Default font (need to logout/login after change this setting)'),
200 '__default__' => 'Use Theme Font',
201 'Arial, Helvetica, sans-serif' => "Arial",
202 '"Arial Black", Gadget, sans-serif' => "Arial Black",
203 'Impact, Charcoal, sans-serif' => "Impact",
204 '"Lucida Sans Unicode", "Lucida Grande", sans-serif' => "Lucida Sans",
205 'Tahoma, Geneva, sans-serif' => "Tahoma",
206 '"Trebuchet MS", Helvetica, sans-serif' => "Trebuchet MS",
207 'Verdana, Geneva, sans-serif' => "Verdana",
208 'lato' => "Lato",
210 '__default__',
211 xl('Select the default font'),
214 'font-size' => [
215 xl('Default font size (need to logout/login after change this setting)'),
217 '__default__' => 'Use Theme Font Size',
218 '10px' => '10px',
219 '12px' => '12px',
220 '14px' => '14px',
221 '16px' => '16px',
222 '18px' => '18px',
224 '__default__',
225 xl("Select the default font size"),
228 'menu_styling_vertical' => array(
229 xl('Vertical Menu Style'),
230 array(
231 '0' => xl('Tree'),
232 '1' => xl('Sliding'),
234 '1',
235 xl('Vertical Menu Style')
238 'default_encounter_view' => array(
239 xl('Default Encounter View'), // descriptive name
240 array(
241 '0' => xl('Clinical View'),
242 '1' => xl('Billing View'),
244 '0', // default = tree menu
245 xl('Choose your default encounter view')
248 'gbl_nav_area_width' => array(
249 xl('Navigation Area Width'),
250 'num',
251 '175',
252 xl('Width in pixels of the left navigation frame.')
255 'openemr_name' => array(
256 xl('Application Title'),
257 'text',
258 'OpenEMR',
259 xl('Application name for login page and main window title.')
262 'enable_group_therapy' => array(
263 xl('Enable Group Therapy'),
264 'bool', // data type
265 '0', // default = false
266 xl('Enables groups module in system.')
269 'full_new_patient_form' => array(
270 xl('New Patient Form'),
272 array(
273 '0' => xl('Old-style static form without search or duplication check'),
274 '1' => xl('All demographics fields, with search and duplication check'),
275 '2' => xl('Mandatory or specified fields only, search and dup check'),
276 '3' => xl('Mandatory or specified fields only, dup check, no search'),
277 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
279 '1', // default
280 xl('Style of form used for adding new patients')
283 'gbl_edit_patient_form' => array(
284 xl('Modify Patient Form'),
286 array(
287 '0' => xl('Standard check'),
288 '1' => xl('Zend Module check in addition to standard check')
290 '0', // default
291 xl('Validation mechanism for when modifying patient demographics.')
294 'patient_search_results_style' => array(
295 xl('Patient Search Results Style'),
296 array(
297 '0' => xl('Encounter statistics'),
298 '1' => xl('Mandatory and specified fields'),
300 '0', // default
301 xl('Type of columns displayed for patient search results')
304 'gbl_tall_nav_area' => array(
305 xl('Tall Navigation Area'),
306 'bool', // data type
307 '0', // default = false
308 xl('Navigation area uses full height of frameset')
311 'gbl_nav_visit_forms' => array(
312 xl('Navigation Area Visit Forms'),
313 'bool', // data type
314 '1', // default = true
315 xl('Navigation area includes encounter forms')
318 'simplified_demographics' => array(
319 xl('Simplified Demographics'),
320 'bool', // data type
321 '0', // default = false
322 xl('Omit insurance and some other things from the demographics form')
325 'simplified_prescriptions' => array(
326 xl('Simplified Prescriptions'),
327 'bool', // data type
328 '0', // default = false
329 xl('Omit form, route and interval which then become part of dosage')
332 'simplified_copay' => array(
333 xl('Simplified Co-Pay'),
334 'bool', // data type
335 '0', // default = false
336 xl('Omit method of payment from the co-pay panel')
339 'use_charges_panel' => array(
340 xl('Use Charges Panel'),
341 'bool', // data type
342 '0', // default = false
343 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
346 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
347 'enable_fees_in_left_menu' => array(
348 xl('Enable Fees Submenu'),
349 'bool', // data type
350 '1', // default = true
351 xl('Enable Fees Submenu')
353 'enable_batch_payment' => array(
354 xl('Enable Batch Payment'),
355 'bool', // data type
356 '1', // default = true
357 xl('Enable Batch Payment')
359 'enable_posting' => array(
360 xl('Enable Posting'),
361 'bool', // data type
362 '1', // default = true
363 xl('Enable Posting')
365 // EDI history 2012-09-13
366 'enable_edihistory_in_left_menu' => array(
367 xl('Enable EDI History'),
368 'bool', // data type
369 '1', // default = true
370 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
373 'online_support_link' => array(
374 xl('Online Support Link'),
375 'text', // data type
376 'http://open-emr.org/',
377 xl('URL for OpenEMR support.')
380 'support_phone_number' => array(
381 xl('Support Phone Number'),
382 'text',
384 xl('Phone Number for Vendor Support that Appears on the About Page.')
387 'encounter_page_size' => array(
388 xl('Encounter Page Size'),
389 array(
390 '0' => xl('Show All'),
391 '5' => '5',
392 '10' => '10',
393 '15' => '15',
394 '20' => '20',
395 '25' => '25',
396 '50' => '50',
398 '20',
399 xl('Number of encounters to display per page.')
402 'gbl_pt_list_page_size' => array(
403 xl('Patient List Page Size'),
404 array(
405 '10' => '10',
406 '25' => '25',
407 '50' => '50',
408 '100' => '100',
410 '10',
411 xl('Number of patients to display per page in the patient list.')
414 'gbl_pt_list_new_window' => array(
415 xl('Patient List New Window'),
416 'bool', // data type
417 '0', // default = false
418 xl('Default state of New Window checkbox in the patient list.')
421 'gbl_vitals_options' => array(
422 xl('Vitals Form Options'),
423 array(
424 '0' => xl('Standard'),
425 '1' => xl('Omit circumferences'),
427 '0', // default
428 xl('Special treatment for the Vitals form')
431 'insurance_information' => array(
432 xl('Show Additional Insurance Information'), // descriptive name
433 array(
434 '0' => xl('None'),
435 '1' => xl('Address Only'),
436 '2' => xl('Address and Postal Code'),
437 '3' => xl('Address and State'),
438 '4' => xl('Address, State and Postal Code'),
439 '5' => xl('Address, City, State and Postal Code'),
440 '6' => xl('Postal Code and Box Number')
442 '5', // default
443 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
446 'gb_how_sort_list' => array(
447 xl('How to sort a drop-lists'),
448 array(
449 '0' => xl('Sort by seq'),
450 '1' => xl('Sort alphabetically')
452 '0',
453 xl('What kind of sorting will be in the drop lists.')
456 'show_label_login' => array(
457 xl('Show Title on Login'),
458 'bool', // data type
459 '0', // default = false
460 xl('Show Title on Login')
463 'extra_logo_login' => array(
464 xl('Show Extra Logo on Login'),
465 'bool', // data type
466 '0', // default = false
467 xl('Show Extra Logo on Login')
470 'tiny_logo_1' => array(
471 xl('Show Mini Logo 1'),
472 'bool', // data type
473 '0', // default = false
474 xl('Show Mini Logo 1')
477 'tiny_logo_2' => array(
478 xl('Show Mini Logo 2'),
479 'bool', // data type
480 '0', // default = false
481 xl('Show Mini Logo 2')
486 // Locale Tab
488 'Locale' => array(
490 'language_default' => array(
491 xl('Default Language'),
492 'lang', // data type
493 'English (Standard)', // default = english
494 xl('Default language if no other is allowed or chosen.')
497 'language_menu_showall' => array(
498 xl('All Languages Allowed'),
499 'bool', // data type
500 '1', // default = true
501 xl('Allow all available languages as choices on menu at login.')
504 'language_menu_other' => array(
505 xl('Allowed Languages'),
506 'm_lang', // data type
507 '', // default = none
508 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
511 'allow_debug_language' => array(
512 xl('Allow Debugging Language'),
513 'bool', // data type
514 '1', // default = true during development and false for production releases
515 xl('This will allow selection of the debugging (\'dummy\') language.')
518 'translate_no_safe_apostrophe' => array(
519 xl('Do Not Use Safe Apostrophe'),
520 'bool', // data type
521 '0', // default = false
522 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)')
525 'translate_layout' => array(
526 xl('Translate Layouts'),
527 'bool', // data type
528 '1', // default = true
529 xl('Is text from form layouts to be translated?')
532 'translate_lists' => array(
533 xl('Translate Lists'),
534 'bool', // data type
535 '1', // default = true
536 xl('Is text from lists to be translated?')
539 'translate_gacl_groups' => array(
540 xl('Translate Access Control Groups'),
541 'bool', // data type
542 '1', // default = true
543 xl('Are access control group names to be translated?')
546 'translate_form_titles' => array(
547 xl('Translate Patient Note Titles'),
548 'bool', // data type
549 '1', // default = true
550 xl('Are patient note titles to be translated?')
553 'translate_document_categories' => array(
554 xl('Translate Document Categories'),
555 'bool', // data type
556 '1', // default = true
557 xl('Are document category names to be translated?')
560 'translate_appt_categories' => array(
561 xl('Translate Appointment Categories'),
562 'bool', // data type
563 '1', // default = true
564 xl('Are appointment category names to be translated?')
567 'units_of_measurement' => array(
568 xl('Units for Visit Forms'),
569 array(
570 '1' => xl('Show both US and metric (main unit is US)'),
571 '2' => xl('Show both US and metric (main unit is metric)'),
572 '3' => xl('Show US only'),
573 '4' => xl('Show metric only'),
575 '1', // default = Both/US
576 xl('Applies to the Vitals form and Growth Chart')
579 'us_weight_format' => array(
580 xl('Display Format for US Weights'),
581 array(
582 '1' => xl('Show pounds as decimal value'),
583 '2' => xl('Show pounds and ounces')
585 '1',
586 xl('Applies to Vitals form')
589 'phone_country_code' => array(
590 xl('Telephone Country Code'),
591 'num',
592 '1', // default = North America
593 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
596 'date_display_format' => array(
597 xl('Date Display Format'),
598 array(
599 '0' => xl('YYYY-MM-DD'),
600 '1' => xl('MM/DD/YYYY'),
601 '2' => xl('DD/MM/YYYY'),
603 '0',
604 xl('Format used to display most dates.')
607 'time_display_format' => array(
608 xl('Time Display Format'),
609 array(
610 '0' => xl('24 hr'),
611 '1' => xl('12 hr'),
613 '0',
614 xl('Format used to display most times.')
617 'gbl_time_zone' => array(
618 xl('Time Zone'),
619 gblTimeZones(),
621 xl('If unassigned will default to php.ini setting for date.timezone.')
624 'currency_decimals' => array(
625 xl('Currency Decimal Places'),
626 array(
627 '0' => xl('0'),
628 '1' => xl('1'),
629 '2' => xl('2'),
631 '2',
632 xl('Number of digits after decimal point for currency, usually 0 or 2.')
635 'currency_dec_point' => array(
636 xl('Currency Decimal Point Symbol'),
637 array(
638 '.' => xl('Period'),
639 ',' => xl('Comma'),
641 '.',
642 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
645 'currency_thousands_sep' => array(
646 xl('Currency Thousands Separator'),
647 array(
648 ',' => xl('Comma'),
649 '.' => xl('Period'),
650 ' ' => xl('Space'),
651 '' => xl('None'),
653 ',',
654 xl('Symbol used to separate thousands for currency.')
657 'gbl_currency_symbol' => array(
658 xl('Currency Designator'),
659 'text', // data type
660 '$', // default
661 xl('Code or symbol to indicate currency')
663 'age_display_format' => array(xl('Age Display Format'),
664 array(
665 '0' => xl('Years or months'),
666 '1' => xl('Years, months and days')
668 '0',
669 xl('Format for age display')
671 'age_display_limit' => array(
672 xl('Age in Years for Display Format Change'),
673 'num',
674 '3',
675 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
677 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
678 'weekend_days' => array(
679 xl('Your weekend days'),
680 array(
681 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
682 '0' => xl('Sunday'),
683 '5' => xl('Friday'),
684 '6' => xl('Saturday'),
685 '5,6' => xl('Friday') . ' - ' . xl('Saturday'),
687 '6,0'
688 , xl('which days are your weekend days?')
693 // Features Tab
695 'Features' => array(
697 'specific_application' => array(
698 xl('Specific Application'),
699 array(
700 '0' => xl('None'),
701 '2' => xl('IPPF'),
702 '3' => xl('Weight loss clinic'),
704 '0', // default
705 xl('Indicator for specialized usage')
708 'inhouse_pharmacy' => array(
709 xl('Drugs and Products'),
710 array(
711 '0' => xl('Do not inventory and sell any products'),
712 '1' => xl('Inventory and sell drugs only'),
713 '2' => xl('Inventory and sell both drugs and non-drug products'),
714 '3' => xl('Products but no prescription drugs and no templates'),
716 '0', // default
717 xl('Option to support inventory and sales of products')
720 'default_visit_category' => [
721 xl('Default Visit Category'),
722 'default_visit_category',
723 '_blank',
724 xl('Define a default visit category'),
727 'disable_chart_tracker' => array(
728 xl('Disable Chart Tracker'),
729 'bool', // data type
730 '0', // default = false
731 xl('Removes the Chart Tracker feature')
734 'disable_immunizations' => array(
735 xl('Disable Immunizations'),
736 'bool', // data type
737 '0', // default = false
738 xl('Removes support for immunizations')
741 'disable_prescriptions' => array(
742 xl('Disable Prescriptions'),
743 'bool', // data type
744 '0', // default = false
745 xl('Removes support for prescriptions')
748 'omit_employers' => array(
749 xl('Omit Employers'),
750 'bool', // data type
751 '0', // default = false
752 xl('Omit employer information in patient demographics')
755 'select_multi_providers' => array(
756 xl('Support Multi-Provider Events'),
757 'bool', // data type
758 '0', // default = false
759 xl('Support calendar events that apply to multiple providers')
762 'disable_non_default_groups' => array(
763 xl('Disable User Groups'),
764 'bool', // data type
765 '1', // default = true
766 xl('Normally this should be checked. Not related to access control.')
769 'ignore_pnotes_authorization' => array(
770 xl('Skip Authorization of Patient Notes'),
771 'bool', // data type
772 '1', // default = true
773 xl('Do not require patient notes to be authorized')
776 'support_encounter_claims' => array(
777 xl('Allow Encounter Claims'),
778 'bool', // data type
779 '0', // default = false
780 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
783 'advance_directives_warning' => array(
784 xl('Advance Directives Warning'),
785 'bool', // data type
786 '0', // default = false
787 xl('Display advance directives in the demographics page.')
790 'configuration_import_export' => array(
791 xl('Configuration Export/Import'),
792 'bool', // data type
793 '0', // default = false
794 xl('Support export/import of configuration data via the Backup page.')
797 'restrict_user_facility' => array(
798 xl('Restrict Users to Facilities'),
799 'bool', // data type
800 '0', // default
801 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
804 'set_facility_cookie' => array(
805 xl('Remember Selected Facility'),
806 'bool', // data type
807 '0', // default
808 xl('Set a facility cookie to remember the selected facility between logins.')
811 'receipts_by_provider' => array(
812 xl('Print Receipts by Provider'),
813 'bool',
814 '0', // default
815 xl('Causes Receipts to Print Encounter/Primary Provider Info')
818 'discount_by_money' => array(
819 xl('Discounts as Monetary Amounts'),
820 'bool', // data type
821 '1', // default = true
822 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
825 'gbl_visit_referral_source' => array(
826 xl('Referral Source for Encounters'),
827 'bool', // data type
828 '0', // default = false
829 xl('A referral source may be specified for each visit.')
832 'gbl_mask_patient_id' => array(
833 xl('Mask for Patient IDs'),
834 'text', // data type
835 '', // default
836 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
839 'gbl_mask_invoice_number' => array(
840 xl('Mask for Invoice Numbers'),
841 'text', // data type
842 '', // default
843 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
846 'gbl_mask_product_id' => array(
847 xl('Mask for Product IDs'),
848 'text', // data type
849 '', // default
850 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
853 'hide_billing_widget' => array(
854 xl('Hide Billing Widget'),
855 'bool', // data type
856 '0', // default = false
857 xl('This will hide the Billing Widget in the Patient Summary screen')
860 'force_billing_widget_open' => array(
861 xl('Force Billing Widget Open'),
862 'bool', // data type
863 '0', // default = false
864 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
867 'activate_ccr_ccd_report' => array(
868 xl('Activate CCR/CCD Reporting'),
869 'bool', // data type
870 '1', // default = true
871 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
874 'hide_document_encryption' => array(
875 xl('Hide Encryption/Decryption Options In Document Management'),
876 'bool', // data type
877 '1', // default = true
878 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
881 'use_custom_immun_list' => array(
882 xl('Use Custom Immunization List'),
883 'bool', // data type
884 '0', // default = true
885 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
888 'amendments' => array(
889 xl('Amendments'),
890 'bool', // data type
891 '1', // default = true
892 xl('Enable amendments feature')
895 'allow_pat_delete' => array(
896 xl('Allow Administrators to Delete Patients'),
897 'bool', // data type
898 '0', // default = false
899 xl('Allow Administrators to Delete Patients')
903 'observation_results_immunization' => array(
904 xl('Immunization Observation Results'),
905 'bool', // data type
906 '1', // default
907 xl('Observation Results in Immunization')
911 // Report Tab
913 'Report' => array(
915 'use_custom_daysheet' => array(
916 xl('Use Custom End of Day Report'),
917 array(
918 '0' => xl('None'),
919 '1' => xl('Print End of Day Report 1'),
920 '2' => xl('Print End of Day Report 2'),
921 '3' => xl('Print End of Day Report 3'),
922 ), // data type
923 '1', // default = Print End of Day Report 1
924 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
927 'daysheet_provider_totals' => array(
928 xl('End of Day by Provider or allow Totals Only'),
929 array(
930 '0' => xl('Provider'),
931 '1' => xl('Totals Only'),
933 '1', // default
934 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
937 'ledger_begin_date' => array(
938 xl('Beginning Date for Ledger Report'),
939 array(
940 'Y1' => xl('One Year Ago'),
941 'Y2' => xl('Two Years Ago'),
942 'M6' => xl('Six Months Ago'),
943 'M3' => xl('Three Months Ago'),
944 'M1' => xl('One Month Ago'),
945 'D1' => xl('One Day Ago'),
947 'Y1', // default = One Year
948 xl('This is the Beginning date for the Ledger Report.')
951 'print_next_appointment_on_ledger' => array(
952 xl('Print the Next Appointment on the Bottom of the Ledger'),
953 'bool', // data type
954 '1', // default = true
955 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
958 'sales_report_invoice' => array(
959 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
960 array(
961 '0' => xl('Invoice Number'),
962 '1' => xl('Patient Name and ID'),
963 '2' => xl('Patient Name and Invoice'),
965 '2', // default = 2
966 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
969 'cash_receipts_report_invoice' => array(
970 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
971 array(
972 '0' => xl('Invoice Number'),
973 '1' => xl('Patient Name'),
975 '0', // default = 0
976 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
981 // Billing Tab
983 'Billing' => array(
985 'ub04_support' => array(
986 xl('Activate UB04/837I Claim Support'),
987 'bool', // data type
988 '0', // default = false
989 xl('Allow institutional claims support.')
992 'top_ubmargin_default' => array(
993 xl('Default top print margin for UB04'),
994 'num', // data type
995 '14', // default
996 xl('This is the default top print margin for UB04. It will adjust the final printed output up or down.')
999 'left_ubmargin_default' => array(
1000 xl('Default left print margin for UB04'),
1001 'num', // data type
1002 '11', // default
1003 xl('This is the default left print margin for UB04. It will adjust the final printed output left or right.')
1006 'cms_top_margin_default' => array(
1007 xl('Default top print margin for CMS 1500'),
1008 'num', // data type
1009 '24', // default
1010 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
1013 'cms_left_margin_default' => array(
1014 xl('Default left print margin for CMS 1500'),
1015 'num', // data type
1016 '20', // default
1017 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
1020 'preprinted_cms_1500' => array(
1021 xl('Prints the CMS 1500 on the Preprinted form'),
1022 'bool', // data type
1023 '0', // default = false
1024 xl('Overlay CMS 1500 on the Preprinted form')
1027 'cms_1500' => array(
1028 xl('CMS 1500 Paper Form Format'),
1029 array(
1030 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
1031 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
1033 '1', // default
1034 xl('This specifies which revision of the form the billing module should generate')
1037 'cms_1500_box_31_format' => array(
1038 xl('CMS 1500: Box 31 Format'),
1039 array(
1040 '0' => xl('Signature on File'),
1041 '1' => xl('Firstname Lastname'),
1042 '2' => xl('None'),
1044 '0', // default
1045 xl('This specifies whether to include date in Box 31.')
1048 'cms_1500_box_31_date' => array(
1049 xl('CMS 1500: Date in Box 31 (Signature)'),
1050 array(
1051 '0' => xl('None'),
1052 '1' => xl('Date of Service'),
1053 '2' => xl('Today'),
1055 '0', // default
1056 xl('This specifies whether to include date in Box 31.')
1059 'default_search_code_type' => array(
1060 xl('Default Search Code Type'),
1061 'all_code_types', // data type
1062 'ICD10', // default
1063 xl('The default code type to search for in the Fee Sheet.')
1066 'default_rendering_provider' => array(
1067 xl('Default Rendering Provider in Fee Sheet'),
1068 array(
1069 '0' => xl('Please Select'),
1070 '1' => xl('Current Provider'),
1071 '2' => xl('Current Logged in User'),
1073 '1',
1074 xl('Default selection for rendering provider in fee sheet.')
1077 'show_payment_history' => array(
1078 xl('Show all payment history in Patient Ledger'),
1079 'bool', // data type
1080 '1', // default = true
1081 xl('Turn on to show all payment history in Patient Ledger')
1084 'support_fee_sheet_line_item_provider' => array(
1085 xl('Support provider in line item in fee sheet'),
1086 'bool', // data type
1087 '0', // default = false
1088 xl('This Enables provider in line item in the fee sheet')
1091 'default_fee_sheet_line_item_provider' => array(
1092 xl('Default to a provider for line item in the fee sheet'),
1093 'bool', // data type
1094 '0', // default = false
1095 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1098 'replicate_justification' => array(
1099 xl('Automatically replicate justification codes in Fee Sheet'),
1100 'bool', // data type
1101 '0', // default = false
1102 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1105 'display_units_in_billing' => array(
1106 xl('Display the Units Column on the Billing Screen'),
1107 'bool', // data type
1108 '0', // default = false
1109 xl('Display the Units Column on the Billing Screen')
1112 'notes_to_display_in_Billing' => array(
1113 xl('Which notes are to be displayed in the Billing Screen'),
1114 array(
1115 '0' => xl('None'),
1116 '1' => xl('Encounter Billing Note'),
1117 '2' => xl('Patient Billing Note'),
1118 '3' => xl('All'),
1120 '3',
1121 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1124 'set_pos_code_encounter' => array(
1125 xl('Set POS code in encounter'),
1126 'bool', // data type
1127 '0', // default = false
1128 xl('This feature will allow the default POS facility code to be overriden from the encounter.')
1131 'use_custom_statement' => array(
1132 xl('Use Custom Statement'),
1133 'bool', // data type
1134 '0', // default = false
1135 xl('This will use the custom Statment showing the description instead of the codes.')
1138 'statement_appearance' => array(
1139 xl('Statement Appearance'),
1140 array(
1141 '0' => xl('Plain Text'),
1142 '1' => xl('Modern/images')
1143 ), // data type
1144 '1', // default = true
1145 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1148 'billing_phone_number' => array(
1149 xl('Custom Billing Phone Number'),
1150 'text', // data type
1152 xl('Phone number for billing inquiries')
1155 'show_aging_on_custom_statement' => array(
1156 xl('Show Aging on Custom Statement'),
1157 'bool', // data type
1158 '0', // default = false
1159 xl('This will Show Aging on the custom Statement.')
1162 'use_statement_print_exclusion' => array(
1163 xl('Allow Statement Exclusions from Printing'),
1164 'bool', // data type
1165 '0', // default = false
1166 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1169 'minimum_amount_to_print' => array(
1170 xl('Total Minimum Amount of Statement to Allow Printing'),
1171 'num', // data type
1172 '1.00',
1173 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1176 'statement_bill_note_print' => array(
1177 xl('Print Patient Billing Note'),
1178 'bool', // data type
1179 '0', // default = false
1180 xl('This will allow printing of the Patient Billing Note on the statements.')
1183 'number_appointments_on_statement' => array(
1184 xl('Number of Appointments on Statement'),
1185 'num', // data type
1186 '0', // default = 0
1187 xl('The Number of Future Appointments to Display on the Statement.')
1190 'statement_message_to_patient' => array(
1191 xl('Print Custom Message'),
1192 'bool', // data type
1193 '0', // default = false
1194 xl('This will allow printing of a custom Message on the statements.')
1197 'statement_msg_text' => array(
1198 xl('Custom Statement message'),
1199 'text', // data type
1201 xl('Text for Custom statement message.')
1204 'use_dunning_message' => array(
1205 xl('Use Custom Dunning Messages'),
1206 'bool', // data type
1207 '0', // default = false
1208 xl('This will allow use of the custom Dunning Messages on the statements.')
1211 'first_dun_msg_set' => array(
1212 xl('Number of days before showing first account message'),
1213 'num', // data type
1214 '30',
1215 xl('Number of days before showing first account message.')
1218 'first_dun_msg_text' => array(
1219 xl('First account message'),
1220 'text', // data type
1222 xl('Text for first account message.')
1225 'second_dun_msg_set' => array(
1226 xl('Number of days before showing second account message'),
1227 'num', // data type
1228 '60',
1229 xl('Number of days before showing second account message')
1232 'second_dun_msg_text' => array(
1233 xl('Second account message'),
1234 'text', // data type
1236 xl('Text for second account message.')
1239 'third_dun_msg_set' => array(
1240 xl('Number of days before showing third account message'),
1241 'num', // data type
1242 '90',
1243 xl('Number of days before showing third account message')
1246 'third_dun_msg_text' => array(
1247 xl('Third account message'),
1248 'text', // data type
1250 xl('Text for third account message.')
1253 'fourth_dun_msg_set' => array(
1254 xl('Number of days before showing fourth account message'),
1255 'num', // data type
1256 '120',
1257 xl('Number of days before showing fourth account message')
1260 'fourth_dun_msg_text' => array(
1261 xl('Fourth account message'),
1262 'text', // data type
1264 xl('Text for fourth account message.')
1267 'fifth_dun_msg_set' => array(
1268 xl('Number of days before showing fifth account message'),
1269 'num', // data type
1270 '150',
1271 xl('Number of days before showing fifth account message')
1274 'fifth_dun_msg_text' => array(
1275 xl('Fifth account message'),
1276 'text', // data type
1278 xl('Text for fifth account message.')
1280 'save_codes_history' => array(
1281 xl('Save codes history'),
1282 'bool', // data type
1283 '1', // default
1284 xl('Save codes history')
1288 // E-Sign Tab
1290 'E-Sign' => array(
1292 'esign_all' => array(
1293 xl('Allows E-Sign on the entire encounter'),
1294 'bool', // data type
1295 '0', // default = false
1296 xl('This will enable signing an entire encounter, rather than individual forms')
1299 'lock_esign_all' => array(
1300 xl('Lock e-signed encounters and their forms'),
1301 'bool', // data type
1302 '0', // default = false
1303 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1306 'esign_individual' => array(
1307 xl('Allows E-Signing Individual Forms'),
1308 'bool', // data type
1309 '1', // default = false
1310 xl('This will enable signing individual forms separately')
1313 'lock_esign_individual' => array(
1314 xl('Lock an e-signed form individually'),
1315 'bool', // data type
1316 '1', // default = false
1317 xl('This will disable the Edit button on any form that is e-signed')
1320 'esign_lock_toggle' => array(
1321 xl('Enable lock toggle'),
1322 'bool', // data type
1323 '0', // default = false
1324 xl('This will give the user the option to lock (separate locking and signing)')
1327 'esign_report_hide_empty_sig' => array(
1328 xl('Hide Empty E-Sign Logs On Report'),
1329 'bool', // data type
1330 '1', // default = false
1331 xl('This will hide empty e-sign logs on the patient report')
1335 //Documents Tab
1336 'Documents' => array(
1338 'document_storage_method' => array(
1339 xl('Document Storage Method'),
1340 array(
1341 '0' => xl('Hard Disk'),
1342 '1' => xl('CouchDB')
1344 '0', // default
1345 xl('Option to save method of document storage.')
1348 'couchdb_host' => array(
1349 xl('CouchDB HostName'),
1350 'text',
1351 'localhost',
1352 xl('CouchDB host'),
1354 'couchdb_user' => array(
1355 xl('CouchDB UserName'),
1356 'text',
1358 xl('Username to connect to CouchDB'),
1360 'couchdb_pass' => array(
1361 xl('CouchDB Password'),
1362 'text',
1364 xl('Password to connect to CouchDB'),
1366 'couchdb_port' => array(
1367 xl('CouchDB Port'),
1368 'text',
1369 '5984',
1370 xl('CouchDB port'),
1372 'couchdb_dbase' => array(
1373 xl('CouchDB Database'),
1374 'text',
1376 xl('CouchDB database name'),
1378 'couchdb_log' => array(
1379 xl('CouchDB Log Enable'),
1380 'bool',
1381 '0',
1382 xl('Enable log for document uploads/downloads to CouchDB'),
1385 'expand_document_tree' => array(
1386 xl('Expand All Document Categories'),
1387 'bool', // data type
1388 '0', // default = false
1389 xl('Expand All Document Categories by Default')
1392 'patient_id_category_name' => array(
1393 xl('Patient ID Category Name'),
1394 'text', // data type
1395 'Patient ID card', // default
1396 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1399 'patient_photo_category_name' => array(
1400 xl('Patient Photo Category Name'),
1401 'text', // data type
1402 'Patient Photograph', // default
1403 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1406 'lab_results_category_name' => array(
1407 xl('Lab Results Category Name'),
1408 'text', // data type
1409 'Lab Report', // default
1410 xl('Document category name for storage of electronically received lab results.')
1413 'gbl_mdm_category_name' => array(
1414 xl('MDM Document Category Name'),
1415 'text', // data type
1416 'Lab Report', // default
1417 xl('Document category name for storage of electronically received MDM documents.')
1419 'generate_doc_thumb' => array(
1420 xl('Generate thumbnail'),
1421 'bool',
1422 '0',
1423 xl('Generate thumbnail images'),
1425 'thumb_doc_max_size' => array(
1426 xl('Thumbnail size'),
1427 'text', // data type
1428 '100', // default
1429 xl('Maximum size of thumbnail file')
1433 // Calendar Tab
1435 'Calendar' => array(
1437 'disable_calendar' => array(
1438 xl('Disable Calendar'),
1439 'bool', // data type
1440 '0', // default
1441 xl('Do not display the calendar.')
1444 'schedule_start' => array(
1445 xl('Calendar Starting Hour'),
1446 'hour',
1447 '8', // default
1448 xl('Beginning hour of day for calendar events.')
1451 'schedule_end' => array(
1452 xl('Calendar Ending Hour'),
1453 'hour',
1454 '17', // default
1455 xl('Ending hour of day for calendar events.')
1458 'calendar_interval' => array(
1459 xl('Calendar Interval'),
1460 array(
1461 '5' => '5',
1462 '10' => '10',
1463 '15' => '15',
1464 '20' => '20',
1465 '30' => '30',
1466 '60' => '60',
1468 '15', // default
1469 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1472 'calendar_view_type' => array(
1473 xl('Default Calendar View'),
1474 array(
1475 'day' => xl('Day'),
1476 'week' => xl('Week'),
1477 'month' => xl('Month'),
1479 'day', // default
1480 xl('This sets the Default Calendar View, Default is Day.')
1482 'first_day_week' => array(
1483 xl('First day in the week'),
1484 array(
1485 '1' => xl('Monday'),
1486 '0' => xl('Sunday'),
1487 '6' => xl('Saturday')
1489 '1',
1490 xl('Your first day of the week.')
1492 'calendar_appt_style' => array(
1493 xl('Appointment Display Style'),
1494 array(
1495 '1' => xl('Last name'),
1496 '2' => xl('Last name, first name'),
1497 '3' => xl('Last name, first name (title)'),
1498 '4' => xl('Last name, first name (title: comments)'),
1500 '2', // default
1501 xl('This determines how appointments display on the calendar.')
1504 'event_color' => array(
1505 xl('Appointment/Event Color'),
1506 array(
1507 '1' => xl('Category Color Schema'),
1508 '2' => xl('Facility Color Schema'),
1509 ), // data type
1510 '1', // default
1511 xl('This determines which color schema used for appointment')
1514 'number_of_appts_to_show' => array(
1515 xl('Appointments - Patient Summary - Number to Display'),
1516 'num',
1517 '10',
1518 xl('Number of Appointments to display in the Patient Summary')
1521 'number_of_group_appts_to_show' => array(
1522 xl('Appointments - Group Summary - Number to Display'),
1523 'num',
1524 '10',
1525 xl('Number of Appointments to display in the Group Summary')
1527 'number_of_ex_appts_to_show' => array(
1528 xl('Excluded Appointments - Tooltip - Number to Display'),
1529 'num',
1530 '15',
1531 xl('Number of Excluded Appointments to display in the Tooltip')
1535 'patient_portal_appt_display_num' => array(
1536 xl('Appointments - Onsite Patient Portal - Number to Display'),
1537 'num',
1538 '20',
1539 xl('Number of Appointments to display in the Onsite Patient Portal')
1542 'appt_display_sets_option' => array(
1543 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1544 'bool', // data type
1545 '1', // default
1546 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1549 'appt_display_sets_color_1' => array(
1550 xl('Appointment Display Sets - Color 1'),
1551 'color_code',
1552 '#FFFFFF',
1553 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).')
1556 'appt_display_sets_color_2' => array(
1557 xl('Appointment Display Sets - Color 2'),
1558 'color_code',
1559 '#E6E6FF',
1560 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).')
1563 'appt_display_sets_color_3' => array(
1564 xl('Appointment Display Sets - Color 3'),
1565 'color_code',
1566 '#E6FFE6',
1567 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1570 'appt_display_sets_color_4' => array(
1571 xl('Appointment Display Sets - Color 4'),
1572 'color_code',
1573 '#FFE6FF',
1574 xl('Color for the last set when not all member appointments are displayed.')
1577 'appt_recurrences_widget' => array(
1578 xl('Recurrent Appointment Display Widget'),
1579 'bool', // data type
1580 '1', // default
1581 xl('Display the recurrent appointment widget in the patient summary.')
1584 'num_past_appointments_to_show' => array(
1585 xl('Past Appointment Display Widget'),
1586 'num', // data type
1587 '0', // default = false
1588 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)')
1591 'docs_see_entire_calendar' => array(
1592 xl('Providers See Entire Calendar'),
1593 'bool', // data type
1594 '0', // default
1595 xl('Check this if you want providers to see all appointments by default and not just their own.')
1598 'auto_create_new_encounters' => array(
1599 xl('Auto-Create New Encounters'),
1600 'bool', // data type
1601 '1', // default
1602 xl('Automatically create a new encounter when an appointment check in status is selected.')
1604 'allow_early_check_in' => array(
1605 xl('Allow Early Check In'),
1606 'bool', // data type
1607 '1', // default
1608 xl("Allow Check In before the appointment's time.")
1610 'disable_pat_trkr' => array(
1611 xl('Disable Patient Flow Board'),
1612 'bool', // data type
1613 '0', // default
1614 xl('Do not display the patient flow board.')
1617 'ptkr_visit_reason' => array(
1618 xl('Show Visit Reason in Patient Flow Board'),
1619 'bool', // data type
1620 '0', // default = false
1621 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1624 'ptkr_show_pid' => array(
1625 xl('Show Patient ID in Patient Flow Board'),
1626 'bool', // data type
1627 '1', // default = true
1628 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1631 'ptkr_show_encounter' => array(
1632 xl('Show Patient Encounter Number in Patient Flow Board'),
1633 'bool', // data type
1634 '1', // default = true
1635 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1638 'pat_trkr_timer' => array(
1639 xl('Patient Flow Board Timer Interval'),
1640 array(
1641 '0' => xl('No automatic refresh'),
1642 '0:10' => '10',
1643 '0:20' => '20',
1644 '0:30' => '30',
1645 '0:40' => '40',
1646 '0:50' => '50',
1647 '0:59' => '60',
1649 '0:20', // default
1650 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1653 'checkout_roll_off' => array(
1654 xl('Number of Minutes to display completed checkouts'),
1655 'num',
1656 '0', // default
1657 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1660 'drug_screen' => array(
1661 xl('Enable Random Drug Testing'),
1662 'bool', // data type
1663 '0', // default
1664 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1667 'drug_testing_percentage' => array(
1668 xl('Percentage of Patients to Drug Test'),
1669 'num',
1670 '33', // default
1671 xl('Percentage of Patients to select for Random Drug Testing.')
1674 'maximum_drug_test_yearly' => array(
1675 xl('Maximum number of times a Patient can be tested in a year'),
1676 'num',
1677 '0', // default
1678 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1681 'submit_changes_for_all_appts_at_once' => array(
1682 xl('Submit Changes For All Appts At Once'),
1683 'bool', // data type
1684 '1', // default
1685 xl('Enables to submit changes for all appointments of a recurrence at once.')
1691 // Security Tab
1693 'Security' => array(
1694 'sql_string_no_show_screen' => array(
1695 xl('Mode - Do Not Show SQL Queries'),
1696 'bool', // data type
1697 '0', // default
1698 xl('Do not allow SQL queries to be outputted to screen.')
1700 'timeout' => array(
1701 xl('Idle Session Timeout Seconds'),
1702 'num', // data type
1703 '7200', // default
1704 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1706 'secure_upload' => array(
1707 xl('Secure Upload Files with White List'),
1708 'bool', // data type
1709 '0', // default
1710 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1712 'secure_password' => array(
1713 xl('Require Strong Passwords'),
1714 'bool', // data type
1715 '0', // default
1716 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1718 'password_history' => array(
1719 xl('Require Unique Passwords'),
1720 'bool', // data type
1721 '0', // default
1722 xl('Means none of last three passwords are allowed when changing a password.')
1724 'password_compatibility' => array(
1725 xl('Permit unsalted passwords'),
1726 'bool', // data type
1727 '1', // default
1728 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')
1731 'password_expiration_days' => array(
1732 xl('Default Password Expiration Days'),
1733 'num', // data type
1734 '0', // default
1735 xl('Default password expiration period in days. 0 means this feature is disabled.')
1738 'password_grace_time' => array(
1739 xl('Password Expiration Grace Period'),
1740 'num', // data type
1741 '0', // default
1742 xl('Period in days where a user may login with an expired password.')
1745 'is_client_ssl_enabled' => array(
1746 xl('Enable Client SSL'),
1747 'bool', // data type
1748 '0', // default
1749 xl('Enable client SSL certificate authentication.')
1752 'certificate_authority_crt' => array(
1753 xl('Path to CA Certificate File'),
1754 'text', // data type
1755 '', // default
1756 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1759 'certificate_authority_key' => array(
1760 xl('Path to CA Key File'),
1761 'text', // data type
1762 '', // default
1763 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1766 'client_certificate_valid_in_days' => array(
1767 xl('Client Certificate Expiration Days'),
1768 'num', // data type
1769 '365', // default
1770 xl('Number of days that the client certificate is valid.')
1773 'Emergency_Login_email_id' => array(
1774 xl('Emergency Login Email Address'),
1775 'text', // data type
1776 '', // default
1777 xl('Email address, if any, to receive emergency login user activation messages.')
1780 'new_validate' => array(
1781 xl('New form validation'),
1782 'bool',
1783 '1',
1784 xl('New form validation')
1787 'allow_multiple_databases' => array(
1788 xl('Allow multiple databases'),
1789 'bool',
1790 '0',
1791 xl('Allow to use with multiple database')
1794 'safe_key_database' => array(
1795 xl('Safe key database'),
1796 'text', // data type
1797 '', // default
1798 xl('Key for multiple database credentials encryption')
1801 'use_active_directory' => array(
1802 xl('Use Active Directory'),
1803 'bool',
1804 '0',
1805 xl('If enabled, uses the specified active directory for login and authentication.')
1808 'account_suffix' => array(
1809 xl('Active Directory - Suffix Of Account'),
1810 'text',
1812 xl('The suffix of the account.')
1815 'base_dn' => array(
1816 xl('Active Directory - Domains Base'),
1817 'text',
1819 xl('Users is the standard windows CN, replace the DC stuff with your domain.')
1822 'domain_controllers' => array(
1823 xl('Active Directory - Domains Controllers'),
1824 'text',
1826 xl('The IP address of your domain controller(s).')
1831 // Notifications Tab
1833 'Notifications' => array(
1835 'patient_reminder_sender_name' => array(
1836 xl('Patient Reminder Sender Name'),
1837 'text', // data type
1838 '', // default
1839 xl('Name of the sender for patient reminders.')
1842 'patient_reminder_sender_email' => array(
1843 xl('Patient Reminder Sender Email'),
1844 'text', // data type
1845 '', // default
1846 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.')
1849 'practice_return_email_path' => array(
1850 xl('Notification Email Address'),
1851 'text', // data type
1852 '', // default
1853 xl('Email address, if any, to receive administrative notifications.')
1856 'EMAIL_METHOD' => array(
1857 xl('Email Transport Method'),
1858 array(
1859 'PHPMAIL' => 'PHPMAIL',
1860 'SENDMAIL' => 'SENDMAIL',
1861 'SMTP' => 'SMTP',
1863 'SMTP', // default
1864 xl('Method for sending outgoing email.')
1867 'SMTP_HOST' => array(
1868 xl('SMTP Server Hostname'),
1869 'text', // data type
1870 'localhost', // default
1871 xl('If SMTP is used, the server`s hostname or IP address.')
1874 'SMTP_PORT' => array(
1875 xl('SMTP Server Port Number'),
1876 'num', // data type
1877 '25', // default
1878 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1881 'SMTP_USER' => array(
1882 xl('SMTP User for Authentication'),
1883 'text', // data type
1884 '', // default
1885 xl('Must be empty if SMTP authentication is not used.')
1888 'SMTP_PASS' => array(
1889 xl('SMTP Password for Authentication'),
1890 'text', // data type
1891 '', // default
1892 xl('Must be empty if SMTP authentication is not used.')
1895 'SMTP_SECURE' => array(
1896 xl('SMTP Security Protocol'),
1897 array(
1898 '' => xl('None'),
1899 'ssl' => 'SSL',
1900 'tls' => 'TLS'
1903 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1906 'EMAIL_NOTIFICATION_HOUR' => array(
1907 xl('Email Notification Hours'),
1908 'num', // data type
1909 '50', // default
1910 xl('Number of hours in advance to send email notifications.')
1913 'SMS_NOTIFICATION_HOUR' => array(
1914 xl('SMS Notification Hours'),
1915 'num', // data type
1916 '50', // default
1917 xl('Number of hours in advance to send SMS notifications.')
1920 'SMS_GATEWAY_USENAME' => array(
1921 xl('SMS Gateway Username'),
1922 'text', // data type
1923 '', // default
1924 xl('Username for SMS Gateway.')
1927 'SMS_GATEWAY_PASSWORD' => array(
1928 xl('SMS Gateway Password'),
1929 'text', // data type
1930 '', // default
1931 xl('Password for SMS Gateway.')
1934 'SMS_GATEWAY_APIKEY' => array(
1935 xl('SMS Gateway API Key'),
1936 'text', // data type
1937 '', // default
1938 xl('API key for SMS Gateway.')
1941 'phone_notification_hour' => array(
1942 xl('Phone Notification Hour'),
1943 'num', // data type
1944 '50', // default
1945 xl('Number of hours in advance to send Phone notification.')
1948 'phone_gateway_username' => array(
1949 xl('Phone Gateway Username'),
1950 'text', // data type
1951 '', // default
1952 xl('Username for Phone Gateway.')
1955 'phone_gateway_password' => array(
1956 xl('Phone Gateway Password'),
1957 'text', // data type
1958 '', // default
1959 xl('Password for Phone Gateway.')
1962 'phone_gateway_url' => array(
1963 xl('Phone Gateway URL'),
1964 'text', // data type
1965 '', // default
1966 xl('URL for Phone Gateway.')
1971 // CDR (Clinical Decision Rules)
1973 'CDR' => array(
1975 'enable_cdr' => array(
1976 xl('Enable Clinical Decisions Rules (CDR)'),
1977 'bool', // data type
1978 '1', // default
1979 xl('Enable Clinical Decisions Rules (CDR)')
1982 'enable_allergy_check' => array(
1983 xl('Enable Allergy Check'),
1984 'bool', // data type
1985 '1', // default
1986 xl('Enable Allergy Check Against Medications and Prescriptions')
1989 'enable_alert_log' => array(
1990 xl('Enable Alert Log'),
1991 'bool', // data type
1992 '1', // default
1993 xl('Enable Alert Logging')
1996 'enable_cdr_new_crp' => array(
1997 xl('Enable Clinical Passive New Reminder(s) Popup'),
1998 'bool', // data type
1999 '1', // default
2000 xl('Enable Clinical Passive New Reminder(s) Popup')
2003 'enable_cdr_crw' => array(
2004 xl('Enable Clinical Passive Reminder Widget'),
2005 'bool', // data type
2006 '1', // default
2007 xl('Enable Clinical Passive Reminder Widget')
2010 'enable_cdr_crp' => array(
2011 xl('Enable Clinical Active Reminder Popup'),
2012 'bool', // data type
2013 '1', // default
2014 xl('Enable Clinical Active Reminder Popup')
2017 'enable_cdr_prw' => array(
2018 xl('Enable Patient Reminder Widget'),
2019 'bool', // data type
2020 '1', // default
2021 xl('Enable Patient Reminder Widget')
2024 'enable_cqm' => array(
2025 xl('Enable CQM Reporting'),
2026 'bool', // data type
2027 '1', // default
2028 xl('Enable Clinical Quality Measure (CQM) Reporting')
2031 'pqri_registry_name' => array(
2032 xl('PQRI Registry Name'),
2033 'text', // data type
2034 'Model Registry', // default
2035 xl('PQRI Registry Name')
2038 'pqri_registry_id' => array(
2039 xl('PQRI Registry ID'),
2040 'text', // data type
2041 '125789123', // default
2042 xl('PQRI Registry ID')
2045 'enable_amc' => array(
2046 xl('Enable AMC Reporting'),
2047 'bool', // data type
2048 '1', // default
2049 xl('Enable Automated Measure Calculations (AMC) Reporting')
2052 'enable_amc_prompting' => array(
2053 xl('Enable AMC Prompting'),
2054 'bool', // data type
2055 '1', // default
2056 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
2059 'enable_amc_tracking' => array(
2060 xl('Enable AMC Tracking'),
2061 'bool', // data type
2062 '1', // default
2063 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
2066 'cdr_report_nice' => array(
2067 xl('CDR Reports Processing Priority'),
2068 array(
2069 '' => xl('Default Priority'),
2070 '5' => xl('Moderate Priority'),
2071 '10' => xl('Moderate/Low Priority'),
2072 '15' => xl('Low Priority'),
2073 '20' => xl('Lowest Priority')
2075 '', // default
2076 xl('Set processing priority for CDR engine based reports.')
2079 'pat_rem_clin_nice' => array(
2080 xl('Patient Reminder Creation Processing Priority'),
2081 array(
2082 '' => xl('Default Priority'),
2083 '5' => xl('Moderate Priority'),
2084 '10' => xl('Moderate/Low Priority'),
2085 '15' => xl('Low Priority'),
2086 '20' => xl('Lowest Priority')
2088 '', // default
2089 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2092 'report_itemizing_standard' => array(
2093 xl('Enable Standard Report Itemization'),
2094 'bool', // data type
2095 '1', // default
2096 xl('Enable Itemization of Standard Clinical Rules Reports')
2099 'report_itemizing_cqm' => array(
2100 xl('Enable CQM Report Itemization'),
2101 'bool', // data type
2102 '1', // default
2103 xl('Enable Itemization of CQM Reports')
2106 'report_itemizing_amc' => array(
2107 xl('Enable AMC Report Itemization'),
2108 'bool', // data type
2109 '1', // default
2110 xl('Enable Itemization of AMC Reports')
2112 'dated_reminders_max_alerts_to_show' => array(
2113 xl('Dated reminders maximum alerts to show'),
2114 'num', // data type
2115 '5', // default
2116 xl('Dated reminders maximum alerts to show')
2118 'patient_birthday_alert' => array(
2119 xl('Alert on patient birthday'),
2120 array(
2121 '0' => xl('No alert'),
2122 '1' => xl('Alert only on birthday'),
2123 '2' => xl('Alert on and after birthday')
2125 '1', // default
2126 xl('Alert on patient birthday')
2128 'patient_birthday_alert_manual_off' => array(
2129 xl('Patient birthday alert requires turning off'),
2130 'bool', // data type
2131 '0', // default
2132 xl('Patient birthday alert requires turning off')
2136 // Logging
2138 'Logging' => array(
2140 'enable_auditlog' => array(
2141 xl('Enable Audit Logging'),
2142 'bool', // data type
2143 '1', // default
2144 xl('Enable Audit Logging')
2147 'audit_events_patient-record' => array(
2148 xl('Audit Logging Patient Record'),
2149 'bool', // data type
2150 '1', // default
2151 xl('Enable logging of patient record modifications.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2154 'audit_events_scheduling' => array(
2155 xl('Audit Logging Scheduling'),
2156 'bool', // data type
2157 '1', // default
2158 xl('Enable logging of scheduling activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2161 'audit_events_order' => array(
2162 xl('Audit Logging Order'),
2163 'bool', // data type
2164 '1', // default
2165 xl('Enable logging of ordering activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2168 'audit_events_security-administration' => array(
2169 xl('Audit Logging Security Administration'),
2170 'bool', // data type
2171 '1', // default
2172 xl('Enable logging of security and administration activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2175 'audit_events_backup' => array(
2176 xl('Audit Logging Backups'),
2177 'bool', // data type
2178 '1', // default
2179 xl('Enable logging of backup related activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2182 'audit_events_other' => array(
2183 xl('Audit Logging Miscellaneous'),
2184 'bool', // data type
2185 '1', // default
2186 xl('Enable logging of miscellaneous activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2189 'audit_events_query' => array(
2190 xl('Audit Logging SELECT Query'),
2191 'bool', // data type
2192 '0', // default
2193 xl('Enable logging of all SQL SELECT queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2196 'audit_events_cdr' => array(
2197 xl('Audit CDR Engine Queries'),
2198 'bool', // data type
2199 '0', // default
2200 xl('Enable logging of CDR Engine Queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2203 'enable_atna_audit' => array(
2204 xl('Enable ATNA Auditing'),
2205 'bool', // data type
2206 '0', // default
2207 xl('Enable Audit Trail and Node Authentication (ATNA).')
2210 'atna_audit_host' => array(
2211 xl('ATNA audit host'),
2212 'text', // data type
2213 '', // default
2214 xl('The hostname of the ATNA audit repository machine.')
2217 'atna_audit_port' => array(
2218 xl('ATNA audit port'),
2219 'text', // data type
2220 '6514', // default
2221 xl('Listening port of the RFC 5425 TLS syslog server.')
2224 'atna_audit_localcert' => array(
2225 xl('ATNA audit local certificate'),
2226 'text', // data type
2227 '', // default
2228 xl('Certificate to send to RFC 5425 TLS syslog server.')
2231 'atna_audit_cacert' => array(
2232 xl('ATNA audit CA certificate'),
2233 'text', // data type
2234 '', // default
2235 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2238 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
2239 'enable_auditlog_encryption' => array(
2240 xl('Enable Audit Log Encryption'),
2241 'bool', // data type
2242 '0', // default
2243 xl('Enable Audit Log Encryption')
2246 'billing_log_option' => array(
2247 xl('Billing Log Option'),
2248 array(
2249 '1' => xl('Billing Log Append'),
2250 '2' => xl('Billing Log Overwrite')
2252 '1', // default
2253 xl('Billing log setting to append or overwrite the log file.')
2256 'gbl_print_log_option' => array(
2257 xl('Printing Log Option'),
2258 array(
2259 '0' => xl('No logging'),
2260 '1' => xl('Hide print feature'),
2261 '2' => xl('Log entire document'),
2263 '0', // default
2264 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2269 // Miscellaneous Tab
2271 'Miscellaneous' => array(
2273 'mysql_bin_dir' => array(
2274 xl('Path to MySQL Binaries'),
2275 'text', // data type
2276 $mysql_bin_dir, // default
2277 xl('Full path to directory containing MySQL executables.')
2280 'perl_bin_dir' => array(
2281 xl('Path to Perl Binaries'),
2282 'text', // data type
2283 $perl_bin_dir, // default
2284 xl('Full path to directory containing Perl executables.')
2287 'temporary_files_dir' => array(
2288 xl('Path to Temporary Files'),
2289 'text', // data type
2290 $temporary_files_dir, // default
2291 xl('Full path to directory used for temporary files.')
2294 'backup_log_dir' => array(
2295 xl('Path for Event Log Backup'),
2296 'text', // data type
2297 $backup_log_dir, // default
2298 xl('Full path to directory for event log backup.')
2301 'state_data_type' => array(
2302 xl('State Data Type'),
2303 array(
2304 '2' => xl('Text field'),
2305 '1' => xl('Single-selection list'),
2306 '26' => xl('Single-selection list with ability to add to the list'),
2308 '26', // default
2309 xl('Field type to use for employer or subscriber state in demographics.')
2312 'state_list' => array(
2313 xl('State list'),
2314 'text', // data type
2315 'state', // default
2316 xl('List used by above State Data Type option.')
2319 'state_custom_addlist_widget' => array(
2320 xl('State List Widget Custom Fields'),
2321 'bool', // data type
2322 '1', // default
2323 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2326 'country_data_type' => array(
2327 xl('Country Data Type'),
2328 array(
2329 '2' => xl('Text field'),
2330 '1' => xl('Single-selection list'),
2331 '26' => xl('Single-selection list with ability to add to the list'),
2333 '26', // default
2334 xl('Field type to use for employer or subscriber country in demographics.')
2337 'country_list' => array(
2338 xl('Country list'),
2339 'text', // data type
2340 'country', // default
2341 xl('List used by above Country Data Type option.')
2344 'print_command' => array(
2345 xl('Print Command'),
2346 'text', // data type
2347 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2348 xl('Shell command for printing from the server.')
2351 'default_chief_complaint' => array(
2352 xl('Default Reason for Visit'),
2353 'text', // data type
2355 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2358 'default_new_encounter_form' => array(
2359 xl('Default Encounter Form ID'),
2360 'text', // data type
2362 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
2365 'MedicareReferrerIsRenderer' => array(
2366 xl('Medicare Referrer Is Renderer'),
2367 'bool', // data type
2368 '0', // default = true
2369 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2372 'post_to_date_benchmark' => array(
2373 xl('Financial Close Date (yyyy-mm-dd)'),
2374 'text', // data type
2375 date('Y-m-d', time() - (10 * 24 * 60 * 60)), // default
2376 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2379 'enable_hylafax' => array(
2380 xl('Enable Hylafax Support'),
2381 'bool', // data type
2382 '0', // default
2383 xl('Enable Hylafax Support')
2386 'hylafax_server' => array(
2387 xl('Hylafax Server'),
2388 'text', // data type
2389 'localhost', // default
2390 xl('Hylafax server hostname.')
2393 'hylafax_basedir' => array(
2394 xl('Hylafax Directory'),
2395 'text', // data type
2396 '/var/spool/hylafax', // default
2397 xl('Location where Hylafax stores faxes.')
2400 'hylafax_enscript' => array(
2401 xl('Hylafax Enscript Command'),
2402 'text', // data type
2403 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2404 xl('Enscript command used by Hylafax.')
2407 'enable_scanner' => array(
2408 xl('Enable Scanner Support'),
2409 'bool', // data type
2410 '0', // default
2411 xl('Enable Scanner Support')
2414 'scanner_output_directory' => array(
2415 xl('Scanner Directory'),
2416 'text', // data type
2417 '/mnt/scan_docs', // default
2418 xl('Location where scans are stored.')
2422 // Portal Tab
2424 'Portal' => array(
2426 'portal_onsite_two_enable' => array(
2427 xl('Enable Version 2 Onsite Patient Portal'),
2428 'bool', // data type
2429 '0',
2430 xl('Enable Version 2 Onsite Patient Portal.')
2433 'portal_onsite_two_address' => array(
2434 xl('Version 2 Onsite Patient Portal Site Address'),
2435 'text', // data type
2436 'https://your_web_site.com/openemr/portal',
2437 xl('Website link for the Version 2 Onsite Patient Portal.')
2440 'portal_onsite_two_basepath' => array(
2441 xl('Portal Uses Server Base Path (internal)'),
2442 'bool',
2443 '0',
2444 xl('Use servers protocol and host in urls (portal internal only).')
2447 'portal_onsite_two_register' => array(
2448 xl('Allow Version 2 Onsite New Patient Registration Widget'),
2449 'bool', // data type
2450 '1',
2451 xl('Enable Version 2 Onsite Patient Portal new patient to self register.')
2454 'portal_two_payments' => array(
2455 xl('Allow Version 2 Onsite Online Payments'),
2456 'bool', // data type
2457 '0',
2458 xl('Allow Version 2 Onsite Patient to make payments online.')
2461 'portal_two_pass_reset' => array(
2462 xl('Allow Version 2 Patients to Reset Credentials'),
2463 'bool', // data type
2464 '0',
2465 xl('Patient may change their logon from portal login dialog.')
2468 'portal_onsite_enable' => array(
2469 xl('Enable Version 1 Onsite Patient Portal'),
2470 'bool', // data type
2471 '0',
2472 xl('Enable Version 1 Onsite Patient Portal.')
2475 'portal_onsite_address' => array(
2476 xl('Version 1 Onsite Patient Portal Site Address'),
2477 'text', // data type
2478 'https://your_web_site.com/openemr/patients',
2479 xl('Website link for the Version 1 Onsite Patient Portal.')
2482 'portal_onsite_document_download' => array(
2483 xl('Enable Onsite Patient Portal Document Download'),
2484 'bool', // data type
2485 '1',
2486 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2489 'portal_offsite_enable' => array(
2490 xl('Enable Offsite Patient Portal'),
2491 'bool', // data type
2492 '0',
2493 xl('Enable Offsite Patient Portal.')
2495 'portal_offsite_providerid' => array(
2496 xl('Offsite Patient Portal Provider ID'),
2497 'text', // data type
2499 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2502 'portal_offsite_username' => array(
2503 xl('Offsite Patient Portal Username'),
2504 'text', // data type
2506 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2509 'portal_offsite_password' => array(
2510 xl('Offsite Patient Portal Password'),
2511 'pwd', // data type
2513 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2516 'portal_offsite_address' => array(
2517 xl('Offsite Patient Portal Site Address'),
2518 'text', // data type
2519 'https://ssh.mydocsportal.com/provider.php',
2520 xl('Offsite Https link for the Patient Portal.')
2523 'portal_offsite_address_patient_link' => array(
2524 xl('Offsite Patient Portal Site Address (Patient Link)'),
2525 'text', // data type
2526 'https://ssh.mydocsportal.com',
2527 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2530 // Currently the "CMS Portal" supports WordPress. Other Content Management
2531 // Systems may be supported in the future.
2533 'gbl_portal_cms_enable' => array(
2534 xl('Enable CMS Portal'),
2535 'bool', // data type
2536 '0',
2537 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2540 'gbl_portal_cms_address' => array(
2541 xl('CMS Portal Site Address'),
2542 'text', // data type
2543 'https://your_cms_site.com/',
2544 xl('URL for the WordPress site that supports the portal')
2547 'gbl_portal_cms_username' => array(
2548 xl('CMS Portal Username'),
2549 'text', // data type
2551 xl('Login name of WordPress user for portal access')
2554 'gbl_portal_cms_password' => array(
2555 xl('CMS Portal Password'),
2556 'text', // data type
2558 xl('Password for the above user')
2563 // Connectors Tab
2565 'Connectors' => array(
2567 'fhir_enable' => array(
2568 xl('Enable FHIR Provider Client Service'),
2569 array(
2570 0 => xl('Off: No Service.'),
2571 1 => xl('On: HAPI FHIR.'),
2572 2 => xl('On: Smart on FHIR.'),
2574 '0',
2575 xl('Enable FHIR Provider Client Service')
2578 'fhir_base_url' => array(
2579 xl('FHIR Server Base Address'),
2580 'text',
2581 'https://hapi.fhir.org/baseDstu3/',
2582 xl('Base URL for FHIR Server. Url should end with /')
2585 'erx_enable' => array(
2586 xl('Enable NewCrop eRx Service'),
2587 'bool',
2588 '0',
2589 xl('Enable NewCrop eRx Service.') . ' ' .
2590 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.')
2593 'erx_newcrop_path' => array(
2594 xl('NewCrop eRx Site Address'),
2595 'text',
2596 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2597 xl('URL for NewCrop eRx Site Address.')
2600 'erx_newcrop_path_soap' => array(
2601 xl('NewCrop eRx Web Service Address'),
2602 'text',
2603 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2604 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2607 'erx_soap_ttl_allergies' => array(
2608 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2609 'num',
2610 '21600',
2611 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2614 'erx_soap_ttl_medications' => array(
2615 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2616 'num',
2617 '21600',
2618 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2621 'erx_account_partner_name' => array(
2622 xl('NewCrop eRx Partner Name'),
2623 'text',
2625 xl('Partner Name issued for NewCrop eRx service.')
2628 'erx_account_name' => array(
2629 xl('NewCrop eRx Name'),
2630 'text',
2632 xl('Account Name issued for NewCrop eRx service.')
2635 'erx_account_password' => array(
2636 xl('NewCrop eRx Password'),
2637 'pass',
2639 xl('Account Password issued for NewCrop eRx service.')
2642 'erx_account_id' => array(
2643 xl('NewCrop eRx Account Id'),
2644 'text',
2645 '1',
2646 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2649 'erx_upload_active' => array(
2650 xl('Only upload active prescriptions'),
2651 'bool',
2652 '0',
2653 xl('Only upload active prescriptions to NewCrop eRx.')
2656 'erx_import_status_message' => array(
2657 xl('Enable NewCrop eRx import status message'),
2658 'bool',
2659 '0',
2660 xl('Enable import status message after visiting NewCrop eRx.')
2663 'erx_medication_display' => array(
2664 xl('Do not display NewCrop eRx Medications uploaded'),
2665 'bool',
2666 '0',
2667 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2670 'erx_allergy_display' => array(
2671 xl('Do not display NewCrop eRx Allergy uploaded'),
2672 'bool',
2673 '0',
2674 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2677 'erx_default_patient_country' => array(
2678 xl('NewCrop eRx Default Patient Country'),
2679 array(
2680 '' => '',
2681 'US' => xl('USA'),
2682 'CA' => xl('Canada'),
2683 'MX' => xl('Mexico'),
2686 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2689 'erx_debug_setting' => array(
2690 xl('NewCrop eRx Debug Setting'),
2691 array(
2692 0 => xl('None'),
2693 1 => xl('Request Only'),
2694 2 => xl('Response Only'),
2695 3 => xl('Request & Response'),
2697 '0',
2698 xl('Log all NewCrop eRx Requests and / or Responses.'),
2701 'weno_rx_enable' => array(
2702 xl('Enable Weno eRx Service'),
2703 'bool',
2704 '0',
2705 xl('Enable Weno eRx Service.') . ' ' . xl('Contact Open Med Practice, www.openmedpractice.com for subscribing to the Weno Free eRx service.')
2708 'weno_account_id' => array(
2709 xl('Weno eRx Account Id'),
2710 'text',
2712 xl('Account Id issued for Weno eRx service.')
2715 'weno_account_pass' => array(
2716 xl('Weno eRx Account Pass'),
2717 'text',
2719 xl('Account Id issued for Weno eRx service.')
2722 'weno_provider_id' => array(
2723 xl('Weno eRx Clinic ID'),
2724 'text',
2726 xl('Account Id issued for Your clinics eRx service.')
2729 'ccda_alt_service_enable' => array(
2730 xl('Enable C-CDA Alternate Service'),
2731 array(
2732 0 => xl('Off'),
2733 1 => xl('Care Coordination Only'),
2734 2 => xl('Portal Only'),
2735 3 => xl('Both'),
2737 '0',
2738 xl('Enable C-CDA Alternate Service')
2741 'phimail_enable' => array(
2742 xl('Enable phiMail Direct Messaging Service'),
2743 'bool', // data type
2744 '0',
2745 xl('Enable phiMail Direct Messaging Service')
2748 'phimail_server_address' => array(
2749 xl('phiMail Server Address'),
2750 'text', // data type
2751 'https://phimail.example.com:32541',
2752 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2755 'phimail_username' => array(
2756 xl('phiMail Username'),
2757 'text', // data type
2759 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2762 'phimail_password' => array(
2763 xl('phiMail Password'),
2764 'pass', // data type
2766 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2769 'phimail_notify' => array(
2770 xl('phiMail notification user'),
2771 'text', // data type
2772 'admin',
2773 xl('This user will receive notification of new incoming Direct messages')
2776 'phimail_interval' => array(
2777 xl('phiMail Message Check Interval (minutes)'),
2778 'num', // data type
2779 '5',
2780 xl('Interval between message checks (set to zero for manual checks only)')
2783 'phimail_ccd_enable' => array(
2784 xl('phiMail Allow CCD Send'),
2785 'bool', // data type
2786 '0',
2787 xl('phiMail Allow CCD Send')
2790 'phimail_ccr_enable' => array(
2791 xl('phiMail Allow CCR Send'),
2792 'bool', // data type
2793 '0',
2794 xl('phiMail Allow CCR Send')
2798 'Rx' => array(
2799 'rx_enable_DEA' => array(
2800 xl('Rx Enable DEA #'),
2801 'bool', // data type
2802 '1',
2803 xl('Rx Enable DEA #')
2805 'rx_show_DEA' => array(
2806 xl('Rx Show DEA #'),
2807 'bool', // data type
2808 '0',
2809 xl('Rx Show DEA #')
2811 'rx_enable_NPI' => array(
2812 xl('Rx Enable NPI'),
2813 'bool', // data type
2814 '0',
2815 xl('Rx Enable NPI')
2817 'rx_show_NPI' => array(
2818 xl('Rx Show NPI'),
2819 'bool', // data type
2820 '0',
2821 xl('Rx Show NPI')
2823 'rx_enable_SLN' => array(
2824 xl('Rx Enable State Lic. #'),
2825 'bool', // data type
2826 '0',
2827 xl('Rx Enable State Lic. #')
2829 'rx_show_SLN' => array(
2830 xl('Rx Show State Lic. #'),
2831 'bool', // data type
2832 '0',
2833 xl('Rx Show State Lic. #')
2835 'rx_show_drug-drug' => array(
2836 xl('Rx NLM Drug-Drug'),
2837 'bool', // data type
2838 '0',
2839 xl('Rx NLM Drug-Drug')
2841 'rx_paper_size' => array(
2842 xl('Rx Paper Size'), // descriptive name
2843 array(
2844 'LETTER' => xl('Letter Paper Size'),
2845 'LEGAL' => xl('Legal Paper Size'),
2846 'FOLIO' => xl('Folio Paper Size'),
2847 'EXECUTIVE' => xl('Executive Paper Size'),
2848 '4A0' => ('4A0' . " " . xl('Paper Size')),
2849 '2A0' => ('2A0' . " " . xl('Paper Size')),
2850 'A0' => ('A0' . " " . xl('Paper Size')),
2851 'A1' => ('A1' . " " . xl('Paper Size')),
2852 'A2' => ('A2' . " " . xl('Paper Size')),
2853 'A3' => ('A3' . " " . xl('Paper Size')),
2854 'A4' => ('A4' . " " . xl('Paper Size')),
2855 'A5' => ('A5' . " " . xl('Paper Size')),
2856 'A6' => ('A6' . " " . xl('Paper Size')),
2857 'A7' => ('A7' . " " . xl('Paper Size')),
2858 'A8' => ('A8' . " " . xl('Paper Size')),
2859 'A9' => ('A9' . " " . xl('Paper Size')),
2860 'A10' => ('A10' . " " . xl('Paper Size')),
2861 'B0' => ('B0' . " " . xl('Paper Size')),
2862 'B1' => ('B1' . " " . xl('Paper Size')),
2863 'B2' => ('B2' . " " . xl('Paper Size')),
2864 'B3' => ('B3' . " " . xl('Paper Size')),
2865 'B4' => ('B4' . " " . xl('Paper Size')),
2866 'B5' => ('B5' . " " . xl('Paper Size')),
2867 'B6' => ('B6' . " " . xl('Paper Size')),
2868 'B7' => ('B7' . " " . xl('Paper Size')),
2869 'B8' => ('B8' . " " . xl('Paper Size')),
2870 'B9' => ('B9' . " " . xl('Paper Size')),
2871 'B10' => ('B10' . " " . xl('Paper Size')),
2872 'C0' => ('C0' . " " . xl('Paper Size')),
2873 'C1' => ('C1' . " " . xl('Paper Size')),
2874 'C2' => ('C2' . " " . xl('Paper Size')),
2875 'C3' => ('C3' . " " . xl('Paper Size')),
2876 'C4' => ('C4' . " " . xl('Paper Size')),
2877 'C5' => ('C5' . " " . xl('Paper Size')),
2878 'C6' => ('C6' . " " . xl('Paper Size')),
2879 'C7' => ('C7' . " " . xl('Paper Size')),
2880 'C8' => ('C8' . " " . xl('Paper Size')),
2881 'C9' => ('C9' . " " . xl('Paper Size')),
2882 'C10' => ('C10' . " " . xl('Paper Size')),
2883 'RA0' => ('RA0' . " " . xl('Paper Size')),
2884 'RA1' => ('RA1' . " " . xl('Paper Size')),
2885 'RA2' => ('RA2' . " " . xl('Paper Size')),
2886 'RA3' => ('RA3' . " " . xl('Paper Size')),
2887 'RA4' => ('RA4' . " " . xl('Paper Size')),
2888 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2889 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2890 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2891 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2892 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2894 'LETTER', // default = tree menu
2895 xl('Rx Paper Size')
2897 'rx_left_margin' => array(
2898 xl('Rx Left Margin (px)'),
2899 'num',
2900 '30',
2901 xl('Rx Left Margin (px)')
2903 'rx_right_margin' => array(
2904 xl('Rx Right Margin (px)'),
2905 'num',
2906 '30',
2907 xl('Rx Right Margin (px)')
2909 'rx_top_margin' => array(
2910 xl('Rx Top Margin (px)'),
2911 'num',
2912 '72',
2913 xl('Rx Top Margin (px)')
2915 'rx_bottom_margin' => array(
2916 xl('Rx Bottom Margin (px)'),
2917 'num',
2918 '30',
2919 xl('Rx Bottom Margin (px)')
2923 'PDF' => array(
2924 'pdf_layout' => array(
2925 xl('Layout'),
2926 array(
2927 'P' => xl('Portrait'),
2928 'L' => xl('Landscape')
2930 'P', //defaut
2931 xl("Choose Layout Direction"),
2933 'pdf_language' => array(
2934 xl('PDF Language'),
2935 array(
2936 'aa' => xl('Afar'),
2937 'af' => xl('Afrikaans'),
2938 'ak' => xl('Akan'),
2939 'sq' => xl('Albanian'),
2940 'am' => xl('Amharic'),
2941 'ar' => xl('Arabic'),
2942 'an' => xl('Aragonese'),
2943 'hy' => xl('Armenian'),
2944 'as' => xl('Assamese'),
2945 'av' => xl('Avaric'),
2946 'ae' => xl('Avestan'),
2947 'ay' => xl('Aymara'),
2948 'az' => xl('Azerbaijani'),
2949 'bm' => xl('Bambara'),
2950 'ba' => xl('Bashkir'),
2951 'eu' => xl('Basque'),
2952 'be' => xl('Belarusian'),
2953 'bn' => xl('Bengali- Bangla'),
2954 'bh' => xl('Bihari'),
2955 'bi' => xl('Bislama'),
2956 'bs' => xl('Bosnian'),
2957 'br' => xl('Breton'),
2958 'bg' => xl('Bulgarian'),
2959 'my' => xl('Burmese'),
2960 'ca' => xl('Catalan- Valencian'),
2961 'ch' => xl('Chamorro'),
2962 'ce' => xl('Chechen'),
2963 'ny' => xl('Chichewa- Chewa- Nyanja'),
2964 'zh' => xl('Chinese'),
2965 'cv' => xl('Chuvash'),
2966 'kw' => xl('Cornish'),
2967 'co' => xl('Corsican'),
2968 'cr' => xl('Cree'),
2969 'hr' => xl('Croatian'),
2970 'cs' => xl('Czech'),
2971 'da' => xl('Danish'),
2972 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2973 'nl' => xl('Dutch'),
2974 'dz' => xl('Dzongkha'),
2975 'en' => xl('English'),
2976 'eo' => xl('Esperanto'),
2977 'et' => xl('Estonian'),
2978 'ee' => xl('Ewe'),
2979 'fo' => xl('Faroese'),
2980 'fj' => xl('Fijian'),
2981 'fi' => xl('Finnish'),
2982 'fr' => xl('French'),
2983 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2984 'gl' => xl('Galician'),
2985 'ka' => xl('Georgian'),
2986 'de' => xl('German'),
2987 'el' => xl('Greek, Modern'),
2988 'gn' => xl('Guarani'),
2989 'gu' => xl('Gujarati'),
2990 'ht' => xl('Haitian- Haitian Creole'),
2991 'ha' => xl('Hausa'),
2992 'he' => xl('Hebrew (modern)'),
2993 'hz' => xl('Herero'),
2994 'hi' => xl('Hindi'),
2995 'ho' => xl('Hiri Motu'),
2996 'hu' => xl('Hungarian'),
2997 'ia' => xl('Interlingua'),
2998 'id' => xl('Indonesian'),
2999 'ie' => xl('Interlingue'),
3000 'ga' => xl('Irish'),
3001 'ig' => xl('Igbo'),
3002 'ik' => xl('Inupiaq'),
3003 'io' => xl('Ido'),
3004 'is' => xl('Icelandic'),
3005 'it' => xl('Italian'),
3006 'iu' => xl('Inuktitut'),
3007 'ja' => xl('Japanese'),
3008 'jv' => xl('Javanese'),
3009 'kl' => xl('Kalaallisut, Greenlandic'),
3010 'kn' => xl('Kannada'),
3011 'kr' => xl('Kanuri'),
3012 'ks' => xl('Kashmiri'),
3013 'kk' => xl('Kazakh'),
3014 'km' => xl('Khmer'),
3015 'ki' => xl('Kikuyu, Gikuyu'),
3016 'rw' => xl('Kinyarwanda'),
3017 'ky' => xl('Kyrgyz'),
3018 'kv' => xl('Komi'),
3019 'kg' => xl('Kongo'),
3020 'ko' => xl('Korean'),
3021 'ku' => xl('Kurdish'),
3022 'kj' => xl('Kwanyama, Kuanyama'),
3023 'la' => xl('Latin'),
3024 'lb' => xl('Luxembourgish, Letzeburgesch'),
3025 'lg' => xl('Ganda'),
3026 'li' => xl('Limburgish, Limburgan, Limburger'),
3027 'ln' => xl('Lingala'),
3028 'lo' => xl('Lao'),
3029 'lt' => xl('Lithuanian'),
3030 'lu' => xl('Luba-Katanga'),
3031 'lv' => xl('Latvian'),
3032 'gv' => xl('Manx'),
3033 'mk' => xl('Macedonian'),
3034 'mg' => xl('Malagasy'),
3035 'ms' => xl('Malay'),
3036 'ml' => xl('Malayalam'),
3037 'mt' => xl('Maltese'),
3038 'mi' => xl('Maori'),
3039 'mr' => xl('Marathi (Marathi)'),
3040 'mh' => xl('Marshallese'),
3041 'mn' => xl('Mongolian'),
3042 'na' => xl('Nauru'),
3043 'nv' => xl('Navajo, Navaho'),
3044 'nb' => xl('Norwegian Bokmal'),
3045 'nd' => xl('North Ndebele'),
3046 'ne' => xl('Nepali'),
3047 'ng' => xl('Ndonga'),
3048 'nn' => xl('Norwegian Nynorsk'),
3049 'no' => xl('Norwegian'),
3050 'ii' => xl('Nuosu'),
3051 'nr' => xl('South Ndebele'),
3052 'oc' => xl('Occitan'),
3053 'oj' => xl('Ojibwe, Ojibwa'),
3054 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
3055 'om' => xl('Oromo'),
3056 'or' => xl('Oriya'),
3057 'os' => xl('Ossetian, Ossetic'),
3058 'pa' => xl('Panjabi, Punjabi'),
3059 'pi' => xl('Pali'),
3060 'fa' => xl('Persian (Farsi)'),
3061 'pl' => xl('Polish'),
3062 'ps' => xl('Pashto, Pushto'),
3063 'pt' => xl('Portuguese'),
3064 'qu' => xl('Quechua'),
3065 'rm' => xl('Romansh'),
3066 'rn' => xl('Kirundi'),
3067 'ro' => xl('Romanian'),
3068 'ru' => xl('Russian'),
3069 'sa' => xl('Sanskrit (Samskrta)'),
3070 'sc' => xl('Sardinian'),
3071 'sd' => xl('Sindhi'),
3072 'se' => xl('Northern Sami'),
3073 'sm' => xl('Samoan'),
3074 'sg' => xl('Sango'),
3075 'sr' => xl('Serbian'),
3076 'gd' => xl('Scottish Gaelic- Gaelic'),
3077 'sn' => xl('Shona'),
3078 'si' => xl('Sinhala, Sinhalese'),
3079 'sk' => xl('Slovak'),
3080 'sl' => xl('Slovene'),
3081 'so' => xl('Somali'),
3082 'st' => xl('Southern Sotho'),
3083 'es' => xl('Spanish- Castilian'),
3084 'su' => xl('Sundanese'),
3085 'sw' => xl('Swahili'),
3086 'ss' => xl('Swati'),
3087 'sv' => xl('Swedish'),
3088 'ta' => xl('Tamil'),
3089 'te' => xl('Telugu'),
3090 'tg' => xl('Tajik'),
3091 'th' => xl('Thai'),
3092 'ti' => xl('Tigrinya'),
3093 'bo' => xl('Tibetan Standard, Tibetan, Central'),
3094 'tk' => xl('Turkmen'),
3095 'tl' => xl('Tagalog'),
3096 'tn' => xl('Tswana'),
3097 'to' => xl('Tonga (Tonga Islands)'),
3098 'tr' => xl('Turkish'),
3099 'ts' => xl('Tsonga'),
3100 'tt' => xl('Tatar'),
3101 'tw' => xl('Twi'),
3102 'ty' => xl('Tahitian'),
3103 'ug' => xl('Uyghur, Uighur'),
3104 'uk' => xl('Ukrainian'),
3105 'ur' => xl('Urdu'),
3106 'uz' => xl('Uzbek'),
3107 've' => xl('Venda'),
3108 'vi' => xl('Vietnamese'),
3109 'vo' => xl('Volapuk'),
3110 'wa' => xl('Walloon'),
3111 'cy' => xl('Welsh'),
3112 'wo' => xl('Wolof'),
3113 'fy' => xl('Western Frisian'),
3114 'xh' => xl('Xhosa'),
3115 'yi' => xl('Yiddish'),
3116 'yo' => xl('Yoruba'),
3117 'za' => xl('Zhuang, Chuang'),
3118 'zu' => xl('Zulu'),
3120 'en', // default English
3121 xl('Choose PDF languange Preference'),
3123 'pdf_size' => array(
3124 xl('Paper Size'), // Descriptive Name
3125 array(
3126 'LETTER' => xl('Letter Paper Size'),
3127 'LEGAL' => xl('Legal Paper Size'),
3128 'FOLIO' => xl('Folio Paper Size'),
3129 'EXECUTIVE' => xl('Executive Paper Size'),
3130 '4A0' => ('4A0' . " " . xl('Paper Size')),
3131 '2A0' => ('2A0' . " " . xl('Paper Size')),
3132 'A0' => ('A0' . " " . xl('Paper Size')),
3133 'A1' => ('A1' . " " . xl('Paper Size')),
3134 'A2' => ('A2' . " " . xl('Paper Size')),
3135 'A3' => ('A3' . " " . xl('Paper Size')),
3136 'A4' => ('A4' . " " . xl('Paper Size')),
3137 'A5' => ('A5' . " " . xl('Paper Size')),
3138 'A6' => ('A6' . " " . xl('Paper Size')),
3139 'A7' => ('A7' . " " . xl('Paper Size')),
3140 'A8' => ('A8' . " " . xl('Paper Size')),
3141 'A9' => ('A9' . " " . xl('Paper Size')),
3142 'A10' => ('A10' . " " . xl('Paper Size')),
3143 'B0' => ('B0' . " " . xl('Paper Size')),
3144 'B1' => ('B1' . " " . xl('Paper Size')),
3145 'B2' => ('B2' . " " . xl('Paper Size')),
3146 'B3' => ('B3' . " " . xl('Paper Size')),
3147 'B4' => ('B4' . " " . xl('Paper Size')),
3148 'B5' => ('B5' . " " . xl('Paper Size')),
3149 'B6' => ('B6' . " " . xl('Paper Size')),
3150 'B7' => ('B7' . " " . xl('Paper Size')),
3151 'B8' => ('B8' . " " . xl('Paper Size')),
3152 'B9' => ('B9' . " " . xl('Paper Size')),
3153 'B10' => ('B10' . " " . xl('Paper Size')),
3154 'C0' => ('C0' . " " . xl('Paper Size')),
3155 'C1' => ('C1' . " " . xl('Paper Size')),
3156 'C2' => ('C2' . " " . xl('Paper Size')),
3157 'C3' => ('C3' . " " . xl('Paper Size')),
3158 'C4' => ('C4' . " " . xl('Paper Size')),
3159 'C5' => ('C5' . " " . xl('Paper Size')),
3160 'C6' => ('C6' . " " . xl('Paper Size')),
3161 'C7' => ('C7' . " " . xl('Paper Size')),
3162 'C8' => ('C8' . " " . xl('Paper Size')),
3163 'C9' => ('C9' . " " . xl('Paper Size')),
3164 'C10' => ('C10' . " " . xl('Paper Size')),
3165 'RA0' => ('RA0' . " " . xl('Paper Size')),
3166 'RA1' => ('RA1' . " " . xl('Paper Size')),
3167 'RA2' => ('RA2' . " " . xl('Paper Size')),
3168 'RA3' => ('RA3' . " " . xl('Paper Size')),
3169 'RA4' => ('RA4' . " " . xl('Paper Size')),
3170 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3171 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3172 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3173 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3174 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3176 'LETTER',
3177 xl('Choose Paper Size')
3179 'pdf_left_margin' => array(
3180 xl('Left Margin (mm)'),
3181 'num',
3182 '5',
3183 xl('Left Margin (mm)')
3185 'pdf_right_margin' => array(
3186 xl('Right Margin (mm)'),
3187 'num',
3188 '5',
3189 xl('Right Margin (mm)')
3191 'pdf_top_margin' => array(
3192 xl('Top Margin (mm)'),
3193 'num',
3194 '5',
3195 xl('Top Margin (mm)')
3197 'pdf_bottom_margin' => array(
3198 xl('Bottom Margin (px)'),
3199 'num',
3200 '8',
3201 xl('Bottom Margin (px)')
3203 'pdf_output' => array(
3204 xl('Output Type'),
3205 array(
3206 'D' => xl('Download'),
3207 'I' => xl('Inline')
3209 'D', //defaut
3210 xl("Choose Download or Display Inline"),
3213 'chart_label_type' => array(
3214 xl('Patient Label Type'),
3215 array(
3216 '0' => xl('None'),
3217 '1' => '5160',
3218 '2' => '5161',
3219 '3' => '5162'
3221 '1', // default
3222 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3225 'barcode_label_type' => array(
3226 xl('Barcode Label Type'),
3227 array(
3228 '0' => xl('None'),
3229 '1' => 'std25',
3230 '2' => 'int25',
3231 '3' => 'ean8',
3232 '4' => 'ean13',
3233 '5' => 'upc',
3234 '6' => 'code11',
3235 '7' => 'code39',
3236 '8' => 'code93',
3237 '9' => 'code128',
3238 '10' => 'codabar',
3239 '11' => 'msi',
3240 '12' => 'datamatrix'
3242 '9', // default = None
3243 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3246 'addr_label_type' => array(
3247 xl('Print Patient Address Label'),
3248 'bool', // data type
3249 '1', // default = false
3250 xl('Select to print patient address labels from popups in left nav screen.')
3253 'env_x_width' => array(
3254 xl('Envelope Width in mm'),
3255 'num', // data type
3256 '104.775',
3257 xl('In Portrait mode, determines the width of the envelope along the x-axis in mm')
3260 'env_y_height' => array(
3261 xl('Envelope Height in mm'),
3262 'num', // data type
3263 '241.3',
3264 xl('In Portrait mode, determines the height of the envelope along the y-axis in mm')
3267 'env_font_size' => array(
3268 xl('Font Size in Pt'),
3269 'num', // data type
3270 '14',
3271 xl('Sets the font of the address text on the envelope in mm')
3274 'env_x_dist' => array(
3275 xl('Envelope x-axis starting pt'),
3276 'num', // data type
3277 '65',
3278 xl('Distance from the \'top\' of the envelope in mm')
3281 'env_y_dist' => array(
3282 xl('Envelope y-axis starting pt'),
3283 'num', // data type
3284 '220',
3285 xl(' Distance from the right most edge of the envelope in portrait position in mm')