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