Eye module improvements with other minor improvements
[openemr.git] / library / globals.inc.php
blobf42e44b2607959eb2893e5fa051b89cd5fa90c61
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_start_date',
125 'ptkr_end_date',
126 'checkout_roll_off',
127 'patient_birthday_alert',
128 'patient_birthday_alert_manual_off',
129 'erx_import_status_message');
131 // Gets array of time zones supported by PHP.
133 function gblTimeZones()
135 $zones = timezone_identifiers_list();
136 $arr = array('' => xl('Unassigned'));
137 foreach ($zones as $zone) {
138 $arr[$zone] = str_replace('_', ' ', $zone);
141 return $arr;
144 $GLOBALS_METADATA = array(
146 // Appearance Tab
148 'Appearance' => array(
150 'default_top_pane' => array(
151 xl('Main Top Pane Screen(Or Default First Tab)'), // descriptive name
152 array(
153 'main_info.php' => xl('Calendar Screen'),
154 '../new/new.php' => xl('Patient Search/Add Screen'),
155 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
156 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
157 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen')
159 'main_info.php', // default = calendar
160 xl('Main Top Pane Screen(Or Default First Tab)')
163 'default_second_tab' => array(
164 xl('Default Second Tab'), // descriptive name
165 array(
166 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen'),
167 'main_info.php' => xl('Calendar Screen'),
168 '../new/new.php' => xl('Patient Search/Add Screen'),
169 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
170 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
172 '../../interface/main/messages/messages.php?form_active=1', // default = messages
173 xl('Default Second Tab')
176 'new_tabs_layout' => array(
177 xl('Layout (need to logout/login after change this setting)'),
178 array(
179 '0' => xl('Frame'),
180 '1' => xl('Tabs'),
182 '1',
183 xl('Choose the layout (need to logout and then login to see this new setting).')
186 'theme_tabs_layout' => array(
187 xl('Tabs Layout Theme (need to logout/login after change this setting)'),
188 'tabs_css',
189 'tabs_style_full.css',
190 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.')
193 'css_header' => array(
194 xl('General Theme (need to logout/login after change this setting)'),
195 'css',
196 'style_light.css',
197 xl('Pick a general theme (need to logout/login after change this setting).')
200 'font-family' => array(
201 xl('Default font (need to logout/login after change this setting)'),
202 array(
203 '__default__' => 'Use Theme Font',
204 'Arial, Helvetica, sans-serif' => "Arial",
205 '"Arial Black", Gadget, sans-serif' => "Arial Black",
206 'Impact, Charcoal, sans-serif' => "Impact",
207 '"Lucida Sans Unicode", "Lucida Grande", sans-serif' => "Lucida Sans",
208 'Tahoma, Geneva, sans-serif' => "Tahoma",
209 '"Trebuchet MS", Helvetica, sans-serif' => "Trebuchet MS",
210 'Verdana, Geneva, sans-serif' => "Verdana",
211 'lato' => "Lato",
213 '__default__',
214 xl('Select the default font'),
217 'font-size' => array(
218 xl('Default font size (need to logout/login after change this setting)'),
219 array(
220 '__default__' => 'Use Theme Font Size',
221 '10px' => '10px',
222 '12px' => '12px',
223 '14px' => '14px',
224 '16px' => '16px',
225 '18px' => '18px',
227 '__default__',
228 xl("Select the default font size"),
231 'menu_styling_vertical' => array(
232 xl('Vertical Menu Style'),
233 array(
234 '0' => xl('Tree'),
235 '1' => xl('Sliding'),
237 '1',
238 xl('Vertical Menu Style')
241 'default_encounter_view' => array(
242 xl('Default Encounter View'), // descriptive name
243 array(
244 '0' => xl('Clinical View'),
245 '1' => xl('Billing View'),
247 '0', // default = tree menu
248 xl('Choose your default encounter view')
251 'gbl_nav_area_width' => array(
252 xl('Navigation Area Width'),
253 'num',
254 '175',
255 xl('Width in pixels of the left navigation frame.')
258 'openemr_name' => array(
259 xl('Application Title'),
260 'text',
261 'OpenEMR',
262 xl('Application name for login page and main window title.')
265 'enable_group_therapy' => array(
266 xl('Enable Group Therapy'),
267 'bool', // data type
268 '0', // default = false
269 xl('Enables groups module in system.')
272 'full_new_patient_form' => array(
273 xl('New Patient Form'),
275 array(
276 '0' => xl('Old-style static form without search or duplication check'),
277 '1' => xl('All demographics fields, with search and duplication check'),
278 '2' => xl('Mandatory or specified fields only, search and dup check'),
279 '3' => xl('Mandatory or specified fields only, dup check, no search'),
280 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
282 '1', // default
283 xl('Style of form used for adding new patients')
286 'gbl_edit_patient_form' => array(
287 xl('Modify Patient Form'),
289 array(
290 '0' => xl('Standard check'),
291 '1' => xl('Zend Module check in addition to standard check')
293 '0', // default
294 xl('Validation mechanism for when modifying patient demographics.')
297 'patient_search_results_style' => array(
298 xl('Patient Search Results Style'),
299 array(
300 '0' => xl('Encounter statistics'),
301 '1' => xl('Mandatory and specified fields'),
303 '0', // default
304 xl('Type of columns displayed for patient search results')
307 'gbl_tall_nav_area' => array(
308 xl('Tall Navigation Area'),
309 'bool', // data type
310 '0', // default = false
311 xl('Navigation area uses full height of frameset')
314 'gbl_nav_visit_forms' => array(
315 xl('Navigation Area Visit Forms'),
316 'bool', // data type
317 '1', // default = true
318 xl('Navigation area includes encounter forms')
321 'simplified_demographics' => array(
322 xl('Simplified Demographics'),
323 'bool', // data type
324 '0', // default = false
325 xl('Omit insurance and some other things from the demographics form')
328 'simplified_prescriptions' => array(
329 xl('Simplified Prescriptions'),
330 'bool', // data type
331 '0', // default = false
332 xl('Omit form, route and interval which then become part of dosage')
335 'simplified_copay' => array(
336 xl('Simplified Co-Pay'),
337 'bool', // data type
338 '0', // default = false
339 xl('Omit method of payment from the co-pay panel')
342 'use_charges_panel' => array(
343 xl('Use Charges Panel'),
344 'bool', // data type
345 '0', // default = false
346 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
349 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
350 'enable_fees_in_left_menu' => array(
351 xl('Enable Fees Submenu'),
352 'bool', // data type
353 '1', // default = true
354 xl('Enable Fees Submenu')
356 'enable_batch_payment' => array(
357 xl('Enable Batch Payment'),
358 'bool', // data type
359 '1', // default = true
360 xl('Enable Batch Payment')
362 'enable_posting' => array(
363 xl('Enable Posting'),
364 'bool', // data type
365 '1', // default = true
366 xl('Enable Posting')
368 // EDI history 2012-09-13
369 'enable_edihistory_in_left_menu' => array(
370 xl('Enable EDI History'),
371 'bool', // data type
372 '1', // default = true
373 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
376 'online_support_link' => array(
377 xl('Online Support Link'),
378 'text', // data type
379 'http://open-emr.org/',
380 xl('URL for OpenEMR support.')
383 'support_phone_number' => array(
384 xl('Support Phone Number'),
385 'text',
387 xl('Phone Number for Vendor Support that Appears on the About Page.')
390 'encounter_page_size' => array(
391 xl('Encounter Page Size'),
392 array(
393 '0' => xl('Show All'),
394 '5' => '5',
395 '10' => '10',
396 '15' => '15',
397 '20' => '20',
398 '25' => '25',
399 '50' => '50',
401 '20',
402 xl('Number of encounters to display per page.')
405 'gbl_pt_list_page_size' => array(
406 xl('Patient List Page Size'),
407 array(
408 '10' => '10',
409 '25' => '25',
410 '50' => '50',
411 '100' => '100',
413 '10',
414 xl('Number of patients to display per page in the patient list.')
417 'gbl_pt_list_new_window' => array(
418 xl('Patient List New Window'),
419 'bool', // data type
420 '0', // default = false
421 xl('Default state of New Window checkbox in the patient list.')
424 'gbl_vitals_options' => array(
425 xl('Vitals Form Options'),
426 array(
427 '0' => xl('Standard'),
428 '1' => xl('Omit circumferences'),
430 '0', // default
431 xl('Special treatment for the Vitals form')
434 'insurance_information' => array(
435 xl('Show Additional Insurance Information'), // descriptive name
436 array(
437 '0' => xl('None'),
438 '1' => xl('Address Only'),
439 '2' => xl('Address and Postal Code'),
440 '3' => xl('Address and State'),
441 '4' => xl('Address, State and Postal Code'),
442 '5' => xl('Address, City, State and Postal Code'),
443 '6' => xl('Postal Code and Box Number')
445 '5', // default
446 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
449 'gb_how_sort_list' => array(
450 xl('How to sort a drop-lists'),
451 array(
452 '0' => xl('Sort by seq'),
453 '1' => xl('Sort alphabetically')
455 '0',
456 xl('What kind of sorting will be in the drop lists.')
459 'show_label_login' => array(
460 xl('Show Title on Login'),
461 'bool', // data type
462 '0', // default = false
463 xl('Show Title on Login')
466 'extra_logo_login' => array(
467 xl('Show Extra Logo on Login'),
468 'bool', // data type
469 '0', // default = false
470 xl('Show Extra Logo on Login')
473 'tiny_logo_1' => array(
474 xl('Show Mini Logo 1'),
475 'bool', // data type
476 '0', // default = false
477 xl('Show Mini Logo 1')
480 'tiny_logo_2' => array(
481 xl('Show Mini Logo 2'),
482 'bool', // data type
483 '0', // default = false
484 xl('Show Mini Logo 2')
489 // Locale Tab
491 'Locale' => array(
493 'language_default' => array(
494 xl('Default Language'),
495 'lang', // data type
496 'English (Standard)', // default = english
497 xl('Default language if no other is allowed or chosen.')
500 'language_menu_showall' => array(
501 xl('All Languages Allowed'),
502 'bool', // data type
503 '1', // default = true
504 xl('Allow all available languages as choices on menu at login.')
507 'language_menu_other' => array(
508 xl('Allowed Languages'),
509 'm_lang', // data type
510 '', // default = none
511 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
514 'allow_debug_language' => array(
515 xl('Allow Debugging Language'),
516 'bool', // data type
517 '1', // default = true during development and false for production releases
518 xl('This will allow selection of the debugging (\'dummy\') language.')
521 'translate_no_safe_apostrophe' => array(
522 xl('Do Not Use Safe Apostrophe'),
523 'bool', // data type
524 '0', // default = false
525 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)')
528 'translate_layout' => array(
529 xl('Translate Layouts'),
530 'bool', // data type
531 '1', // default = true
532 xl('Is text from form layouts to be translated?')
535 'translate_lists' => array(
536 xl('Translate Lists'),
537 'bool', // data type
538 '1', // default = true
539 xl('Is text from lists to be translated?')
542 'translate_gacl_groups' => array(
543 xl('Translate Access Control Groups'),
544 'bool', // data type
545 '1', // default = true
546 xl('Are access control group names to be translated?')
549 'translate_form_titles' => array(
550 xl('Translate Patient Note Titles'),
551 'bool', // data type
552 '1', // default = true
553 xl('Are patient note titles to be translated?')
556 'translate_document_categories' => array(
557 xl('Translate Document Categories'),
558 'bool', // data type
559 '1', // default = true
560 xl('Are document category names to be translated?')
563 'translate_appt_categories' => array(
564 xl('Translate Appointment Categories'),
565 'bool', // data type
566 '1', // default = true
567 xl('Are appointment category names to be translated?')
570 'units_of_measurement' => array(
571 xl('Units for Visit Forms'),
572 array(
573 '1' => xl('Show both US and metric (main unit is US)'),
574 '2' => xl('Show both US and metric (main unit is metric)'),
575 '3' => xl('Show US only'),
576 '4' => xl('Show metric only'),
578 '1', // default = Both/US
579 xl('Applies to the Vitals form and Growth Chart')
582 'us_weight_format' => array(
583 xl('Display Format for US Weights'),
584 array(
585 '1' => xl('Show pounds as decimal value'),
586 '2' => xl('Show pounds and ounces')
588 '1',
589 xl('Applies to Vitals form')
592 'phone_country_code' => array(
593 xl('Telephone Country Code'),
594 'num',
595 '1', // default = North America
596 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
599 'date_display_format' => array(
600 xl('Date Display Format'),
601 array(
602 '0' => xl('YYYY-MM-DD'),
603 '1' => xl('MM/DD/YYYY'),
604 '2' => xl('DD/MM/YYYY'),
606 '0',
607 xl('Format used to display most dates.')
610 'time_display_format' => array(
611 xl('Time Display Format'),
612 array(
613 '0' => xl('24 hr'),
614 '1' => xl('12 hr'),
616 '0',
617 xl('Format used to display most times.')
620 'gbl_time_zone' => array(
621 xl('Time Zone'),
622 gblTimeZones(),
624 xl('If unassigned will default to php.ini setting for date.timezone.')
627 'currency_decimals' => array(
628 xl('Currency Decimal Places'),
629 array(
630 '0' => xl('0'),
631 '1' => xl('1'),
632 '2' => xl('2'),
634 '2',
635 xl('Number of digits after decimal point for currency, usually 0 or 2.')
638 'currency_dec_point' => array(
639 xl('Currency Decimal Point Symbol'),
640 array(
641 '.' => xl('Period'),
642 ',' => xl('Comma'),
644 '.',
645 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
648 'currency_thousands_sep' => array(
649 xl('Currency Thousands Separator'),
650 array(
651 ',' => xl('Comma'),
652 '.' => xl('Period'),
653 ' ' => xl('Space'),
654 '' => xl('None'),
656 ',',
657 xl('Symbol used to separate thousands for currency.')
660 'gbl_currency_symbol' => array(
661 xl('Currency Designator'),
662 'text', // data type
663 '$', // default
664 xl('Code or symbol to indicate currency')
666 'age_display_format' => array(xl('Age Display Format'),
667 array(
668 '0' => xl('Years or months'),
669 '1' => xl('Years, months and days')
671 '0',
672 xl('Format for age display')
674 'age_display_limit' => array(
675 xl('Age in Years for Display Format Change'),
676 'num',
677 '3',
678 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
680 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
681 'weekend_days' => array(
682 xl('Your weekend days'),
683 array(
684 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
685 '0' => xl('Sunday'),
686 '5' => xl('Friday'),
687 '6' => xl('Saturday'),
688 '5,6' => xl('Friday') . ' - ' . xl('Saturday'),
690 '6,0'
691 , xl('which days are your weekend days?')
696 // Features Tab
698 'Features' => array(
700 'specific_application' => array(
701 xl('Specific Application'),
702 array(
703 '0' => xl('None'),
704 '2' => xl('IPPF'),
705 '3' => xl('Weight loss clinic'),
707 '0', // default
708 xl('Indicator for specialized usage')
711 'inhouse_pharmacy' => array(
712 xl('Drugs and Products'),
713 array(
714 '0' => xl('Do not inventory and sell any products'),
715 '1' => xl('Inventory and sell drugs only'),
716 '2' => xl('Inventory and sell both drugs and non-drug products'),
717 '3' => xl('Products but no prescription drugs and no templates'),
719 '0', // default
720 xl('Option to support inventory and sales of products')
723 'default_visit_category' => array(
724 xl('Default Visit Category'),
725 'default_visit_category',
726 '_blank',
727 xl('Define a default visit category'),
730 'disable_chart_tracker' => array(
731 xl('Disable Chart Tracker'),
732 'bool', // data type
733 '0', // default = false
734 xl('Removes the Chart Tracker feature')
737 'disable_immunizations' => array(
738 xl('Disable Immunizations'),
739 'bool', // data type
740 '0', // default = false
741 xl('Removes support for immunizations')
744 'disable_prescriptions' => array(
745 xl('Disable Prescriptions'),
746 'bool', // data type
747 '0', // default = false
748 xl('Removes support for prescriptions')
751 'omit_employers' => array(
752 xl('Omit Employers'),
753 'bool', // data type
754 '0', // default = false
755 xl('Omit employer information in patient demographics')
758 'select_multi_providers' => array(
759 xl('Support Multi-Provider Events'),
760 'bool', // data type
761 '0', // default = false
762 xl('Support calendar events that apply to multiple providers')
765 'disable_non_default_groups' => array(
766 xl('Disable User Groups'),
767 'bool', // data type
768 '1', // default = true
769 xl('Normally this should be checked. Not related to access control.')
772 'ignore_pnotes_authorization' => array(
773 xl('Skip Authorization of Patient Notes'),
774 'bool', // data type
775 '1', // default = true
776 xl('Do not require patient notes to be authorized')
779 'support_encounter_claims' => array(
780 xl('Allow Encounter Claims'),
781 'bool', // data type
782 '0', // default = false
783 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
786 'advance_directives_warning' => array(
787 xl('Advance Directives Warning'),
788 'bool', // data type
789 '0', // default = false
790 xl('Display advance directives in the demographics page.')
793 'configuration_import_export' => array(
794 xl('Configuration Export/Import'),
795 'bool', // data type
796 '0', // default = false
797 xl('Support export/import of configuration data via the Backup page.')
800 'restrict_user_facility' => array(
801 xl('Restrict Users to Facilities'),
802 'bool', // data type
803 '0', // default
804 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
807 'set_facility_cookie' => array(
808 xl('Remember Selected Facility'),
809 'bool', // data type
810 '0', // default
811 xl('Set a facility cookie to remember the selected facility between logins.')
814 'receipts_by_provider' => array(
815 xl('Print Receipts by Provider'),
816 'bool',
817 '0', // default
818 xl('Causes Receipts to Print Encounter/Primary Provider Info')
821 'discount_by_money' => array(
822 xl('Discounts as Monetary Amounts'),
823 'bool', // data type
824 '1', // default = true
825 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
828 'gbl_visit_referral_source' => array(
829 xl('Referral Source for Encounters'),
830 'bool', // data type
831 '0', // default = false
832 xl('A referral source may be specified for each visit.')
835 'gbl_mask_patient_id' => array(
836 xl('Mask for Patient IDs'),
837 'text', // data type
838 '', // default
839 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
842 'gbl_mask_invoice_number' => array(
843 xl('Mask for Invoice Numbers'),
844 'text', // data type
845 '', // default
846 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
849 'gbl_mask_product_id' => array(
850 xl('Mask for Product IDs'),
851 'text', // data type
852 '', // default
853 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
856 'hide_billing_widget' => array(
857 xl('Hide Billing Widget'),
858 'bool', // data type
859 '0', // default = false
860 xl('This will hide the Billing Widget in the Patient Summary screen')
863 'force_billing_widget_open' => array(
864 xl('Force Billing Widget Open'),
865 'bool', // data type
866 '0', // default = false
867 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
870 'activate_ccr_ccd_report' => array(
871 xl('Activate CCR/CCD Reporting'),
872 'bool', // data type
873 '1', // default = true
874 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
877 'hide_document_encryption' => array(
878 xl('Hide Encryption/Decryption Options In Document Management'),
879 'bool', // data type
880 '1', // default = true
881 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
884 'use_custom_immun_list' => array(
885 xl('Use Custom Immunization List'),
886 'bool', // data type
887 '0', // default = true
888 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
891 'amendments' => array(
892 xl('Amendments'),
893 'bool', // data type
894 '1', // default = true
895 xl('Enable amendments feature')
898 'allow_pat_delete' => array(
899 xl('Allow Administrators to Delete Patients'),
900 'bool', // data type
901 '0', // default = false
902 xl('Allow Administrators to Delete Patients')
906 'observation_results_immunization' => array(
907 xl('Immunization Observation Results'),
908 'bool', // data type
909 '1', // default
910 xl('Observation Results in Immunization')
914 // Report Tab
916 'Report' => array(
918 'use_custom_daysheet' => array(
919 xl('Use Custom End of Day Report'),
920 array(
921 '0' => xl('None'),
922 '1' => xl('Print End of Day Report 1'),
923 '2' => xl('Print End of Day Report 2'),
924 '3' => xl('Print End of Day Report 3'),
925 ), // data type
926 '1', // default = Print End of Day Report 1
927 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
930 'daysheet_provider_totals' => array(
931 xl('End of Day by Provider or allow Totals Only'),
932 array(
933 '0' => xl('Provider'),
934 '1' => xl('Totals Only'),
936 '1', // default
937 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
940 'ledger_begin_date' => array(
941 xl('Beginning Date for Ledger Report'),
942 array(
943 'Y1' => xl('One Year Ago'),
944 'Y2' => xl('Two Years Ago'),
945 'M6' => xl('Six Months Ago'),
946 'M3' => xl('Three Months Ago'),
947 'M1' => xl('One Month Ago'),
948 'D1' => xl('One Day Ago'),
950 'Y1', // default = One Year
951 xl('This is the Beginning date for the Ledger Report.')
954 'print_next_appointment_on_ledger' => array(
955 xl('Print the Next Appointment on the Bottom of the Ledger'),
956 'bool', // data type
957 '1', // default = true
958 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
961 'sales_report_invoice' => array(
962 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
963 array(
964 '0' => xl('Invoice Number'),
965 '1' => xl('Patient Name and ID'),
966 '2' => xl('Patient Name and Invoice'),
968 '2', // default = 2
969 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
972 'cash_receipts_report_invoice' => array(
973 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
974 array(
975 '0' => xl('Invoice Number'),
976 '1' => xl('Patient Name'),
978 '0', // default = 0
979 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
984 // Billing Tab
986 'Billing' => array(
988 'ub04_support' => array(
989 xl('Activate UB04/837I Claim Support'),
990 'bool', // data type
991 '0', // default = false
992 xl('Allow institutional claims support.')
995 'top_ubmargin_default' => array(
996 xl('Default top print margin for UB04'),
997 'num', // data type
998 '14', // default
999 xl('This is the default top print margin for UB04. It will adjust the final printed output up or down.')
1002 'left_ubmargin_default' => array(
1003 xl('Default left print margin for UB04'),
1004 'num', // data type
1005 '11', // default
1006 xl('This is the default left print margin for UB04. It will adjust the final printed output left or right.')
1009 'cms_top_margin_default' => array(
1010 xl('Default top print margin for CMS 1500'),
1011 'num', // data type
1012 '24', // default
1013 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
1016 'cms_left_margin_default' => array(
1017 xl('Default left print margin for CMS 1500'),
1018 'num', // data type
1019 '20', // default
1020 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
1023 'preprinted_cms_1500' => array(
1024 xl('Prints the CMS 1500 on the Preprinted form'),
1025 'bool', // data type
1026 '0', // default = false
1027 xl('Overlay CMS 1500 on the Preprinted form')
1030 'cms_1500' => array(
1031 xl('CMS 1500 Paper Form Format'),
1032 array(
1033 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
1034 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
1036 '1', // default
1037 xl('This specifies which revision of the form the billing module should generate')
1040 'cms_1500_box_31_format' => array(
1041 xl('CMS 1500: Box 31 Format'),
1042 array(
1043 '0' => xl('Signature on File'),
1044 '1' => xl('Firstname Lastname'),
1045 '2' => xl('None'),
1047 '0', // default
1048 xl('This specifies whether to include date in Box 31.')
1051 'cms_1500_box_31_date' => array(
1052 xl('CMS 1500: Date in Box 31 (Signature)'),
1053 array(
1054 '0' => xl('None'),
1055 '1' => xl('Date of Service'),
1056 '2' => xl('Today'),
1058 '0', // default
1059 xl('This specifies whether to include date in Box 31.')
1062 'default_search_code_type' => array(
1063 xl('Default Search Code Type'),
1064 'all_code_types', // data type
1065 'ICD10', // default
1066 xl('The default code type to search for in the Fee Sheet.')
1069 'default_rendering_provider' => array(
1070 xl('Default Rendering Provider in Fee Sheet'),
1071 array(
1072 '0' => xl('Please Select'),
1073 '1' => xl('Current Provider'),
1074 '2' => xl('Current Logged in User'),
1076 '1',
1077 xl('Default selection for rendering provider in fee sheet.')
1080 'show_payment_history' => array(
1081 xl('Show all payment history in Patient Ledger'),
1082 'bool', // data type
1083 '1', // default = true
1084 xl('Turn on to show all payment history in Patient Ledger')
1087 'support_fee_sheet_line_item_provider' => array(
1088 xl('Support provider in line item in fee sheet'),
1089 'bool', // data type
1090 '0', // default = false
1091 xl('This Enables provider in line item in the fee sheet')
1094 'default_fee_sheet_line_item_provider' => array(
1095 xl('Default to a provider for line item in the fee sheet'),
1096 'bool', // data type
1097 '0', // default = false
1098 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1101 'replicate_justification' => array(
1102 xl('Automatically replicate justification codes in Fee Sheet'),
1103 'bool', // data type
1104 '0', // default = false
1105 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1108 'display_units_in_billing' => array(
1109 xl('Display the Units Column on the Billing Screen'),
1110 'bool', // data type
1111 '0', // default = false
1112 xl('Display the Units Column on the Billing Screen')
1115 'notes_to_display_in_Billing' => array(
1116 xl('Which notes are to be displayed in the Billing Screen'),
1117 array(
1118 '0' => xl('None'),
1119 '1' => xl('Encounter Billing Note'),
1120 '2' => xl('Patient Billing Note'),
1121 '3' => xl('All'),
1123 '3',
1124 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1127 'set_pos_code_encounter' => array(
1128 xl('Set POS code in encounter'),
1129 'bool', // data type
1130 '0', // default = false
1131 xl('This feature will allow the default POS facility code to be overriden from the encounter.')
1134 'use_custom_statement' => array(
1135 xl('Use Custom Statement'),
1136 'bool', // data type
1137 '0', // default = false
1138 xl('This will use the custom Statment showing the description instead of the codes.')
1141 'statement_appearance' => array(
1142 xl('Statement Appearance'),
1143 array(
1144 '0' => xl('Plain Text'),
1145 '1' => xl('Modern/images')
1146 ), // data type
1147 '1', // default = true
1148 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1151 'billing_phone_number' => array(
1152 xl('Custom Billing Phone Number'),
1153 'text', // data type
1155 xl('Phone number for billing inquiries')
1158 'show_aging_on_custom_statement' => array(
1159 xl('Show Aging on Custom Statement'),
1160 'bool', // data type
1161 '0', // default = false
1162 xl('This will Show Aging on the custom Statement.')
1165 'use_statement_print_exclusion' => array(
1166 xl('Allow Statement Exclusions from Printing'),
1167 'bool', // data type
1168 '0', // default = false
1169 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1172 'minimum_amount_to_print' => array(
1173 xl('Total Minimum Amount of Statement to Allow Printing'),
1174 'num', // data type
1175 '1.00',
1176 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1179 'statement_bill_note_print' => array(
1180 xl('Print Patient Billing Note'),
1181 'bool', // data type
1182 '0', // default = false
1183 xl('This will allow printing of the Patient Billing Note on the statements.')
1186 'number_appointments_on_statement' => array(
1187 xl('Number of Appointments on Statement'),
1188 'num', // data type
1189 '0', // default = 0
1190 xl('The Number of Future Appointments to Display on the Statement.')
1193 'statement_message_to_patient' => array(
1194 xl('Print Custom Message'),
1195 'bool', // data type
1196 '0', // default = false
1197 xl('This will allow printing of a custom Message on the statements.')
1200 'statement_msg_text' => array(
1201 xl('Custom Statement message'),
1202 'text', // data type
1204 xl('Text for Custom statement message.')
1207 'use_dunning_message' => array(
1208 xl('Use Custom Dunning Messages'),
1209 'bool', // data type
1210 '0', // default = false
1211 xl('This will allow use of the custom Dunning Messages on the statements.')
1214 'first_dun_msg_set' => array(
1215 xl('Number of days before showing first account message'),
1216 'num', // data type
1217 '30',
1218 xl('Number of days before showing first account message.')
1221 'first_dun_msg_text' => array(
1222 xl('First account message'),
1223 'text', // data type
1225 xl('Text for first account message.')
1228 'second_dun_msg_set' => array(
1229 xl('Number of days before showing second account message'),
1230 'num', // data type
1231 '60',
1232 xl('Number of days before showing second account message')
1235 'second_dun_msg_text' => array(
1236 xl('Second account message'),
1237 'text', // data type
1239 xl('Text for second account message.')
1242 'third_dun_msg_set' => array(
1243 xl('Number of days before showing third account message'),
1244 'num', // data type
1245 '90',
1246 xl('Number of days before showing third account message')
1249 'third_dun_msg_text' => array(
1250 xl('Third account message'),
1251 'text', // data type
1253 xl('Text for third account message.')
1256 'fourth_dun_msg_set' => array(
1257 xl('Number of days before showing fourth account message'),
1258 'num', // data type
1259 '120',
1260 xl('Number of days before showing fourth account message')
1263 'fourth_dun_msg_text' => array(
1264 xl('Fourth account message'),
1265 'text', // data type
1267 xl('Text for fourth account message.')
1270 'fifth_dun_msg_set' => array(
1271 xl('Number of days before showing fifth account message'),
1272 'num', // data type
1273 '150',
1274 xl('Number of days before showing fifth account message')
1277 'fifth_dun_msg_text' => array(
1278 xl('Fifth account message'),
1279 'text', // data type
1281 xl('Text for fifth account message.')
1283 'save_codes_history' => array(
1284 xl('Save codes history'),
1285 'bool', // data type
1286 '1', // default
1287 xl('Save codes history')
1291 // E-Sign Tab
1293 'E-Sign' => array(
1295 'esign_all' => array(
1296 xl('Allows E-Sign on the entire encounter'),
1297 'bool', // data type
1298 '0', // default = false
1299 xl('This will enable signing an entire encounter, rather than individual forms')
1302 'lock_esign_all' => array(
1303 xl('Lock e-signed encounters and their forms'),
1304 'bool', // data type
1305 '0', // default = false
1306 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1309 'esign_individual' => array(
1310 xl('Allows E-Signing Individual Forms'),
1311 'bool', // data type
1312 '1', // default = false
1313 xl('This will enable signing individual forms separately')
1316 'lock_esign_individual' => array(
1317 xl('Lock an e-signed form individually'),
1318 'bool', // data type
1319 '1', // default = false
1320 xl('This will disable the Edit button on any form that is e-signed')
1323 'esign_lock_toggle' => array(
1324 xl('Enable lock toggle'),
1325 'bool', // data type
1326 '0', // default = false
1327 xl('This will give the user the option to lock (separate locking and signing)')
1330 'esign_report_hide_empty_sig' => array(
1331 xl('Hide Empty E-Sign Logs On Report'),
1332 'bool', // data type
1333 '1', // default = false
1334 xl('This will hide empty e-sign logs on the patient report')
1338 //Documents Tab
1339 'Documents' => array(
1341 'document_storage_method' => array(
1342 xl('Document Storage Method'),
1343 array(
1344 '0' => xl('Hard Disk'),
1345 '1' => xl('CouchDB')
1347 '0', // default
1348 xl('Option to save method of document storage.')
1351 'couchdb_host' => array(
1352 xl('CouchDB HostName'),
1353 'text',
1354 'localhost',
1355 xl('CouchDB host'),
1357 'couchdb_user' => array(
1358 xl('CouchDB UserName'),
1359 'text',
1361 xl('Username to connect to CouchDB'),
1363 'couchdb_pass' => array(
1364 xl('CouchDB Password'),
1365 'text',
1367 xl('Password to connect to CouchDB'),
1369 'couchdb_port' => array(
1370 xl('CouchDB Port'),
1371 'text',
1372 '5984',
1373 xl('CouchDB port'),
1375 'couchdb_dbase' => array(
1376 xl('CouchDB Database'),
1377 'text',
1379 xl('CouchDB database name'),
1381 'couchdb_log' => array(
1382 xl('CouchDB Log Enable'),
1383 'bool',
1384 '0',
1385 xl('Enable log for document uploads/downloads to CouchDB'),
1388 'expand_document_tree' => array(
1389 xl('Expand All Document Categories'),
1390 'bool', // data type
1391 '0', // default = false
1392 xl('Expand All Document Categories by Default')
1395 'patient_id_category_name' => array(
1396 xl('Patient ID Category Name'),
1397 'text', // data type
1398 'Patient ID card', // default
1399 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1402 'patient_photo_category_name' => array(
1403 xl('Patient Photo Category Name'),
1404 'text', // data type
1405 'Patient Photograph', // default
1406 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1409 'lab_results_category_name' => array(
1410 xl('Lab Results Category Name'),
1411 'text', // data type
1412 'Lab Report', // default
1413 xl('Document category name for storage of electronically received lab results.')
1416 'gbl_mdm_category_name' => array(
1417 xl('MDM Document Category Name'),
1418 'text', // data type
1419 'Lab Report', // default
1420 xl('Document category name for storage of electronically received MDM documents.')
1422 'generate_doc_thumb' => array(
1423 xl('Generate thumbnail'),
1424 'bool',
1425 '0',
1426 xl('Generate thumbnail images'),
1428 'thumb_doc_max_size' => array(
1429 xl('Thumbnail size'),
1430 'text', // data type
1431 '100', // default
1432 xl('Maximum size of thumbnail file')
1436 // Calendar Tab
1438 'Calendar' => array(
1440 'disable_calendar' => array(
1441 xl('Disable Calendar'),
1442 'bool', // data type
1443 '0', // default
1444 xl('Do not display the calendar.')
1447 'schedule_start' => array(
1448 xl('Calendar Starting Hour'),
1449 'hour',
1450 '8', // default
1451 xl('Beginning hour of day for calendar events.')
1454 'schedule_end' => array(
1455 xl('Calendar Ending Hour'),
1456 'hour',
1457 '17', // default
1458 xl('Ending hour of day for calendar events.')
1461 'calendar_interval' => array(
1462 xl('Calendar Interval'),
1463 array(
1464 '5' => '5',
1465 '10' => '10',
1466 '15' => '15',
1467 '20' => '20',
1468 '30' => '30',
1469 '60' => '60',
1471 '15', // default
1472 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1475 'calendar_view_type' => array(
1476 xl('Default Calendar View'),
1477 array(
1478 'day' => xl('Day'),
1479 'week' => xl('Week'),
1480 'month' => xl('Month'),
1482 'day', // default
1483 xl('This sets the Default Calendar View, Default is Day.')
1485 'first_day_week' => array(
1486 xl('First day in the week'),
1487 array(
1488 '1' => xl('Monday'),
1489 '0' => xl('Sunday'),
1490 '6' => xl('Saturday')
1492 '1',
1493 xl('Your first day of the week.')
1495 'calendar_appt_style' => array(
1496 xl('Appointment Display Style'),
1497 array(
1498 '1' => xl('Last name'),
1499 '2' => xl('Last name, first name'),
1500 '3' => xl('Last name, first name (title)'),
1501 '4' => xl('Last name, first name (title: comments)'),
1503 '2', // default
1504 xl('This determines how appointments display on the calendar.')
1507 'event_color' => array(
1508 xl('Appointment/Event Color'),
1509 array(
1510 '1' => xl('Category Color Schema'),
1511 '2' => xl('Facility Color Schema'),
1512 ), // data type
1513 '1', // default
1514 xl('This determines which color schema used for appointment')
1517 'number_of_appts_to_show' => array(
1518 xl('Appointments - Patient Summary - Number to Display'),
1519 'num',
1520 '10',
1521 xl('Number of Appointments to display in the Patient Summary')
1524 'number_of_group_appts_to_show' => array(
1525 xl('Appointments - Group Summary - Number to Display'),
1526 'num',
1527 '10',
1528 xl('Number of Appointments to display in the Group Summary')
1530 'number_of_ex_appts_to_show' => array(
1531 xl('Excluded Appointments - Tooltip - Number to Display'),
1532 'num',
1533 '15',
1534 xl('Number of Excluded Appointments to display in the Tooltip')
1538 'patient_portal_appt_display_num' => array(
1539 xl('Appointments - Onsite Patient Portal - Number to Display'),
1540 'num',
1541 '20',
1542 xl('Number of Appointments to display in the Onsite Patient Portal')
1545 'appt_display_sets_option' => array(
1546 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1547 'bool', // data type
1548 '1', // default
1549 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1552 'appt_display_sets_color_1' => array(
1553 xl('Appointment Display Sets - Color 1'),
1554 'color_code',
1555 '#FFFFFF',
1556 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).')
1559 'appt_display_sets_color_2' => array(
1560 xl('Appointment Display Sets - Color 2'),
1561 'color_code',
1562 '#E6E6FF',
1563 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).')
1566 'appt_display_sets_color_3' => array(
1567 xl('Appointment Display Sets - Color 3'),
1568 'color_code',
1569 '#E6FFE6',
1570 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1573 'appt_display_sets_color_4' => array(
1574 xl('Appointment Display Sets - Color 4'),
1575 'color_code',
1576 '#FFE6FF',
1577 xl('Color for the last set when not all member appointments are displayed.')
1580 'appt_recurrences_widget' => array(
1581 xl('Recurrent Appointment Display Widget'),
1582 'bool', // data type
1583 '1', // default
1584 xl('Display the recurrent appointment widget in the patient summary.')
1587 'num_past_appointments_to_show' => array(
1588 xl('Past Appointment Display Widget'),
1589 'num', // data type
1590 '0', // default = false
1591 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)')
1594 'docs_see_entire_calendar' => array(
1595 xl('Providers See Entire Calendar'),
1596 'bool', // data type
1597 '0', // default
1598 xl('Check this if you want providers to see all appointments by default and not just their own.')
1601 'auto_create_new_encounters' => array(
1602 xl('Auto-Create New Encounters'),
1603 'bool', // data type
1604 '1', // default
1605 xl('Automatically create a new encounter when an appointment check in status is selected.')
1608 'allow_early_check_in' => array(
1609 xl('Allow Early Check In'),
1610 'bool', // data type
1611 '1', // default
1612 xl("Allow Check In before the appointment's time.")
1615 'submit_changes_for_all_appts_at_once' => array(
1616 xl('Submit Changes For All Appts At Once'),
1617 'bool', // data type
1618 '1', // default
1619 xl('Enables to submit changes for all appointments of a recurrence at once.')
1622 'disable_pat_trkr' => array(
1623 xl('Flow Board: Disable'),
1624 'bool', // data type
1625 '0', // default
1626 xl('Completely remove the ability to display the Patient Flow Board.')
1629 'ptkr_visit_reason' => array(
1630 xl('Flow Board: Show Visit Reason'),
1631 'bool', // data type
1632 '0', // default = false
1633 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1636 'ptkr_show_pid' => array(
1637 xl('Flow Board: Show Patient ID'),
1638 'bool', // data type
1639 '1', // default = true
1640 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1643 'ptkr_show_encounter' => array(
1644 xl('Flow Board: Show Encounter Number'),
1645 'bool', // data type
1646 '1', // default = true
1647 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1650 'ptkr_show_staff' => array(
1651 xl('Flow Board: Show Staff Action'),
1652 'bool', // data type
1653 '1', // default = true
1654 xl('When Checked, Last Staff to Update Board Will Show in Patient Flow Board.')
1657 'ptkr_date_range' => array(
1658 xl('Flow Board: Allow Date Range'),
1659 'bool', // data type
1660 '1', // default = true
1661 xl('This Allows a Date Range to be Selected in Patient Flow Board.')
1664 'ptkr_start_date'=> array(
1665 xl('Flow Board: Default Starting Date'),
1666 array(
1667 'D0' => xl('Current Day'),
1668 'B0' => xl('Beginning of Current Work Week'),
1670 'D0', // default = Current Day
1671 xl('This is the default Beginning date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1674 'ptkr_end_date' => array(
1675 xl('Flow Board: Default Ending Date'),
1676 array(
1677 'Y1' => xl('One Year Ahead'),
1678 'Y2' => xl('Two Years Ahead'),
1679 'M6' => xl('Six Months Ahead'),
1680 'M3' => xl('Three Months Ahead'),
1681 'M1' => xl('One Month Ahead'),
1682 'D7' => xl('One Week Ahead'),
1683 'D1' => xl('One Day Ahead'),
1684 'D0' => xl('Current Day'),
1686 'D0', // default = One Day Ahead
1687 xl('This is the default Ending date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1690 'pat_trkr_timer' => array(
1691 xl('Flow Board: Timer Refresh Interval'),
1692 array(
1693 '0' => xl('No automatic refresh'),
1694 '0:10' => '10',
1695 '0:20' => '20',
1696 '0:30' => '30',
1697 '0:40' => '40',
1698 '0:50' => '50',
1699 '0:59' => '60',
1701 '0:20', // default
1702 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1705 'checkout_roll_off' => array(
1706 xl('Flow Board: display completed checkouts (minutes)'),
1707 'num',
1708 '0', // default
1709 xl('Flow Board will only display completed checkouts for this many minutes. Zero is continuous display.')
1712 'drug_screen' => array(
1713 xl('Flow Board: Enable Random Drug Testing'),
1714 'bool', // data type
1715 '0', // default
1716 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1719 'drug_testing_percentage' => array(
1720 xl('Flow Board: Percentage of Patients to Drug Test'),
1721 'num',
1722 '33', // default
1723 xl('Percentage of Patients to select for Random Drug Testing.')
1726 'maximum_drug_test_yearly' => array(
1727 xl('Flow Board: Max tests per Patient per year'),
1728 'num',
1729 '0', // default
1730 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1733 'disable_rcb' => array(
1734 xl('Recall Board: Disable'),
1735 'bool', // data type
1736 '0', // default
1737 xl('Do not display the Recall Board.')
1745 // Security Tab
1747 'Security' => array(
1748 'sql_string_no_show_screen' => array(
1749 xl('Mode - Do Not Show SQL Queries'),
1750 'bool', // data type
1751 '0', // default
1752 xl('Do not allow SQL queries to be outputted to screen.')
1754 'timeout' => array(
1755 xl('Idle Session Timeout Seconds'),
1756 'num', // data type
1757 '7200', // default
1758 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1760 'secure_upload' => array(
1761 xl('Secure Upload Files with White List'),
1762 'bool', // data type
1763 '0', // default
1764 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1766 'secure_password' => array(
1767 xl('Require Strong Passwords'),
1768 'bool', // data type
1769 '0', // default
1770 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1772 'password_history' => array(
1773 xl('Require Unique Passwords'),
1774 'bool', // data type
1775 '0', // default
1776 xl('Means none of last three passwords are allowed when changing a password.')
1778 'password_compatibility' => array(
1779 xl('Permit unsalted passwords'),
1780 'bool', // data type
1781 '1', // default
1782 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')
1785 'password_expiration_days' => array(
1786 xl('Default Password Expiration Days'),
1787 'num', // data type
1788 '0', // default
1789 xl('Default password expiration period in days. 0 means this feature is disabled.')
1792 'password_grace_time' => array(
1793 xl('Password Expiration Grace Period'),
1794 'num', // data type
1795 '0', // default
1796 xl('Period in days where a user may login with an expired password.')
1799 'is_client_ssl_enabled' => array(
1800 xl('Enable Client SSL'),
1801 'bool', // data type
1802 '0', // default
1803 xl('Enable client SSL certificate authentication.')
1806 'certificate_authority_crt' => array(
1807 xl('Path to CA Certificate File'),
1808 'text', // data type
1809 '', // default
1810 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1813 'certificate_authority_key' => array(
1814 xl('Path to CA Key File'),
1815 'text', // data type
1816 '', // default
1817 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1820 'client_certificate_valid_in_days' => array(
1821 xl('Client Certificate Expiration Days'),
1822 'num', // data type
1823 '365', // default
1824 xl('Number of days that the client certificate is valid.')
1827 'Emergency_Login_email_id' => array(
1828 xl('Emergency Login Email Address'),
1829 'text', // data type
1830 '', // default
1831 xl('Email address, if any, to receive emergency login user activation messages.')
1834 'new_validate' => array(
1835 xl('New form validation'),
1836 'bool',
1837 '1',
1838 xl('New form validation')
1841 'allow_multiple_databases' => array(
1842 xl('Allow multiple databases'),
1843 'bool',
1844 '0',
1845 xl('Allow to use with multiple database')
1848 'safe_key_database' => array(
1849 xl('Safe key database'),
1850 'text', // data type
1851 '', // default
1852 xl('Key for multiple database credentials encryption')
1855 'use_active_directory' => array(
1856 xl('Use Active Directory'),
1857 'bool',
1858 '0',
1859 xl('If enabled, uses the specified active directory for login and authentication.')
1862 'account_suffix' => array(
1863 xl('Active Directory - Suffix Of Account'),
1864 'text',
1866 xl('The suffix of the account.')
1869 'base_dn' => array(
1870 xl('Active Directory - Domains Base'),
1871 'text',
1873 xl('Users is the standard windows CN, replace the DC stuff with your domain.')
1876 'domain_controllers' => array(
1877 xl('Active Directory - Domains Controllers'),
1878 'text',
1880 xl('The IP address of your domain controller(s).')
1885 // Notifications Tab
1887 'Notifications' => array(
1889 'patient_reminder_sender_name' => array(
1890 xl('Patient Reminder Sender Name'),
1891 'text', // data type
1892 '', // default
1893 xl('Name of the sender for patient reminders.')
1896 'patient_reminder_sender_email' => array(
1897 xl('Patient Reminder Sender Email'),
1898 'text', // data type
1899 '', // default
1900 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.')
1903 'practice_return_email_path' => array(
1904 xl('Notification Email Address'),
1905 'text', // data type
1906 '', // default
1907 xl('Email address, if any, to receive administrative notifications.')
1910 'EMAIL_METHOD' => array(
1911 xl('Email Transport Method'),
1912 array(
1913 'PHPMAIL' => 'PHPMAIL',
1914 'SENDMAIL' => 'SENDMAIL',
1915 'SMTP' => 'SMTP',
1917 'SMTP', // default
1918 xl('Method for sending outgoing email.')
1921 'SMTP_HOST' => array(
1922 xl('SMTP Server Hostname'),
1923 'text', // data type
1924 'localhost', // default
1925 xl('If SMTP is used, the server`s hostname or IP address.')
1928 'SMTP_PORT' => array(
1929 xl('SMTP Server Port Number'),
1930 'num', // data type
1931 '25', // default
1932 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1935 'SMTP_USER' => array(
1936 xl('SMTP User for Authentication'),
1937 'text', // data type
1938 '', // default
1939 xl('Must be empty if SMTP authentication is not used.')
1942 'SMTP_PASS' => array(
1943 xl('SMTP Password for Authentication'),
1944 'text', // data type
1945 '', // default
1946 xl('Must be empty if SMTP authentication is not used.')
1949 'SMTP_SECURE' => array(
1950 xl('SMTP Security Protocol'),
1951 array(
1952 '' => xl('None'),
1953 'ssl' => 'SSL',
1954 'tls' => 'TLS'
1957 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1960 'EMAIL_NOTIFICATION_HOUR' => array(
1961 xl('Email Notification Hours'),
1962 'num', // data type
1963 '50', // default
1964 xl('Number of hours in advance to send email notifications.')
1967 'SMS_NOTIFICATION_HOUR' => array(
1968 xl('SMS Notification Hours'),
1969 'num', // data type
1970 '50', // default
1971 xl('Number of hours in advance to send SMS notifications.')
1974 'SMS_GATEWAY_USENAME' => array(
1975 xl('SMS Gateway Username'),
1976 'text', // data type
1977 '', // default
1978 xl('Username for SMS Gateway.')
1981 'SMS_GATEWAY_PASSWORD' => array(
1982 xl('SMS Gateway Password'),
1983 'text', // data type
1984 '', // default
1985 xl('Password for SMS Gateway.')
1988 'SMS_GATEWAY_APIKEY' => array(
1989 xl('SMS Gateway API Key'),
1990 'text', // data type
1991 '', // default
1992 xl('API key for SMS Gateway.')
1995 'phone_notification_hour' => array(
1996 xl('Phone Notification Hour'),
1997 'num', // data type
1998 '50', // default
1999 xl('Number of hours in advance to send Phone notification.')
2002 'phone_gateway_username' => array(
2003 xl('Phone Gateway Username'),
2004 'text', // data type
2005 '', // default
2006 xl('Username for Phone Gateway.')
2009 'phone_gateway_password' => array(
2010 xl('Phone Gateway Password'),
2011 'text', // data type
2012 '', // default
2013 xl('Password for Phone Gateway.')
2016 'phone_gateway_url' => array(
2017 xl('Phone Gateway URL'),
2018 'text', // data type
2019 '', // default
2020 xl('URL for Phone Gateway.')
2025 // CDR (Clinical Decision Rules)
2027 'CDR' => array(
2029 'enable_cdr' => array(
2030 xl('Enable Clinical Decisions Rules (CDR)'),
2031 'bool', // data type
2032 '1', // default
2033 xl('Enable Clinical Decisions Rules (CDR)')
2036 'enable_allergy_check' => array(
2037 xl('Enable Allergy Check'),
2038 'bool', // data type
2039 '1', // default
2040 xl('Enable Allergy Check Against Medications and Prescriptions')
2043 'enable_alert_log' => array(
2044 xl('Enable Alert Log'),
2045 'bool', // data type
2046 '1', // default
2047 xl('Enable Alert Logging')
2050 'enable_cdr_new_crp' => array(
2051 xl('Enable Clinical Passive New Reminder(s) Popup'),
2052 'bool', // data type
2053 '1', // default
2054 xl('Enable Clinical Passive New Reminder(s) Popup')
2057 'enable_cdr_crw' => array(
2058 xl('Enable Clinical Passive Reminder Widget'),
2059 'bool', // data type
2060 '1', // default
2061 xl('Enable Clinical Passive Reminder Widget')
2064 'enable_cdr_crp' => array(
2065 xl('Enable Clinical Active Reminder Popup'),
2066 'bool', // data type
2067 '1', // default
2068 xl('Enable Clinical Active Reminder Popup')
2071 'enable_cdr_prw' => array(
2072 xl('Enable Patient Reminder Widget'),
2073 'bool', // data type
2074 '1', // default
2075 xl('Enable Patient Reminder Widget')
2078 'enable_cqm' => array(
2079 xl('Enable CQM Reporting'),
2080 'bool', // data type
2081 '1', // default
2082 xl('Enable Clinical Quality Measure (CQM) Reporting')
2085 'pqri_registry_name' => array(
2086 xl('PQRI Registry Name'),
2087 'text', // data type
2088 'Model Registry', // default
2089 xl('PQRI Registry Name')
2092 'pqri_registry_id' => array(
2093 xl('PQRI Registry ID'),
2094 'text', // data type
2095 '125789123', // default
2096 xl('PQRI Registry ID')
2099 'enable_amc' => array(
2100 xl('Enable AMC Reporting'),
2101 'bool', // data type
2102 '1', // default
2103 xl('Enable Automated Measure Calculations (AMC) Reporting')
2106 'enable_amc_prompting' => array(
2107 xl('Enable AMC Prompting'),
2108 'bool', // data type
2109 '1', // default
2110 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
2113 'enable_amc_tracking' => array(
2114 xl('Enable AMC Tracking'),
2115 'bool', // data type
2116 '1', // default
2117 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
2120 'cdr_report_nice' => array(
2121 xl('CDR Reports Processing Priority'),
2122 array(
2123 '' => xl('Default Priority'),
2124 '5' => xl('Moderate Priority'),
2125 '10' => xl('Moderate/Low Priority'),
2126 '15' => xl('Low Priority'),
2127 '20' => xl('Lowest Priority')
2129 '', // default
2130 xl('Set processing priority for CDR engine based reports.')
2133 'pat_rem_clin_nice' => array(
2134 xl('Patient Reminder Creation Processing Priority'),
2135 array(
2136 '' => xl('Default Priority'),
2137 '5' => xl('Moderate Priority'),
2138 '10' => xl('Moderate/Low Priority'),
2139 '15' => xl('Low Priority'),
2140 '20' => xl('Lowest Priority')
2142 '', // default
2143 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2146 'report_itemizing_standard' => array(
2147 xl('Enable Standard Report Itemization'),
2148 'bool', // data type
2149 '1', // default
2150 xl('Enable Itemization of Standard Clinical Rules Reports')
2153 'report_itemizing_cqm' => array(
2154 xl('Enable CQM Report Itemization'),
2155 'bool', // data type
2156 '1', // default
2157 xl('Enable Itemization of CQM Reports')
2160 'report_itemizing_amc' => array(
2161 xl('Enable AMC Report Itemization'),
2162 'bool', // data type
2163 '1', // default
2164 xl('Enable Itemization of AMC Reports')
2166 'dated_reminders_max_alerts_to_show' => array(
2167 xl('Dated reminders maximum alerts to show'),
2168 'num', // data type
2169 '5', // default
2170 xl('Dated reminders maximum alerts to show')
2172 'patient_birthday_alert' => array(
2173 xl('Alert on patient birthday'),
2174 array(
2175 '0' => xl('No alert'),
2176 '1' => xl('Alert only on birthday'),
2177 '2' => xl('Alert on and after birthday')
2179 '1', // default
2180 xl('Alert on patient birthday')
2182 'patient_birthday_alert_manual_off' => array(
2183 xl('Patient birthday alert requires turning off'),
2184 'bool', // data type
2185 '0', // default
2186 xl('Patient birthday alert requires turning off')
2190 // Logging
2192 'Logging' => array(
2194 'enable_auditlog' => array(
2195 xl('Enable Audit Logging'),
2196 'bool', // data type
2197 '1', // default
2198 xl('Enable Audit Logging')
2201 'audit_events_patient-record' => array(
2202 xl('Audit Logging Patient Record'),
2203 'bool', // data type
2204 '1', // default
2205 xl('Enable logging of patient record modifications.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2208 'audit_events_scheduling' => array(
2209 xl('Audit Logging Scheduling'),
2210 'bool', // data type
2211 '1', // default
2212 xl('Enable logging of scheduling activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2215 'audit_events_order' => array(
2216 xl('Audit Logging Order'),
2217 'bool', // data type
2218 '1', // default
2219 xl('Enable logging of ordering activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2222 'audit_events_security-administration' => array(
2223 xl('Audit Logging Security Administration'),
2224 'bool', // data type
2225 '1', // default
2226 xl('Enable logging of security and administration activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2229 'audit_events_backup' => array(
2230 xl('Audit Logging Backups'),
2231 'bool', // data type
2232 '1', // default
2233 xl('Enable logging of backup related activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2236 'audit_events_other' => array(
2237 xl('Audit Logging Miscellaneous'),
2238 'bool', // data type
2239 '1', // default
2240 xl('Enable logging of miscellaneous activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2243 'audit_events_query' => array(
2244 xl('Audit Logging SELECT Query'),
2245 'bool', // data type
2246 '0', // default
2247 xl('Enable logging of all SQL SELECT queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2250 'audit_events_cdr' => array(
2251 xl('Audit CDR Engine Queries'),
2252 'bool', // data type
2253 '0', // default
2254 xl('Enable logging of CDR Engine Queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2257 'enable_atna_audit' => array(
2258 xl('Enable ATNA Auditing'),
2259 'bool', // data type
2260 '0', // default
2261 xl('Enable Audit Trail and Node Authentication (ATNA).')
2264 'atna_audit_host' => array(
2265 xl('ATNA audit host'),
2266 'text', // data type
2267 '', // default
2268 xl('The hostname of the ATNA audit repository machine.')
2271 'atna_audit_port' => array(
2272 xl('ATNA audit port'),
2273 'text', // data type
2274 '6514', // default
2275 xl('Listening port of the RFC 5425 TLS syslog server.')
2278 'atna_audit_localcert' => array(
2279 xl('ATNA audit local certificate'),
2280 'text', // data type
2281 '', // default
2282 xl('Certificate to send to RFC 5425 TLS syslog server.')
2285 'atna_audit_cacert' => array(
2286 xl('ATNA audit CA certificate'),
2287 'text', // data type
2288 '', // default
2289 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2292 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
2293 'enable_auditlog_encryption' => array(
2294 xl('Enable Audit Log Encryption'),
2295 'bool', // data type
2296 '0', // default
2297 xl('Enable Audit Log Encryption')
2300 'billing_log_option' => array(
2301 xl('Billing Log Option'),
2302 array(
2303 '1' => xl('Billing Log Append'),
2304 '2' => xl('Billing Log Overwrite')
2306 '1', // default
2307 xl('Billing log setting to append or overwrite the log file.')
2310 'gbl_print_log_option' => array(
2311 xl('Printing Log Option'),
2312 array(
2313 '0' => xl('No logging'),
2314 '1' => xl('Hide print feature'),
2315 '2' => xl('Log entire document'),
2317 '0', // default
2318 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2323 // Miscellaneous Tab
2325 'Miscellaneous' => array(
2327 'mysql_bin_dir' => array(
2328 xl('Path to MySQL Binaries'),
2329 'text', // data type
2330 $mysql_bin_dir, // default
2331 xl('Full path to directory containing MySQL executables.')
2334 'perl_bin_dir' => array(
2335 xl('Path to Perl Binaries'),
2336 'text', // data type
2337 $perl_bin_dir, // default
2338 xl('Full path to directory containing Perl executables.')
2341 'temporary_files_dir' => array(
2342 xl('Path to Temporary Files'),
2343 'text', // data type
2344 $temporary_files_dir, // default
2345 xl('Full path to directory used for temporary files.')
2348 'backup_log_dir' => array(
2349 xl('Path for Event Log Backup'),
2350 'text', // data type
2351 $backup_log_dir, // default
2352 xl('Full path to directory for event log backup.')
2355 'state_data_type' => array(
2356 xl('State Data Type'),
2357 array(
2358 '2' => xl('Text field'),
2359 '1' => xl('Single-selection list'),
2360 '26' => xl('Single-selection list with ability to add to the list'),
2362 '26', // default
2363 xl('Field type to use for employer or subscriber state in demographics.')
2366 'state_list' => array(
2367 xl('State list'),
2368 'text', // data type
2369 'state', // default
2370 xl('List used by above State Data Type option.')
2373 'state_custom_addlist_widget' => array(
2374 xl('State List Widget Custom Fields'),
2375 'bool', // data type
2376 '1', // default
2377 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2380 'country_data_type' => array(
2381 xl('Country Data Type'),
2382 array(
2383 '2' => xl('Text field'),
2384 '1' => xl('Single-selection list'),
2385 '26' => xl('Single-selection list with ability to add to the list'),
2387 '26', // default
2388 xl('Field type to use for employer or subscriber country in demographics.')
2391 'country_list' => array(
2392 xl('Country list'),
2393 'text', // data type
2394 'country', // default
2395 xl('List used by above Country Data Type option.')
2398 'print_command' => array(
2399 xl('Print Command'),
2400 'text', // data type
2401 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2402 xl('Shell command for printing from the server.')
2405 'default_chief_complaint' => array(
2406 xl('Default Reason for Visit'),
2407 'text', // data type
2409 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2412 'default_new_encounter_form' => array(
2413 xl('Default Encounter Form ID'),
2414 'text', // data type
2416 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
2419 'MedicareReferrerIsRenderer' => array(
2420 xl('Medicare Referrer Is Renderer'),
2421 'bool', // data type
2422 '0', // default = true
2423 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2426 'post_to_date_benchmark' => array(
2427 xl('Financial Close Date (yyyy-mm-dd)'),
2428 'text', // data type
2429 date('Y-m-d', time() - (10 * 24 * 60 * 60)), // default
2430 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2433 'enable_hylafax' => array(
2434 xl('Enable Hylafax Support'),
2435 'bool', // data type
2436 '0', // default
2437 xl('Enable Hylafax Support')
2440 'hylafax_server' => array(
2441 xl('Hylafax Server'),
2442 'text', // data type
2443 'localhost', // default
2444 xl('Hylafax server hostname.')
2447 'hylafax_basedir' => array(
2448 xl('Hylafax Directory'),
2449 'text', // data type
2450 '/var/spool/hylafax', // default
2451 xl('Location where Hylafax stores faxes.')
2454 'hylafax_enscript' => array(
2455 xl('Hylafax Enscript Command'),
2456 'text', // data type
2457 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2458 xl('Enscript command used by Hylafax.')
2461 'enable_scanner' => array(
2462 xl('Enable Scanner Support'),
2463 'bool', // data type
2464 '0', // default
2465 xl('Enable Scanner Support')
2468 'scanner_output_directory' => array(
2469 xl('Scanner Directory'),
2470 'text', // data type
2471 '/mnt/scan_docs', // default
2472 xl('Location where scans are stored.')
2476 // Portal Tab
2478 'Portal' => array(
2480 'portal_onsite_two_enable' => array(
2481 xl('Enable Version 2 Onsite Patient Portal'),
2482 'bool', // data type
2483 '0',
2484 xl('Enable Version 2 Onsite Patient Portal')
2487 'portal_onsite_two_address' => array(
2488 xl('Version 2 Onsite Patient Portal Site Address'),
2489 'text', // data type
2490 'https://your_web_site.com/openemr/portal',
2491 xl('Website link for the Version 2 Onsite Patient Portal.')
2494 'portal_onsite_two_basepath' => array(
2495 xl('Portal Uses Server Base Path (internal)'),
2496 'bool',
2497 '0',
2498 xl('Use servers protocol and host in urls (portal internal only).')
2501 'portal_onsite_two_register' => array(
2502 xl('Allow Version 2 Onsite New Patient Registration Widget'),
2503 'bool', // data type
2504 '1',
2505 xl('Enable Version 2 Onsite Patient Portal new patient to self register.')
2508 'portal_two_payments' => array(
2509 xl('Allow Version 2 Onsite Online Payments'),
2510 'bool', // data type
2511 '0',
2512 xl('Allow Version 2 Onsite Patient to make payments online.')
2515 'portal_two_pass_reset' => array(
2516 xl('Allow Version 2 Patients to Reset Credentials'),
2517 'bool', // data type
2518 '0',
2519 xl('Patient may change their logon from portal login dialog.')
2522 'portal_onsite_enable' => array(
2523 xl('Enable Version 1 Onsite Patient Portal'),
2524 'bool', // data type
2525 '0',
2526 xl('Enable Version 1 Onsite Patient Portal')
2529 'portal_onsite_address' => array(
2530 xl('Version 1 Onsite Patient Portal Site Address'),
2531 'text', // data type
2532 'https://your_web_site.com/openemr/patients',
2533 xl('Website link for the Version 1 Onsite Patient Portal.')
2536 'portal_onsite_document_download' => array(
2537 xl('Enable Onsite Patient Portal Document Download'),
2538 'bool', // data type
2539 '1',
2540 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2543 'portal_offsite_enable' => array(
2544 xl('Enable Offsite Patient Portal'),
2545 'bool', // data type
2546 '0',
2547 xl('Enable Offsite Patient Portal.')
2549 'portal_offsite_providerid' => array(
2550 xl('Offsite Patient Portal Provider ID'),
2551 'text', // data type
2553 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2556 'portal_offsite_username' => array(
2557 xl('Offsite Patient Portal Username'),
2558 'text', // data type
2560 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2563 'portal_offsite_password' => array(
2564 xl('Offsite Patient Portal Password'),
2565 'pwd', // data type
2567 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2570 'portal_offsite_address' => array(
2571 xl('Offsite Patient Portal Site Address'),
2572 'text', // data type
2573 'https://ssh.mydocsportal.com/provider.php',
2574 xl('Offsite Https link for the Patient Portal.')
2577 'portal_offsite_address_patient_link' => array(
2578 xl('Offsite Patient Portal Site Address (Patient Link)'),
2579 'text', // data type
2580 'https://ssh.mydocsportal.com',
2581 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2584 // Currently the "CMS Portal" supports WordPress. Other Content Management
2585 // Systems may be supported in the future.
2587 'gbl_portal_cms_enable' => array(
2588 xl('Enable CMS Portal'),
2589 'bool', // data type
2590 '0',
2591 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2594 'gbl_portal_cms_address' => array(
2595 xl('CMS Portal Site Address'),
2596 'text', // data type
2597 'https://your_cms_site.com/',
2598 xl('URL for the WordPress site that supports the portal')
2601 'gbl_portal_cms_username' => array(
2602 xl('CMS Portal Username'),
2603 'text', // data type
2605 xl('Login name of WordPress user for portal access')
2608 'gbl_portal_cms_password' => array(
2609 xl('CMS Portal Password'),
2610 'text', // data type
2612 xl('Password for the above user')
2617 // Connectors Tab
2619 'Connectors' => array(
2621 'fhir_enable' => array(
2622 xl('Enable FHIR Provider Client Service'),
2623 array(
2624 0 => xl('Off: No Service.'),
2625 1 => xl('On: HAPI FHIR.'),
2626 2 => xl('On: Smart on FHIR.'),
2628 '0',
2629 xl('Enable FHIR Provider Client Service')
2632 'fhir_base_url' => array(
2633 xl('FHIR Server Base Address'),
2634 'text',
2635 'https://hapi.fhir.org/baseDstu3/',
2636 xl('Base URL for FHIR Server. Url should end with /')
2639 'medex_enable' => array(
2640 xl('Enable MedEx Communication Service'),
2641 'bool', // data type
2642 '0',
2643 xl('Enable MedEx Communication Service')
2646 'erx_enable' => array(
2647 xl('Enable NewCrop eRx Service'),
2648 'bool',
2649 '0',
2650 xl('Enable NewCrop eRx Service.') . ' ' .
2651 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.')
2654 'erx_newcrop_path' => array(
2655 xl('NewCrop eRx Site Address'),
2656 'text',
2657 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2658 xl('URL for NewCrop eRx Site Address.')
2661 'erx_newcrop_path_soap' => array(
2662 xl('NewCrop eRx Web Service Address'),
2663 'text',
2664 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2665 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2668 'erx_soap_ttl_allergies' => array(
2669 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2670 'num',
2671 '21600',
2672 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2675 'erx_soap_ttl_medications' => array(
2676 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2677 'num',
2678 '21600',
2679 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2682 'erx_account_partner_name' => array(
2683 xl('NewCrop eRx Partner Name'),
2684 'text',
2686 xl('Partner Name issued for NewCrop eRx service.')
2689 'erx_account_name' => array(
2690 xl('NewCrop eRx Name'),
2691 'text',
2693 xl('Account Name issued for NewCrop eRx service.')
2696 'erx_account_password' => array(
2697 xl('NewCrop eRx Password'),
2698 'pass',
2700 xl('Account Password issued for NewCrop eRx service.')
2703 'erx_account_id' => array(
2704 xl('NewCrop eRx Account Id'),
2705 'text',
2706 '1',
2707 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2710 'erx_upload_active' => array(
2711 xl('Only upload active prescriptions'),
2712 'bool',
2713 '0',
2714 xl('Only upload active prescriptions to NewCrop eRx.')
2717 'erx_import_status_message' => array(
2718 xl('Enable NewCrop eRx import status message'),
2719 'bool',
2720 '0',
2721 xl('Enable import status message after visiting NewCrop eRx.')
2724 'erx_medication_display' => array(
2725 xl('Do not display NewCrop eRx Medications uploaded'),
2726 'bool',
2727 '0',
2728 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2731 'erx_allergy_display' => array(
2732 xl('Do not display NewCrop eRx Allergy uploaded'),
2733 'bool',
2734 '0',
2735 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2738 'erx_default_patient_country' => array(
2739 xl('NewCrop eRx Default Patient Country'),
2740 array(
2741 '' => '',
2742 'US' => xl('USA'),
2743 'CA' => xl('Canada'),
2744 'MX' => xl('Mexico'),
2747 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2750 'erx_debug_setting' => array(
2751 xl('NewCrop eRx Debug Setting'),
2752 array(
2753 0 => xl('None'),
2754 1 => xl('Request Only'),
2755 2 => xl('Response Only'),
2756 3 => xl('Request & Response'),
2758 '0',
2759 xl('Log all NewCrop eRx Requests and / or Responses.'),
2762 'weno_rx_enable' => array(
2763 xl('Enable Weno eRx Service'),
2764 'bool',
2765 '0',
2766 xl('Enable Weno eRx Service') . ' ' . xl('Contact Open Med Practice, www.openmedpractice.com for subscribing to the Weno Free eRx service.')
2769 'weno_account_id' => array(
2770 xl('Weno eRx Account Id'),
2771 'text',
2773 xl('Account Id issued for Weno eRx service.')
2776 'weno_account_pass' => array(
2777 xl('Weno eRx Account Pass'),
2778 'text',
2780 xl('Account Id issued for Weno eRx service.')
2783 'weno_provider_id' => array(
2784 xl('Weno eRx Clinic ID'),
2785 'text',
2787 xl('Account Id issued for Your clinics eRx service.')
2790 'ccda_alt_service_enable' => array(
2791 xl('Enable C-CDA Alternate Service'),
2792 array(
2793 0 => xl('Off'),
2794 1 => xl('Care Coordination Only'),
2795 2 => xl('Portal Only'),
2796 3 => xl('Both'),
2798 '0',
2799 xl('Enable C-CDA Alternate Service')
2802 'phimail_enable' => array(
2803 xl('Enable phiMail Direct Messaging Service'),
2804 'bool', // data type
2805 '0',
2806 xl('Enable phiMail Direct Messaging Service')
2809 'phimail_server_address' => array(
2810 xl('phiMail Server Address'),
2811 'text', // data type
2812 'https://phimail.example.com:32541',
2813 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2816 'phimail_username' => array(
2817 xl('phiMail Username'),
2818 'text', // data type
2820 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2823 'phimail_password' => array(
2824 xl('phiMail Password'),
2825 'pass', // data type
2827 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2830 'phimail_notify' => array(
2831 xl('phiMail notification user'),
2832 'text', // data type
2833 'admin',
2834 xl('This user will receive notification of new incoming Direct messages')
2837 'phimail_interval' => array(
2838 xl('phiMail Message Check Interval (minutes)'),
2839 'num', // data type
2840 '5',
2841 xl('Interval between message checks (set to zero for manual checks only)')
2844 'phimail_ccd_enable' => array(
2845 xl('phiMail Allow CCD Send'),
2846 'bool', // data type
2847 '0',
2848 xl('phiMail Allow CCD Send')
2851 'phimail_ccr_enable' => array(
2852 xl('phiMail Allow CCR Send'),
2853 'bool', // data type
2854 '0',
2855 xl('phiMail Allow CCR Send')
2859 'Rx' => array(
2860 'rx_enable_DEA' => array(
2861 xl('Rx Enable DEA #'),
2862 'bool', // data type
2863 '1',
2864 xl('Rx Enable DEA #')
2866 'rx_show_DEA' => array(
2867 xl('Rx Show DEA #'),
2868 'bool', // data type
2869 '0',
2870 xl('Rx Show DEA #')
2872 'rx_enable_NPI' => array(
2873 xl('Rx Enable NPI'),
2874 'bool', // data type
2875 '0',
2876 xl('Rx Enable NPI')
2878 'rx_show_NPI' => array(
2879 xl('Rx Show NPI'),
2880 'bool', // data type
2881 '0',
2882 xl('Rx Show NPI')
2884 'rx_enable_SLN' => array(
2885 xl('Rx Enable State Lic. #'),
2886 'bool', // data type
2887 '0',
2888 xl('Rx Enable State Lic. #')
2890 'rx_show_SLN' => array(
2891 xl('Rx Show State Lic. #'),
2892 'bool', // data type
2893 '0',
2894 xl('Rx Show State Lic. #')
2896 'rx_show_drug-drug' => array(
2897 xl('Rx NLM Drug-Drug'),
2898 'bool', // data type
2899 '0',
2900 xl('Rx NLM Drug-Drug')
2902 'rx_paper_size' => array(
2903 xl('Rx Paper Size'), // descriptive name
2904 array(
2905 'LETTER' => xl('Letter Paper Size'),
2906 'LEGAL' => xl('Legal Paper Size'),
2907 'FOLIO' => xl('Folio Paper Size'),
2908 'EXECUTIVE' => xl('Executive Paper Size'),
2909 '4A0' => ('4A0' . " " . xl('Paper Size')),
2910 '2A0' => ('2A0' . " " . xl('Paper Size')),
2911 'A0' => ('A0' . " " . xl('Paper Size')),
2912 'A1' => ('A1' . " " . xl('Paper Size')),
2913 'A2' => ('A2' . " " . xl('Paper Size')),
2914 'A3' => ('A3' . " " . xl('Paper Size')),
2915 'A4' => ('A4' . " " . xl('Paper Size')),
2916 'A5' => ('A5' . " " . xl('Paper Size')),
2917 'A6' => ('A6' . " " . xl('Paper Size')),
2918 'A7' => ('A7' . " " . xl('Paper Size')),
2919 'A8' => ('A8' . " " . xl('Paper Size')),
2920 'A9' => ('A9' . " " . xl('Paper Size')),
2921 'A10' => ('A10' . " " . xl('Paper Size')),
2922 'B0' => ('B0' . " " . xl('Paper Size')),
2923 'B1' => ('B1' . " " . xl('Paper Size')),
2924 'B2' => ('B2' . " " . xl('Paper Size')),
2925 'B3' => ('B3' . " " . xl('Paper Size')),
2926 'B4' => ('B4' . " " . xl('Paper Size')),
2927 'B5' => ('B5' . " " . xl('Paper Size')),
2928 'B6' => ('B6' . " " . xl('Paper Size')),
2929 'B7' => ('B7' . " " . xl('Paper Size')),
2930 'B8' => ('B8' . " " . xl('Paper Size')),
2931 'B9' => ('B9' . " " . xl('Paper Size')),
2932 'B10' => ('B10' . " " . xl('Paper Size')),
2933 'C0' => ('C0' . " " . xl('Paper Size')),
2934 'C1' => ('C1' . " " . xl('Paper Size')),
2935 'C2' => ('C2' . " " . xl('Paper Size')),
2936 'C3' => ('C3' . " " . xl('Paper Size')),
2937 'C4' => ('C4' . " " . xl('Paper Size')),
2938 'C5' => ('C5' . " " . xl('Paper Size')),
2939 'C6' => ('C6' . " " . xl('Paper Size')),
2940 'C7' => ('C7' . " " . xl('Paper Size')),
2941 'C8' => ('C8' . " " . xl('Paper Size')),
2942 'C9' => ('C9' . " " . xl('Paper Size')),
2943 'C10' => ('C10' . " " . xl('Paper Size')),
2944 'RA0' => ('RA0' . " " . xl('Paper Size')),
2945 'RA1' => ('RA1' . " " . xl('Paper Size')),
2946 'RA2' => ('RA2' . " " . xl('Paper Size')),
2947 'RA3' => ('RA3' . " " . xl('Paper Size')),
2948 'RA4' => ('RA4' . " " . xl('Paper Size')),
2949 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2950 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2951 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2952 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2953 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2955 'LETTER', // default = tree menu
2956 xl('Rx Paper Size')
2958 'rx_left_margin' => array(
2959 xl('Rx Left Margin (px)'),
2960 'num',
2961 '30',
2962 xl('Rx Left Margin (px)')
2964 'rx_right_margin' => array(
2965 xl('Rx Right Margin (px)'),
2966 'num',
2967 '30',
2968 xl('Rx Right Margin (px)')
2970 'rx_top_margin' => array(
2971 xl('Rx Top Margin (px)'),
2972 'num',
2973 '72',
2974 xl('Rx Top Margin (px)')
2976 'rx_bottom_margin' => array(
2977 xl('Rx Bottom Margin (px)'),
2978 'num',
2979 '30',
2980 xl('Rx Bottom Margin (px)')
2984 'PDF' => array(
2985 'pdf_layout' => array(
2986 xl('Layout'),
2987 array(
2988 'P' => xl('Portrait'),
2989 'L' => xl('Landscape')
2991 'P', //defaut
2992 xl("Choose Layout Direction"),
2994 'pdf_language' => array(
2995 xl('PDF Language'),
2996 array(
2997 'aa' => xl('Afar'),
2998 'af' => xl('Afrikaans'),
2999 'ak' => xl('Akan'),
3000 'sq' => xl('Albanian'),
3001 'am' => xl('Amharic'),
3002 'ar' => xl('Arabic'),
3003 'an' => xl('Aragonese'),
3004 'hy' => xl('Armenian'),
3005 'as' => xl('Assamese'),
3006 'av' => xl('Avaric'),
3007 'ae' => xl('Avestan'),
3008 'ay' => xl('Aymara'),
3009 'az' => xl('Azerbaijani'),
3010 'bm' => xl('Bambara'),
3011 'ba' => xl('Bashkir'),
3012 'eu' => xl('Basque'),
3013 'be' => xl('Belarusian'),
3014 'bn' => xl('Bengali- Bangla'),
3015 'bh' => xl('Bihari'),
3016 'bi' => xl('Bislama'),
3017 'bs' => xl('Bosnian'),
3018 'br' => xl('Breton'),
3019 'bg' => xl('Bulgarian'),
3020 'my' => xl('Burmese'),
3021 'ca' => xl('Catalan- Valencian'),
3022 'ch' => xl('Chamorro'),
3023 'ce' => xl('Chechen'),
3024 'ny' => xl('Chichewa- Chewa- Nyanja'),
3025 'zh' => xl('Chinese'),
3026 'cv' => xl('Chuvash'),
3027 'kw' => xl('Cornish'),
3028 'co' => xl('Corsican'),
3029 'cr' => xl('Cree'),
3030 'hr' => xl('Croatian'),
3031 'cs' => xl('Czech'),
3032 'da' => xl('Danish'),
3033 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
3034 'nl' => xl('Dutch'),
3035 'dz' => xl('Dzongkha'),
3036 'en' => xl('English'),
3037 'eo' => xl('Esperanto'),
3038 'et' => xl('Estonian'),
3039 'ee' => xl('Ewe'),
3040 'fo' => xl('Faroese'),
3041 'fj' => xl('Fijian'),
3042 'fi' => xl('Finnish'),
3043 'fr' => xl('French'),
3044 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
3045 'gl' => xl('Galician'),
3046 'ka' => xl('Georgian'),
3047 'de' => xl('German'),
3048 'el' => xl('Greek, Modern'),
3049 'gn' => xl('Guarani'),
3050 'gu' => xl('Gujarati'),
3051 'ht' => xl('Haitian- Haitian Creole'),
3052 'ha' => xl('Hausa'),
3053 'he' => xl('Hebrew (modern)'),
3054 'hz' => xl('Herero'),
3055 'hi' => xl('Hindi'),
3056 'ho' => xl('Hiri Motu'),
3057 'hu' => xl('Hungarian'),
3058 'ia' => xl('Interlingua'),
3059 'id' => xl('Indonesian'),
3060 'ie' => xl('Interlingue'),
3061 'ga' => xl('Irish'),
3062 'ig' => xl('Igbo'),
3063 'ik' => xl('Inupiaq'),
3064 'io' => xl('Ido'),
3065 'is' => xl('Icelandic'),
3066 'it' => xl('Italian'),
3067 'iu' => xl('Inuktitut'),
3068 'ja' => xl('Japanese'),
3069 'jv' => xl('Javanese'),
3070 'kl' => xl('Kalaallisut, Greenlandic'),
3071 'kn' => xl('Kannada'),
3072 'kr' => xl('Kanuri'),
3073 'ks' => xl('Kashmiri'),
3074 'kk' => xl('Kazakh'),
3075 'km' => xl('Khmer'),
3076 'ki' => xl('Kikuyu, Gikuyu'),
3077 'rw' => xl('Kinyarwanda'),
3078 'ky' => xl('Kyrgyz'),
3079 'kv' => xl('Komi'),
3080 'kg' => xl('Kongo'),
3081 'ko' => xl('Korean'),
3082 'ku' => xl('Kurdish'),
3083 'kj' => xl('Kwanyama, Kuanyama'),
3084 'la' => xl('Latin'),
3085 'lb' => xl('Luxembourgish, Letzeburgesch'),
3086 'lg' => xl('Ganda'),
3087 'li' => xl('Limburgish, Limburgan, Limburger'),
3088 'ln' => xl('Lingala'),
3089 'lo' => xl('Lao'),
3090 'lt' => xl('Lithuanian'),
3091 'lu' => xl('Luba-Katanga'),
3092 'lv' => xl('Latvian'),
3093 'gv' => xl('Manx'),
3094 'mk' => xl('Macedonian'),
3095 'mg' => xl('Malagasy'),
3096 'ms' => xl('Malay'),
3097 'ml' => xl('Malayalam'),
3098 'mt' => xl('Maltese'),
3099 'mi' => xl('Maori'),
3100 'mr' => xl('Marathi (Marathi)'),
3101 'mh' => xl('Marshallese'),
3102 'mn' => xl('Mongolian'),
3103 'na' => xl('Nauru'),
3104 'nv' => xl('Navajo, Navaho'),
3105 'nb' => xl('Norwegian Bokmal'),
3106 'nd' => xl('North Ndebele'),
3107 'ne' => xl('Nepali'),
3108 'ng' => xl('Ndonga'),
3109 'nn' => xl('Norwegian Nynorsk'),
3110 'no' => xl('Norwegian'),
3111 'ii' => xl('Nuosu'),
3112 'nr' => xl('South Ndebele'),
3113 'oc' => xl('Occitan'),
3114 'oj' => xl('Ojibwe, Ojibwa'),
3115 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
3116 'om' => xl('Oromo'),
3117 'or' => xl('Oriya'),
3118 'os' => xl('Ossetian, Ossetic'),
3119 'pa' => xl('Panjabi, Punjabi'),
3120 'pi' => xl('Pali'),
3121 'fa' => xl('Persian (Farsi)'),
3122 'pl' => xl('Polish'),
3123 'ps' => xl('Pashto, Pushto'),
3124 'pt' => xl('Portuguese'),
3125 'qu' => xl('Quechua'),
3126 'rm' => xl('Romansh'),
3127 'rn' => xl('Kirundi'),
3128 'ro' => xl('Romanian'),
3129 'ru' => xl('Russian'),
3130 'sa' => xl('Sanskrit (Samskrta)'),
3131 'sc' => xl('Sardinian'),
3132 'sd' => xl('Sindhi'),
3133 'se' => xl('Northern Sami'),
3134 'sm' => xl('Samoan'),
3135 'sg' => xl('Sango'),
3136 'sr' => xl('Serbian'),
3137 'gd' => xl('Scottish Gaelic- Gaelic'),
3138 'sn' => xl('Shona'),
3139 'si' => xl('Sinhala, Sinhalese'),
3140 'sk' => xl('Slovak'),
3141 'sl' => xl('Slovene'),
3142 'so' => xl('Somali'),
3143 'st' => xl('Southern Sotho'),
3144 'es' => xl('Spanish- Castilian'),
3145 'su' => xl('Sundanese'),
3146 'sw' => xl('Swahili'),
3147 'ss' => xl('Swati'),
3148 'sv' => xl('Swedish'),
3149 'ta' => xl('Tamil'),
3150 'te' => xl('Telugu'),
3151 'tg' => xl('Tajik'),
3152 'th' => xl('Thai'),
3153 'ti' => xl('Tigrinya'),
3154 'bo' => xl('Tibetan Standard, Tibetan, Central'),
3155 'tk' => xl('Turkmen'),
3156 'tl' => xl('Tagalog'),
3157 'tn' => xl('Tswana'),
3158 'to' => xl('Tonga (Tonga Islands)'),
3159 'tr' => xl('Turkish'),
3160 'ts' => xl('Tsonga'),
3161 'tt' => xl('Tatar'),
3162 'tw' => xl('Twi'),
3163 'ty' => xl('Tahitian'),
3164 'ug' => xl('Uyghur, Uighur'),
3165 'uk' => xl('Ukrainian'),
3166 'ur' => xl('Urdu'),
3167 'uz' => xl('Uzbek'),
3168 've' => xl('Venda'),
3169 'vi' => xl('Vietnamese'),
3170 'vo' => xl('Volapuk'),
3171 'wa' => xl('Walloon'),
3172 'cy' => xl('Welsh'),
3173 'wo' => xl('Wolof'),
3174 'fy' => xl('Western Frisian'),
3175 'xh' => xl('Xhosa'),
3176 'yi' => xl('Yiddish'),
3177 'yo' => xl('Yoruba'),
3178 'za' => xl('Zhuang, Chuang'),
3179 'zu' => xl('Zulu'),
3181 'en', // default English
3182 xl('Choose PDF languange Preference'),
3184 'pdf_size' => array(
3185 xl('Paper Size'), // Descriptive Name
3186 array(
3187 'LETTER' => xl('Letter Paper Size'),
3188 'LEGAL' => xl('Legal Paper Size'),
3189 'FOLIO' => xl('Folio Paper Size'),
3190 'EXECUTIVE' => xl('Executive Paper Size'),
3191 '4A0' => ('4A0' . " " . xl('Paper Size')),
3192 '2A0' => ('2A0' . " " . xl('Paper Size')),
3193 'A0' => ('A0' . " " . xl('Paper Size')),
3194 'A1' => ('A1' . " " . xl('Paper Size')),
3195 'A2' => ('A2' . " " . xl('Paper Size')),
3196 'A3' => ('A3' . " " . xl('Paper Size')),
3197 'A4' => ('A4' . " " . xl('Paper Size')),
3198 'A5' => ('A5' . " " . xl('Paper Size')),
3199 'A6' => ('A6' . " " . xl('Paper Size')),
3200 'A7' => ('A7' . " " . xl('Paper Size')),
3201 'A8' => ('A8' . " " . xl('Paper Size')),
3202 'A9' => ('A9' . " " . xl('Paper Size')),
3203 'A10' => ('A10' . " " . xl('Paper Size')),
3204 'B0' => ('B0' . " " . xl('Paper Size')),
3205 'B1' => ('B1' . " " . xl('Paper Size')),
3206 'B2' => ('B2' . " " . xl('Paper Size')),
3207 'B3' => ('B3' . " " . xl('Paper Size')),
3208 'B4' => ('B4' . " " . xl('Paper Size')),
3209 'B5' => ('B5' . " " . xl('Paper Size')),
3210 'B6' => ('B6' . " " . xl('Paper Size')),
3211 'B7' => ('B7' . " " . xl('Paper Size')),
3212 'B8' => ('B8' . " " . xl('Paper Size')),
3213 'B9' => ('B9' . " " . xl('Paper Size')),
3214 'B10' => ('B10' . " " . xl('Paper Size')),
3215 'C0' => ('C0' . " " . xl('Paper Size')),
3216 'C1' => ('C1' . " " . xl('Paper Size')),
3217 'C2' => ('C2' . " " . xl('Paper Size')),
3218 'C3' => ('C3' . " " . xl('Paper Size')),
3219 'C4' => ('C4' . " " . xl('Paper Size')),
3220 'C5' => ('C5' . " " . xl('Paper Size')),
3221 'C6' => ('C6' . " " . xl('Paper Size')),
3222 'C7' => ('C7' . " " . xl('Paper Size')),
3223 'C8' => ('C8' . " " . xl('Paper Size')),
3224 'C9' => ('C9' . " " . xl('Paper Size')),
3225 'C10' => ('C10' . " " . xl('Paper Size')),
3226 'RA0' => ('RA0' . " " . xl('Paper Size')),
3227 'RA1' => ('RA1' . " " . xl('Paper Size')),
3228 'RA2' => ('RA2' . " " . xl('Paper Size')),
3229 'RA3' => ('RA3' . " " . xl('Paper Size')),
3230 'RA4' => ('RA4' . " " . xl('Paper Size')),
3231 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3232 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3233 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3234 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3235 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3237 'LETTER',
3238 xl('Choose Paper Size')
3240 'pdf_left_margin' => array(
3241 xl('Left Margin (mm)'),
3242 'num',
3243 '5',
3244 xl('Left Margin (mm)')
3246 'pdf_right_margin' => array(
3247 xl('Right Margin (mm)'),
3248 'num',
3249 '5',
3250 xl('Right Margin (mm)')
3252 'pdf_top_margin' => array(
3253 xl('Top Margin (mm)'),
3254 'num',
3255 '5',
3256 xl('Top Margin (mm)')
3258 'pdf_bottom_margin' => array(
3259 xl('Bottom Margin (px)'),
3260 'num',
3261 '8',
3262 xl('Bottom Margin (px)')
3264 'pdf_output' => array(
3265 xl('Output Type'),
3266 array(
3267 'D' => xl('Download'),
3268 'I' => xl('Inline')
3270 'D', //defaut
3271 xl("Choose Download or Display Inline"),
3274 'chart_label_type' => array(
3275 xl('Patient Label Type'),
3276 array(
3277 '0' => xl('None'),
3278 '1' => '5160',
3279 '2' => '5161',
3280 '3' => '5162'
3282 '1', // default
3283 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3286 'barcode_label_type' => array(
3287 xl('Barcode Label Type'),
3288 array(
3289 '0' => xl('None'),
3290 '1' => 'std25',
3291 '2' => 'int25',
3292 '3' => 'ean8',
3293 '4' => 'ean13',
3294 '5' => 'upc',
3295 '6' => 'code11',
3296 '7' => 'code39',
3297 '8' => 'code93',
3298 '9' => 'code128',
3299 '10' => 'codabar',
3300 '11' => 'msi',
3301 '12' => 'datamatrix'
3303 '9', // default = None
3304 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3307 'addr_label_type' => array(
3308 xl('Print Patient Address Label'),
3309 'bool', // data type
3310 '1', // default = false
3311 xl('Select to print patient address labels from popups in left nav screen.')
3314 'env_x_width' => array(
3315 xl('Envelope Width in mm'),
3316 'num', // data type
3317 '104.775',
3318 xl('In Portrait mode, determines the width of the envelope along the x-axis in mm')
3321 'env_y_height' => array(
3322 xl('Envelope Height in mm'),
3323 'num', // data type
3324 '241.3',
3325 xl('In Portrait mode, determines the height of the envelope along the y-axis in mm')
3328 'env_font_size' => array(
3329 xl('Font Size in Pt'),
3330 'num', // data type
3331 '14',
3332 xl('Sets the font of the address text on the envelope in mm')
3335 'env_x_dist' => array(
3336 xl('Envelope x-axis starting pt'),
3337 'num', // data type
3338 '65',
3339 xl('Distance from the \'top\' of the envelope in mm')
3342 'env_y_dist' => array(
3343 xl('Envelope y-axis starting pt'),
3344 'num', // data type
3345 '220',
3346 xl('Distance from the right most edge of the envelope in portrait position in mm')