fix calendar search edit dialog
[openemr.git] / library / globals.inc.php
blob4c160d36d6172185e6a8b4dc13dd82dafd52951a
1 <?php
2 /*
3 * This program sets the global variables.
5 * @package OpenEMR
6 * @author Rod Roark <rod@sunsetsystems.com>
7 * @author Stephen Waite <stephen.waite@cmsvt.com>
8 * @copyright Copyright (c) 2015 Rod Roark <rod@sunsetsystems.com>
9 * @copyright Copyright (c) 2018 Stephen Waite <stephen.waite@cmsvt.com>
10 * @link https://github.com/openemr/openemr/tree/master
11 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
14 // $GLOBALS['print_command'] is the
15 // Print command for spooling to printers, used by statements.inc.php
16 // This is the command to be used for printing (without the filename).
17 // The word following "-P" should be the name of your printer. This
18 // example is designed for 8.5x11-inch paper with 1-inch margins,
19 // 10 CPI, 6 LPI, 65 columns, 54 lines per page.
21 // IF lpr services are installed on Windows this setting will be similar
22 // Otherwise configure it as needed (print /d:PRN) might be an option for Windows parallel printers
24 // Current supported languages: // Allow capture of term for translation:
25 // Albanian // xl('Albanian')
26 // Amharic // xl('Amharic')
27 // Arabic // xl('Arabic')
28 // Armenian // xl('Armenian')
29 // Bahasa Indonesia // xl('Bahasa Indonesia')
30 // Bengali // xl('Bengali')
31 // Bosnian // xl('Bosnian')
32 // Bulgarian // xl('Bulgarian')
33 // Chinese (Simplified) // xl('Chinese (Simplified)')
34 // Chinese (Traditional) // xl('Chinese (Traditional)')
35 // Croatian // xl('Croatian')
36 // Czech // xl('Czech')
37 // Danish // xl('Danish')
38 // Dutch // xl('Dutch')
39 // English (Indian) // xl('English (Indian)')
40 // English (Standard) // xl('English (Standard)')
41 // Estonian // xl('Estonian')
42 // Filipino // xl('Filipino')
43 // Finnish // xl('Finnish')
44 // French // xl('French (Standard)')
45 // French // xl('French (Canadian)')
46 // Georgian // xl('Georgian')
47 // German // xl('German')
48 // Greek // xl('Greek')
49 // Hebrew // xl('Hebrew')
50 // Hindi // xl('Hindi')
51 // Hungarian // xl('Hungarian')
52 // Italian // xl('Italian')
53 // Japanese // xl('Japanese')
54 // Korean // xl('Korean')
55 // Lithuanian // xl('Lithuanian')
56 // Marathi // xl('Marathi')
57 // Mongolian // xl('Mongolian')
58 // Norwegian // xl('Norwegian')
59 // Persian // xl('Persian')
60 // Polish // xl('Polish')
61 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
62 // Portuguese (European) // xl('Portuguese (European)')
63 // Romanian // xl('Romanian')
64 // Russian // xl('Russian')
65 // Serbian // xl('Serbian')
66 // Sinhala // xl('Sinhala')
67 // Slovak // xl('Slovak')
68 // Somali // xl('Somali')
69 // Spanish (Latin American) // xl('Spanish (Latin American)')
70 // Spanish (Spain) // xl('Spanish (Spain)')
71 // Swedish // xl('Swedish')
72 // Tamil // xl('Tamil')
73 // Telugu // xl('Telugu')
74 // Thai // xl('Thai')
75 // Turkish // xl('Turkish')
76 // Ukrainian // xl('Ukrainian')
77 // Urdu // xl('Urdu')
78 // Vietnamese // xl('Vietnamese')
80 // OS-dependent stuff.
81 if (stristr(PHP_OS, 'WIN')) {
82 // MS Windows
83 $mysql_bin_dir = 'C:/xampp/mysql/bin';
84 $perl_bin_dir = 'C:/xampp/perl/bin';
85 $temporary_files_dir = 'C:/windows/temp';
86 $backup_log_dir = 'C:/windows/temp';
87 } else {
88 // Everything else
89 $mysql_bin_dir = '/usr/bin';
90 $perl_bin_dir = '/usr/bin';
91 $temporary_files_dir = '/tmp';
92 $backup_log_dir = '/tmp';
95 // Language constant declarations:
96 // xl('Appearance')
97 // xl('Locale')
98 // xl('Features')
99 // xl('Calendar')
100 // xl('Security')
101 // xl('Notifications')
102 // xl('Miscellaneous')
104 // List of user specific tabs and globals
105 $USER_SPECIFIC_TABS = array('Appearance',
106 'Locale',
107 'Features',
108 'Billing',
109 'Report',
110 'Calendar',
111 'CDR',
112 'Connectors');
113 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
114 'default_second_tab',
115 'new_tabs_layout',
116 'theme_tabs_layout',
117 'css_header',
118 'menu_styling_vertical',
119 'default_encounter_view',
120 'gbl_pt_list_page_size',
121 'gbl_pt_list_new_window',
122 'units_of_measurement',
123 'us_weight_format',
124 'date_display_format',
125 'time_display_format',
126 'enable_help',
127 'posting_adj_disable',
128 'messages_due_date',
129 'expand_form',
130 'ledger_begin_date',
131 'print_next_appointment_on_ledger',
132 'calendar_view_type',
133 'event_color',
134 'pat_trkr_timer',
135 'ptkr_visit_reason',
136 'ptkr_date_range',
137 'ptkr_start_date',
138 'ptkr_end_date',
139 'checkout_roll_off',
140 'patient_birthday_alert',
141 'patient_birthday_alert_manual_off',
142 'erx_import_status_message');
144 // Gets array of time zones supported by PHP.
146 function gblTimeZones()
148 $zones = timezone_identifiers_list();
149 $arr = array('' => xl('Unassigned'));
150 foreach ($zones as $zone) {
151 $arr[$zone] = str_replace('_', ' ', $zone);
154 return $arr;
157 $GLOBALS_METADATA = array(
159 // Appearance Tab
161 'Appearance' => array(
163 'default_top_pane' => array(
164 xl('Main Top Pane Screen(Or Default First Tab)'), // descriptive name
165 array(
166 'main_info.php' => xl('Calendar Screen'),
167 '../new/new.php' => xl('Patient Search/Add Screen'),
168 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
169 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
170 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen')
172 'main_info.php', // default = calendar
173 xl('Main Top Pane Screen(Or Default First Tab)')
176 'default_second_tab' => array(
177 xl('Default Second Tab'), // descriptive name
178 array(
179 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen'),
180 'main_info.php' => xl('Calendar Screen'),
181 '../new/new.php' => xl('Patient Search/Add Screen'),
182 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
183 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
185 '../../interface/main/messages/messages.php?form_active=1', // default = messages
186 xl('Default Second Tab')
189 'new_tabs_layout' => array(
190 xl('Layout (need to logout/login after change this setting)'),
191 array(
192 '0' => xl('Frame'),
193 '1' => xl('Tabs'),
195 '1',
196 xl('Choose the layout (need to logout and then login to see this new setting).')
199 'theme_tabs_layout' => array(
200 xl('Tabs Layout Theme (need to logout/login after change this setting)'),
201 'tabs_css',
202 'tabs_style_full.css',
203 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.')
206 'css_header' => array(
207 xl('General Theme (need to logout/login after change this setting)'),
208 'css',
209 'style_light.css',
210 xl('Pick a general theme (need to logout/login after change this setting).')
213 'font-family' => array(
214 xl('Default font (need to logout/login after change this setting)'),
215 array(
216 '__default__' => 'Use Theme Font',
217 'Arial, Helvetica, sans-serif' => "Arial",
218 '"Arial Black", Gadget, sans-serif' => "Arial Black",
219 'Impact, Charcoal, sans-serif' => "Impact",
220 '"Lucida Sans Unicode", "Lucida Grande", sans-serif' => "Lucida Sans",
221 'Tahoma, Geneva, sans-serif' => "Tahoma",
222 '"Trebuchet MS", Helvetica, sans-serif' => "Trebuchet MS",
223 'Verdana, Geneva, sans-serif' => "Verdana",
224 'lato' => "Lato",
226 '__default__',
227 xl('Select the default font'),
230 'font-size' => array(
231 xl('Default font size (need to logout/login after change this setting)'),
232 array(
233 '__default__' => 'Use Theme Font Size',
234 '10px' => '10px',
235 '12px' => '12px',
236 '14px' => '14px',
237 '16px' => '16px',
238 '18px' => '18px',
240 '__default__',
241 xl("Select the default font size"),
244 'menu_styling_vertical' => array(
245 xl('Vertical Menu Style'),
246 array(
247 '0' => xl('Tree'),
248 '1' => xl('Sliding'),
250 '1',
251 xl('Vertical Menu Style')
254 'default_encounter_view' => array(
255 xl('Default Encounter View'), // descriptive name
256 array(
257 '0' => xl('Clinical View'),
258 '1' => xl('Billing View'),
260 '0', // default = tree menu
261 xl('Choose your default encounter view')
264 'gbl_nav_area_width' => array(
265 xl('Navigation Area Width'),
266 'num',
267 '175',
268 xl('Width in pixels of the left navigation frame.')
271 'openemr_name' => array(
272 xl('Application Title'),
273 'text',
274 'OpenEMR',
275 xl('Application name for login page and main window title.')
278 'enable_group_therapy' => array(
279 xl('Enable Group Therapy'),
280 'bool', // data type
281 '0', // default = false
282 xl('Enables groups module in system.')
285 'full_new_patient_form' => array(
286 xl('New Patient Form'),
288 array(
289 '0' => xl('Old-style static form without search or duplication check'),
290 '1' => xl('All demographics fields, with search and duplication check'),
291 '2' => xl('Mandatory or specified fields only, search and dup check'),
292 '3' => xl('Mandatory or specified fields only, dup check, no search'),
293 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
295 '1', // default
296 xl('Style of form used for adding new patients')
299 'gbl_edit_patient_form' => array(
300 xl('Modify Patient Form'),
302 array(
303 '0' => xl('Standard check'),
304 '1' => xl('Zend Module check in addition to standard check')
306 '0', // default
307 xl('Validation mechanism for when modifying patient demographics.')
310 'patient_search_results_style' => array(
311 xl('Patient Search Results Style'),
312 array(
313 '0' => xl('Encounter statistics'),
314 '1' => xl('Mandatory and specified fields'),
316 '0', // default
317 xl('Type of columns displayed for patient search results')
320 'gbl_tall_nav_area' => array(
321 xl('Tall Navigation Area'),
322 'bool', // data type
323 '0', // default = false
324 xl('Navigation area uses full height of frameset')
327 'gbl_nav_visit_forms' => array(
328 xl('Navigation Area Visit Forms'),
329 'bool', // data type
330 '1', // default = true
331 xl('Navigation area includes encounter forms')
334 'simplified_demographics' => array(
335 xl('Simplified Demographics'),
336 'bool', // data type
337 '0', // default = false
338 xl('Omit insurance and some other things from the demographics form')
341 'simplified_prescriptions' => array(
342 xl('Simplified Prescriptions'),
343 'bool', // data type
344 '0', // default = false
345 xl('Omit form, route and interval which then become part of dosage')
348 'simplified_copay' => array(
349 xl('Simplified Co-Pay'),
350 'bool', // data type
351 '0', // default = false
352 xl('Omit method of payment from the co-pay panel')
355 'use_charges_panel' => array(
356 xl('Use Charges Panel'),
357 'bool', // data type
358 '0', // default = false
359 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
362 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
363 'enable_fees_in_left_menu' => array(
364 xl('Enable Fees Submenu'),
365 'bool', // data type
366 '1', // default = true
367 xl('Enable Fees Submenu')
369 'enable_batch_payment' => array(
370 xl('Enable Batch Payment'),
371 'bool', // data type
372 '1', // default = true
373 xl('Enable Batch Payment')
375 'enable_posting' => array(
376 xl('Enable Posting'),
377 'bool', // data type
378 '1', // default = true
379 xl('Enable Posting')
381 // EDI history 2012-09-13
382 'enable_edihistory_in_left_menu' => array(
383 xl('Enable EDI History'),
384 'bool', // data type
385 '1', // default = true
386 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
389 'online_support_link' => array(
390 xl('Online Support Link'),
391 'text', // data type
392 'http://open-emr.org/',
393 xl('URL for OpenEMR support.')
396 'support_phone_number' => array(
397 xl('Support Phone Number'),
398 'text',
400 xl('Phone Number for Vendor Support that Appears on the About Page.')
403 'encounter_page_size' => array(
404 xl('Encounter Page Size'),
405 array(
406 '0' => xl('Show All'),
407 '5' => '5',
408 '10' => '10',
409 '15' => '15',
410 '20' => '20',
411 '25' => '25',
412 '50' => '50',
414 '20',
415 xl('Number of encounters to display per page.')
418 'gbl_pt_list_page_size' => array(
419 xl('Patient List Page Size'),
420 array(
421 '10' => '10',
422 '25' => '25',
423 '50' => '50',
424 '100' => '100',
426 '10',
427 xl('Number of patients to display per page in the patient list.')
430 'gbl_pt_list_new_window' => array(
431 xl('Patient List New Window'),
432 'bool', // data type
433 '0', // default = false
434 xl('Default state of New Window checkbox in the patient list.')
437 'num_of_messages_displayed' => array(
438 xl('Number of Messages Displayed in Patient Summary'),
439 'num',
440 '3',
441 xl('This is the number of messages that will be displayed in the messages widget in the patient summary screen.')
444 'gbl_vitals_options' => array(
445 xl('Vitals Form Options'),
446 array(
447 '0' => xl('Standard'),
448 '1' => xl('Omit circumferences'),
450 '0', // default
451 xl('Special treatment for the Vitals form')
454 'insurance_information' => array(
455 xl('Show Additional Insurance Information'), // descriptive name
456 array(
457 '0' => xl('None'),
458 '1' => xl('Address Only'),
459 '2' => xl('Address and Postal Code'),
460 '3' => xl('Address and State'),
461 '4' => xl('Address, State and Postal Code'),
462 '5' => xl('Address, City, State and Postal Code'),
463 '6' => xl('Postal Code and Box Number')
465 '5', // default
466 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
469 'gb_how_sort_list' => array(
470 xl('How to sort a drop-lists'),
471 array(
472 '0' => xl('Sort by seq'),
473 '1' => xl('Sort alphabetically')
475 '0',
476 xl('What kind of sorting will be in the drop lists.')
479 'show_label_login' => array(
480 xl('Show Title on Login'),
481 'bool', // data type
482 '0', // default = false
483 xl('Show Title on Login')
486 'extra_logo_login' => array(
487 xl('Show Extra Logo on Login'),
488 'bool', // data type
489 '0', // default = false
490 xl('Show Extra Logo on Login')
493 'tiny_logo_1' => array(
494 xl('Show Mini Logo 1'),
495 'bool', // data type
496 '0', // default = false
497 xl('Show Mini Logo 1')
500 'tiny_logo_2' => array(
501 xl('Show Mini Logo 2'),
502 'bool', // data type
503 '0', // default = false
504 xl('Show Mini Logo 2')
509 // Locale Tab
511 'Locale' => array(
513 'language_default' => array(
514 xl('Default Language'),
515 'lang', // data type
516 'English (Standard)', // default = english
517 xl('Default language if no other is allowed or chosen.')
520 'language_menu_showall' => array(
521 xl('All Languages Allowed'),
522 'bool', // data type
523 '1', // default = true
524 xl('Allow all available languages as choices on menu at login.')
527 'language_menu_other' => array(
528 xl('Allowed Languages'),
529 'm_lang', // data type
530 '', // default = none
531 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
534 'allow_debug_language' => array(
535 xl('Allow Debugging Language'),
536 'bool', // data type
537 '1', // default = true during development and false for production releases
538 xl('This will allow selection of the debugging (\'dummy\') language.')
541 'translate_no_safe_apostrophe' => array(
542 xl('Do Not Use Safe Apostrophe'),
543 'bool', // data type
544 '0', // default = false
545 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)')
548 'translate_layout' => array(
549 xl('Translate Layouts'),
550 'bool', // data type
551 '1', // default = true
552 xl('Is text from form layouts to be translated?')
555 'translate_lists' => array(
556 xl('Translate Lists'),
557 'bool', // data type
558 '1', // default = true
559 xl('Is text from lists to be translated?')
562 'translate_gacl_groups' => array(
563 xl('Translate Access Control Groups'),
564 'bool', // data type
565 '1', // default = true
566 xl('Are access control group names to be translated?')
569 'translate_form_titles' => array(
570 xl('Translate Patient Note Titles'),
571 'bool', // data type
572 '1', // default = true
573 xl('Are patient note titles to be translated?')
576 'translate_document_categories' => array(
577 xl('Translate Document Categories'),
578 'bool', // data type
579 '1', // default = true
580 xl('Are document category names to be translated?')
583 'translate_appt_categories' => array(
584 xl('Translate Appointment Categories'),
585 'bool', // data type
586 '1', // default = true
587 xl('Are appointment category names to be translated?')
590 'units_of_measurement' => array(
591 xl('Units for Visit Forms'),
592 array(
593 '1' => xl('Show both US and metric (main unit is US)'),
594 '2' => xl('Show both US and metric (main unit is metric)'),
595 '3' => xl('Show US only'),
596 '4' => xl('Show metric only'),
598 '1', // default = Both/US
599 xl('Applies to the Vitals form and Growth Chart')
602 'us_weight_format' => array(
603 xl('Display Format for US Weights'),
604 array(
605 '1' => xl('Show pounds as decimal value'),
606 '2' => xl('Show pounds and ounces')
608 '1',
609 xl('Applies to Vitals form')
612 'phone_country_code' => array(
613 xl('Telephone Country Code'),
614 'num',
615 '1', // default = North America
616 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
619 'date_display_format' => array(
620 xl('Date Display Format'),
621 array(
622 '0' => xl('YYYY-MM-DD'),
623 '1' => xl('MM/DD/YYYY'),
624 '2' => xl('DD/MM/YYYY'),
626 '0',
627 xl('Format used to display most dates.')
630 'time_display_format' => array(
631 xl('Time Display Format'),
632 array(
633 '0' => xl('24 hr'),
634 '1' => xl('12 hr'),
636 '0',
637 xl('Format used to display most times.')
640 'gbl_time_zone' => array(
641 xl('Time Zone'),
642 gblTimeZones(),
644 xl('If unassigned will default to php.ini setting for date.timezone.')
647 'currency_decimals' => array(
648 xl('Currency Decimal Places'),
649 array(
650 '0' => xl('0'),
651 '1' => xl('1'),
652 '2' => xl('2'),
654 '2',
655 xl('Number of digits after decimal point for currency, usually 0 or 2.')
658 'currency_dec_point' => array(
659 xl('Currency Decimal Point Symbol'),
660 array(
661 '.' => xl('Period'),
662 ',' => xl('Comma'),
664 '.',
665 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
668 'currency_thousands_sep' => array(
669 xl('Currency Thousands Separator'),
670 array(
671 ',' => xl('Comma'),
672 '.' => xl('Period'),
673 ' ' => xl('Space'),
674 '' => xl('None'),
676 ',',
677 xl('Symbol used to separate thousands for currency.')
680 'gbl_currency_symbol' => array(
681 xl('Currency Designator'),
682 'text', // data type
683 '$', // default
684 xl('Code or symbol to indicate currency')
686 'age_display_format' => array(xl('Age Display Format'),
687 array(
688 '0' => xl('Years or months'),
689 '1' => xl('Years, months and days')
691 '0',
692 xl('Format for age display')
694 'age_display_limit' => array(
695 xl('Age in Years for Display Format Change'),
696 'num',
697 '3',
698 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
700 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
701 'weekend_days' => array(
702 xl('Your weekend days'),
703 array(
704 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
705 '0' => xl('Sunday'),
706 '5' => xl('Friday'),
707 '6' => xl('Saturday'),
708 '5,6' => xl('Friday') . ' - ' . xl('Saturday'),
710 '6,0'
711 , xl('which days are your weekend days?')
716 // Features Tab
718 'Features' => array(
720 'specific_application' => array(
721 xl('Specific Application'),
722 array(
723 '0' => xl('None'),
724 '2' => xl('IPPF'),
725 '3' => xl('Weight loss clinic'),
727 '0', // default
728 xl('Indicator for specialized usage')
731 'inhouse_pharmacy' => array(
732 xl('Drugs and Products'),
733 array(
734 '0' => xl('Do not inventory and sell any products'),
735 '1' => xl('Inventory and sell drugs only'),
736 '2' => xl('Inventory and sell both drugs and non-drug products'),
737 '3' => xl('Products but no prescription drugs and no templates'),
739 '0', // default
740 xl('Option to support inventory and sales of products')
743 'default_visit_category' => array(
744 xl('Default Visit Category'),
745 'default_visit_category',
746 '_blank',
747 xl('Define a default visit category'),
750 'disable_eligibility_log' => array(
751 xl('Disable Insurance Eligibility Reports Download'),
752 'bool',
753 '0',
754 xl('Do not allow insurance eligibility report log download')
757 'disable_chart_tracker' => array(
758 xl('Disable Chart Tracker'),
759 'bool', // data type
760 '0', // default = false
761 xl('Removes the Chart Tracker feature')
764 'disable_immunizations' => array(
765 xl('Disable Immunizations'),
766 'bool', // data type
767 '0', // default = false
768 xl('Removes support for immunizations')
771 'disable_prescriptions' => array(
772 xl('Disable Prescriptions'),
773 'bool', // data type
774 '0', // default = false
775 xl('Removes support for prescriptions')
778 'omit_employers' => array(
779 xl('Omit Employers'),
780 'bool', // data type
781 '0', // default = false
782 xl('Omit employer information in patient demographics')
785 'select_multi_providers' => array(
786 xl('Support Multi-Provider Events'),
787 'bool', // data type
788 '0', // default = false
789 xl('Support calendar events that apply to multiple providers')
792 'disable_non_default_groups' => array(
793 xl('Disable User Groups'),
794 'bool', // data type
795 '1', // default = true
796 xl('Normally this should be checked. Not related to access control.')
799 'ignore_pnotes_authorization' => array(
800 xl('Skip Authorization of Patient Notes'),
801 'bool', // data type
802 '1', // default = true
803 xl('Do not require patient notes to be authorized')
806 'support_encounter_claims' => array(
807 xl('Allow Encounter Claims'),
808 'bool', // data type
809 '0', // default = false
810 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
813 'advance_directives_warning' => array(
814 xl('Advance Directives Warning'),
815 'bool', // data type
816 '0', // default = false
817 xl('Display advance directives in the demographics page.')
820 'configuration_import_export' => array(
821 xl('Configuration Export/Import'),
822 'bool', // data type
823 '0', // default = false
824 xl('Support export/import of configuration data via the Backup page.')
827 'restrict_user_facility' => array(
828 xl('Restrict Users to Facilities'),
829 'bool', // data type
830 '0', // default
831 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
834 'set_facility_cookie' => array(
835 xl('Remember Selected Facility'),
836 'bool', // data type
837 '0', // default
838 xl('Set a facility cookie to remember the selected facility between logins.')
841 'login_into_facility' => array(
842 xl('Login Into Facility'),
843 'bool', // data type
844 '0', // default
845 xl('Select your current facility in the login page')
848 'receipts_by_provider' => array(
849 xl('Print Receipts by Provider'),
850 'bool',
851 '0', // default
852 xl('Causes Receipts to Print Encounter/Primary Provider Info')
855 'discount_by_money' => array(
856 xl('Discounts as Monetary Amounts'),
857 'bool', // data type
858 '1', // default = true
859 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
862 'gbl_visit_referral_source' => array(
863 xl('Referral Source for Encounters'),
864 'bool', // data type
865 '0', // default = false
866 xl('A referral source may be specified for each visit.')
869 'gbl_mask_patient_id' => array(
870 xl('Mask for Patient IDs'),
871 'text', // data type
872 '', // default
873 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
876 'gbl_mask_invoice_number' => array(
877 xl('Mask for Invoice Numbers'),
878 'text', // data type
879 '', // default
880 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
883 'gbl_mask_product_id' => array(
884 xl('Mask for Product IDs'),
885 'text', // data type
886 '', // default
887 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
890 'hide_billing_widget' => array(
891 xl('Hide Billing Widget'),
892 'bool', // data type
893 '0', // default = false
894 xl('This will hide the Billing Widget in the Patient Summary screen')
897 'force_billing_widget_open' => array(
898 xl('Force Billing Widget Open'),
899 'bool', // data type
900 '0', // default = false
901 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
904 'activate_ccr_ccd_report' => array(
905 xl('Activate CCR/CCD Reporting'),
906 'bool', // data type
907 '1', // default = true
908 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
911 'drive_encryption' => array(
912 xl('Enable Encryption of Items Stored on Drive'),
913 'bool', // data type
914 '1', // default = true
915 xl('This will enable enable encryption of items that are stored on the drive.')
918 'hide_document_encryption' => array(
919 xl('Hide Encryption/Decryption Options In Document Management'),
920 'bool', // data type
921 '0', // default = true
922 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
925 'use_custom_immun_list' => array(
926 xl('Use Custom Immunization List'),
927 'bool', // data type
928 '0', // default = true
929 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
932 'amendments' => array(
933 xl('Amendments'),
934 'bool', // data type
935 '1', // default = true
936 xl('Enable amendments feature')
939 'allow_pat_delete' => array(
940 xl('Allow Administrators to Delete Patients'),
941 'bool', // data type
942 '0', // default = false
943 xl('Allow Administrators to Delete Patients')
947 'observation_results_immunization' => array(
948 xl('Immunization Observation Results'),
949 'bool', // data type
950 '1', // default
951 xl('Observation Results in Immunization')
954 'enable_help' => array(
955 xl('Enable Help Modal'),
956 array(
957 '0' => xl('Hide Help Modal'),
958 '1' => xl('Show Help Modal'),
959 '2' => xl('Disable Help Modal'),
960 ), // data type
961 '1', // default = Print End of Day Report 1
962 xl('This will allow the display of help modal on help enabled pages')
964 'messages_due_date' => array(
965 xl('Messages - due date'),
966 'bool', // data type
967 '0', // default false
968 xl('Enables choose due date to message')
971 'expand_form' => array(
972 xl('Expand Form'),
973 'bool', // data type
974 '0', // default false
975 xl('Open all expandable forms in expanded state')
978 // Report Tab
980 'Report' => array(
982 'use_custom_daysheet' => array(
983 xl('Use Custom End of Day Report'),
984 array(
985 '0' => xl('None'),
986 '1' => xl('Print End of Day Report 1'),
987 '2' => xl('Print End of Day Report 2'),
988 '3' => xl('Print End of Day Report 3'),
989 ), // data type
990 '1', // default = Print End of Day Report 1
991 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
994 'daysheet_provider_totals' => array(
995 xl('End of Day by Provider or allow Totals Only'),
996 array(
997 '0' => xl('Provider'),
998 '1' => xl('Totals Only'),
1000 '1', // default
1001 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
1004 'ledger_begin_date' => array(
1005 xl('Beginning Date for Ledger Report'),
1006 array(
1007 'Y1' => xl('One Year Ago'),
1008 'Y2' => xl('Two Years Ago'),
1009 'M6' => xl('Six Months Ago'),
1010 'M3' => xl('Three Months Ago'),
1011 'M1' => xl('One Month Ago'),
1012 'D1' => xl('One Day Ago'),
1014 'Y1', // default = One Year
1015 xl('This is the Beginning date for the Ledger Report.')
1018 'print_next_appointment_on_ledger' => array(
1019 xl('Print the Next Appointment on the Bottom of the Ledger'),
1020 'bool', // data type
1021 '1', // default = true
1022 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
1025 'sales_report_invoice' => array(
1026 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
1027 array(
1028 '0' => xl('Invoice Number'),
1029 '1' => xl('Patient Name and ID'),
1030 '2' => xl('Patient Name and Invoice'),
1032 '2', // default = 2
1033 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
1036 'cash_receipts_report_invoice' => array(
1037 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
1038 array(
1039 '0' => xl('Invoice Number'),
1040 '1' => xl('Patient Name'),
1042 '0', // default = 0
1043 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
1048 // Billing Tab
1050 'Billing' => array(
1052 'ub04_support' => array(
1053 xl('Activate UB04/837I Claim Support'),
1054 'bool', // data type
1055 '0', // default = false
1056 xl('Allow institutional claims support.')
1059 'top_ubmargin_default' => array(
1060 xl('Default top print margin for UB04'),
1061 'num', // data type
1062 '14', // default
1063 xl('This is the default top print margin for UB04. It will adjust the final printed output up or down.')
1066 'left_ubmargin_default' => array(
1067 xl('Default left print margin for UB04'),
1068 'num', // data type
1069 '11', // default
1070 xl('This is the default left print margin for UB04. It will adjust the final printed output left or right.')
1073 'cms_top_margin_default' => array(
1074 xl('Default top print margin for CMS 1500'),
1075 'num', // data type
1076 '24', // default
1077 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
1080 'cms_left_margin_default' => array(
1081 xl('Default left print margin for CMS 1500'),
1082 'num', // data type
1083 '20', // default
1084 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
1087 'preprinted_cms_1500' => array(
1088 xl('Prints the CMS 1500 on the Preprinted form'),
1089 'bool', // data type
1090 '0', // default = false
1091 xl('Overlay CMS 1500 on the Preprinted form')
1094 'cms_1500_box_31_format' => array(
1095 xl('CMS 1500: Box 31 Format'),
1096 array(
1097 '0' => xl('Signature on File'),
1098 '1' => xl('Firstname Lastname'),
1099 '2' => xl('None'),
1101 '0', // default
1102 xl('This specifies whether to include date in Box 31.')
1105 'cms_1500_box_31_date' => array(
1106 xl('CMS 1500: Date in Box 31 (Signature)'),
1107 array(
1108 '0' => xl('None'),
1109 '1' => xl('Date of Service'),
1110 '2' => xl('Today'),
1112 '0', // default
1113 xl('This specifies whether to include date in Box 31.')
1116 'default_search_code_type' => array(
1117 xl('Default Search Code Type'),
1118 'all_code_types', // data type
1119 'ICD10', // default
1120 xl('The default code type to search for in the Fee Sheet.')
1123 'default_rendering_provider' => array(
1124 xl('Default Rendering Provider in Fee Sheet'),
1125 array(
1126 '0' => xl('Please Select'),
1127 '1' => xl('Current Provider'),
1128 '2' => xl('Current Logged in User'),
1130 '1',
1131 xl('Default selection for rendering provider in fee sheet.')
1134 'posting_adj_disable' => array(
1135 xl('Disable Auto Adjustment Calculations in EOB Posting'),
1136 'bool', // data type
1137 '0', // default = false
1138 xl('Turn off auto calculations of adjustments in EOB')
1141 'show_payment_history' => array(
1142 xl('Show all payment history in Patient Ledger'),
1143 'bool', // data type
1144 '1', // default = true
1145 xl('Turn on to show all payment history in Patient Ledger')
1148 'support_fee_sheet_line_item_provider' => array(
1149 xl('Support provider in line item in fee sheet'),
1150 'bool', // data type
1151 '0', // default = false
1152 xl('This Enables provider in line item in the fee sheet')
1155 'default_fee_sheet_line_item_provider' => array(
1156 xl('Default to a provider for line item in the fee sheet'),
1157 'bool', // data type
1158 '0', // default = false
1159 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1162 'replicate_justification' => array(
1163 xl('Automatically replicate justification codes in Fee Sheet'),
1164 'bool', // data type
1165 '0', // default = false
1166 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1169 'display_units_in_billing' => array(
1170 xl('Display the Units Column on the Billing Screen'),
1171 'bool', // data type
1172 '0', // default = false
1173 xl('Display the Units Column on the Billing Screen')
1176 'notes_to_display_in_Billing' => array(
1177 xl('Which notes are to be displayed in the Billing Screen'),
1178 array(
1179 '0' => xl('None'),
1180 '1' => xl('Encounter Billing Note'),
1181 '2' => xl('Patient Billing Note'),
1182 '3' => xl('All'),
1184 '3',
1185 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1188 'set_pos_code_encounter' => array(
1189 xl('Set POS code in encounter'),
1190 'bool', // data type
1191 '0', // default = false
1192 xl('This feature will allow the default POS facility code to be overridden from the encounter.')
1195 'statement_logo' => array(
1196 xl('Statement Logo GIF Filename'),
1197 'text', // data type
1198 'practice_logo.gif', // data type
1199 xl('Place your logo in sites/default/images and type the filename including gif extension here.')
1202 'use_custom_statement' => array(
1203 xl('Use Custom Statement'),
1204 'bool', // data type
1205 '0', // default = false
1206 xl('This will use the custom Statement showing the description instead of the codes.')
1209 'statement_appearance' => array(
1210 xl('Statement Appearance'),
1211 array(
1212 '0' => xl('Plain Text'),
1213 '1' => xl('Modern/images')
1214 ), // data type
1215 '1', // default = true
1216 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1219 'billing_phone_number' => array(
1220 xl('Custom Billing Phone Number'),
1221 'text', // data type
1223 xl('Phone number for billing inquiries')
1226 'show_aging_on_custom_statement' => array(
1227 xl('Show Aging on Custom Statement'),
1228 'bool', // data type
1229 '0', // default = false
1230 xl('This will Show Aging on the custom Statement.')
1233 'use_statement_print_exclusion' => array(
1234 xl('Allow Statement Exclusions from Printing'),
1235 'bool', // data type
1236 '0', // default = false
1237 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1240 'minimum_amount_to_print' => array(
1241 xl('Total Minimum Amount of Statement to Allow Printing'),
1242 'num', // data type
1243 '1.00',
1244 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1247 'statement_bill_note_print' => array(
1248 xl('Print Patient Billing Note'),
1249 'bool', // data type
1250 '0', // default = false
1251 xl('This will allow printing of the Patient Billing Note on the statements.')
1254 'number_appointments_on_statement' => array(
1255 xl('Number of Appointments on Statement'),
1256 'num', // data type
1257 '0', // default = 0
1258 xl('The Number of Future Appointments to Display on the Statement.')
1261 'statement_message_to_patient' => array(
1262 xl('Print Custom Message'),
1263 'bool', // data type
1264 '0', // default = false
1265 xl('This will allow printing of a custom Message on the statements.')
1268 'statement_msg_text' => array(
1269 xl('Custom Statement message'),
1270 'text', // data type
1272 xl('Text for Custom statement message.')
1275 'use_dunning_message' => array(
1276 xl('Use Custom Dunning Messages'),
1277 'bool', // data type
1278 '0', // default = false
1279 xl('This will allow use of the custom Dunning Messages on the statements.')
1282 'first_dun_msg_set' => array(
1283 xl('Number of days before showing first account message'),
1284 'num', // data type
1285 '30',
1286 xl('Number of days before showing first account message.')
1289 'first_dun_msg_text' => array(
1290 xl('First account message'),
1291 'text', // data type
1293 xl('Text for first account message.')
1296 'second_dun_msg_set' => array(
1297 xl('Number of days before showing second account message'),
1298 'num', // data type
1299 '60',
1300 xl('Number of days before showing second account message')
1303 'second_dun_msg_text' => array(
1304 xl('Second account message'),
1305 'text', // data type
1307 xl('Text for second account message.')
1310 'third_dun_msg_set' => array(
1311 xl('Number of days before showing third account message'),
1312 'num', // data type
1313 '90',
1314 xl('Number of days before showing third account message')
1317 'third_dun_msg_text' => array(
1318 xl('Third account message'),
1319 'text', // data type
1321 xl('Text for third account message.')
1324 'fourth_dun_msg_set' => array(
1325 xl('Number of days before showing fourth account message'),
1326 'num', // data type
1327 '120',
1328 xl('Number of days before showing fourth account message')
1331 'fourth_dun_msg_text' => array(
1332 xl('Fourth account message'),
1333 'text', // data type
1335 xl('Text for fourth account message.')
1338 'fifth_dun_msg_set' => array(
1339 xl('Number of days before showing fifth account message'),
1340 'num', // data type
1341 '150',
1342 xl('Number of days before showing fifth account message')
1345 'fifth_dun_msg_text' => array(
1346 xl('Fifth account message'),
1347 'text', // data type
1349 xl('Text for fifth account message.')
1351 'save_codes_history' => array(
1352 xl('Save codes history'),
1353 'bool', // data type
1354 '1', // default
1355 xl('Save codes history')
1359 // E-Sign Tab
1361 'E-Sign' => array(
1363 'esign_all' => array(
1364 xl('Allows E-Sign on the entire encounter'),
1365 'bool', // data type
1366 '0', // default = false
1367 xl('This will enable signing an entire encounter, rather than individual forms')
1370 'lock_esign_all' => array(
1371 xl('Lock e-signed encounters and their forms'),
1372 'bool', // data type
1373 '0', // default = false
1374 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1377 'esign_individual' => array(
1378 xl('Allows E-Signing Individual Forms'),
1379 'bool', // data type
1380 '1', // default = false
1381 xl('This will enable signing individual forms separately')
1384 'lock_esign_individual' => array(
1385 xl('Lock an e-signed form individually'),
1386 'bool', // data type
1387 '1', // default = false
1388 xl('This will disable the Edit button on any form that is e-signed')
1391 'esign_lock_toggle' => array(
1392 xl('Enable lock toggle'),
1393 'bool', // data type
1394 '0', // default = false
1395 xl('This will give the user the option to lock (separate locking and signing)')
1398 'esign_report_hide_empty_sig' => array(
1399 xl('Hide Empty E-Sign Logs On Report'),
1400 'bool', // data type
1401 '1', // default = false
1402 xl('This will hide empty e-sign logs on the patient report')
1406 //Documents Tab
1407 'Documents' => array(
1409 'document_storage_method' => array(
1410 xl('Document Storage Method'),
1411 array(
1412 '0' => xl('Hard Disk'),
1413 '1' => xl('CouchDB')
1415 '0', // default
1416 xl('Option to save method of document storage.')
1419 'couchdb_host' => array(
1420 xl('CouchDB HostName'),
1421 'text',
1422 'localhost',
1423 xl('CouchDB host'),
1425 'couchdb_user' => array(
1426 xl('CouchDB UserName'),
1427 'text',
1429 xl('Username to connect to CouchDB'),
1431 'couchdb_pass' => array(
1432 xl('CouchDB Password'),
1433 'encrypted', // data type
1435 xl('Password to connect to CouchDB'),
1437 'couchdb_port' => array(
1438 xl('CouchDB Port'),
1439 'text',
1440 '5984',
1441 xl('CouchDB port'),
1443 'couchdb_dbase' => array(
1444 xl('CouchDB Database'),
1445 'text',
1447 xl('CouchDB database name'),
1449 'couchdb_log' => array(
1450 xl('CouchDB Log Enable'),
1451 'bool',
1452 '0',
1453 xl('Enable log for document uploads/downloads to CouchDB'),
1456 'expand_document_tree' => array(
1457 xl('Expand All Document Categories'),
1458 'bool', // data type
1459 '0', // default = false
1460 xl('Expand All Document Categories by Default')
1463 'patient_id_category_name' => array(
1464 xl('Patient ID Category Name'),
1465 'text', // data type
1466 'Patient ID card', // default
1467 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1470 'patient_photo_category_name' => array(
1471 xl('Patient Photo Category Name'),
1472 'text', // data type
1473 'Patient Photograph', // default
1474 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1477 'lab_results_category_name' => array(
1478 xl('Lab Results Category Name'),
1479 'text', // data type
1480 'Lab Report', // default
1481 xl('Document category name for storage of electronically received lab results.')
1484 'gbl_mdm_category_name' => array(
1485 xl('MDM Document Category Name'),
1486 'text', // data type
1487 'Lab Report', // default
1488 xl('Document category name for storage of electronically received MDM documents.')
1490 'generate_doc_thumb' => array(
1491 xl('Generate thumbnail'),
1492 'bool',
1493 '0',
1494 xl('Generate thumbnail images'),
1496 'thumb_doc_max_size' => array(
1497 xl('Thumbnail size'),
1498 'text', // data type
1499 '100', // default
1500 xl('Maximum size of thumbnail file')
1504 // Calendar Tab
1506 'Calendar' => array(
1508 'disable_calendar' => array(
1509 xl('Disable Calendar'),
1510 'bool', // data type
1511 '0', // default
1512 xl('Do not display the calendar.')
1515 'schedule_start' => array(
1516 xl('Calendar Starting Hour'),
1517 'hour',
1518 '8', // default
1519 xl('Beginning hour of day for calendar events.')
1522 'schedule_end' => array(
1523 xl('Calendar Ending Hour'),
1524 'hour',
1525 '17', // default
1526 xl('Ending hour of day for calendar events.')
1529 'calendar_interval' => array(
1530 xl('Calendar Interval'),
1531 array(
1532 '5' => '5',
1533 '10' => '10',
1534 '15' => '15',
1535 '20' => '20',
1536 '30' => '30',
1537 '60' => '60',
1539 '15', // default
1540 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1543 'calendar_view_type' => array(
1544 xl('Default Calendar View'),
1545 array(
1546 'day' => xl('Day'),
1547 'week' => xl('Week'),
1548 'month' => xl('Month'),
1550 'day', // default
1551 xl('This sets the Default Calendar View, Default is Day.')
1554 'first_day_week' => array(
1555 xl('First day in the week'),
1556 array(
1557 '1' => xl('Monday'),
1558 '0' => xl('Sunday'),
1559 '6' => xl('Saturday')
1561 '1',
1562 xl('Your first day of the week.')
1565 'calendar_appt_style' => array(
1566 xl('Appointment Display Style'),
1567 array(
1568 '1' => xl('Last name'),
1569 '2' => xl('Last name, first name'),
1570 '3' => xl('Last name, first name (title)'),
1571 '4' => xl('Last name, first name (title: comments)'),
1573 '2', // default
1574 xl('This determines how appointments display on the calendar.')
1577 'event_color' => array(
1578 xl('Appointment/Event Color'),
1579 array(
1580 '1' => xl('Category Color Schema'),
1581 '2' => xl('Facility Color Schema'),
1582 ), // data type
1583 '1', // default
1584 xl('This determines which color schema used for appointment')
1587 'number_of_appts_to_show' => array(
1588 xl('Appointments - Patient Summary - Number to Display'),
1589 'num',
1590 '10',
1591 xl('Number of Appointments to display in the Patient Summary')
1594 'number_of_group_appts_to_show' => array(
1595 xl('Appointments - Group Summary - Number to Display'),
1596 'num',
1597 '10',
1598 xl('Number of Appointments to display in the Group Summary')
1601 'number_of_ex_appts_to_show' => array(
1602 xl('Excluded Appointments - Tooltip - Number to Display'),
1603 'num',
1604 '15',
1605 xl('Number of Excluded Appointments to display in the Tooltip')
1608 'patient_portal_appt_display_num' => array(
1609 xl('Appointments - Onsite Patient Portal - Number to Display'),
1610 'num',
1611 '20',
1612 xl('Number of Appointments to display in the Onsite Patient Portal')
1615 'appt_display_sets_option' => array(
1616 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1617 'bool', // data type
1618 '1', // default
1619 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1622 'appt_display_sets_color_1' => array(
1623 xl('Appointment Display Sets - Color 1'),
1624 'color_code',
1625 '#FFFFFF',
1626 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).')
1629 'appt_display_sets_color_2' => array(
1630 xl('Appointment Display Sets - Color 2'),
1631 'color_code',
1632 '#E6E6FF',
1633 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).')
1636 'appt_display_sets_color_3' => array(
1637 xl('Appointment Display Sets - Color 3'),
1638 'color_code',
1639 '#E6FFE6',
1640 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1643 'appt_display_sets_color_4' => array(
1644 xl('Appointment Display Sets - Color 4'),
1645 'color_code',
1646 '#FFE6FF',
1647 xl('Color for the last set when not all member appointments are displayed.')
1650 'appt_recurrences_widget' => array(
1651 xl('Recurrent Appointment Display Widget'),
1652 'bool', // data type
1653 '1', // default
1654 xl('Display the recurrent appointment widget in the patient summary.')
1657 'num_past_appointments_to_show' => array(
1658 xl('Past Appointment Display Widget'),
1659 'num', // data type
1660 '0', // default = false
1661 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)')
1664 'docs_see_entire_calendar' => array(
1665 xl('Providers See Entire Calendar'),
1666 'bool', // data type
1667 '0', // default
1668 xl('Check this if you want providers to see all appointments by default and not just their own.')
1671 'auto_create_new_encounters' => array(
1672 xl('Auto-Create New Encounters'),
1673 array(
1674 '0' => xl('Off'),
1675 '1' => xl('One Encounter Per Day'),
1676 '2' => xl('Allow Encounter For Each Appointment')
1678 '1',
1679 xl('Automatically create a new encounter when an appointment check in status is selected.') . " " .
1680 xl('The Each Appointment option will allow a new encounter regardless of same day visit.') . " " .
1681 xl('The appointment status changes and encounter creations are managed through the Patient Tracker.')
1684 'allow_early_check_in' => array(
1685 xl('Allow Early Check In'),
1686 'bool', // data type
1687 '1', // default
1688 xl("Allow Check In before the appointment's time.")
1691 'submit_changes_for_all_appts_at_once' => array(
1692 xl('Submit Changes For All Appts At Once'),
1693 'bool', // data type
1694 '1', // default
1695 xl('Enables to submit changes for all appointments of a recurrence at once.')
1698 'disable_pat_trkr' => array(
1699 xl('Flow Board: Disable'),
1700 'bool', // data type
1701 '0', // default
1702 xl('Completely remove the ability to display the Patient Flow Board.')
1705 'ptkr_visit_reason' => array(
1706 xl('Flow Board: Show Visit Reason'),
1707 'bool', // data type
1708 '0', // default = false
1709 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1712 'ptkr_show_pid' => array(
1713 xl('Flow Board: Show Patient ID'),
1714 'bool', // data type
1715 '1', // default = true
1716 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1719 'ptkr_show_encounter' => array(
1720 xl('Flow Board: Show Encounter Number'),
1721 'bool', // data type
1722 '1', // default = true
1723 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1726 'ptkr_show_staff' => array(
1727 xl('Flow Board: Show Staff Action'),
1728 'bool', // data type
1729 '1', // default = true
1730 xl('When Checked, Last Staff to Update Board Will Show in Patient Flow Board.')
1733 'ptkr_date_range' => array(
1734 xl('Flow Board: Allow Date Range'),
1735 'bool', // data type
1736 '1', // default = true
1737 xl('This Allows a Date Range to be Selected in Patient Flow Board.')
1740 'ptkr_start_date'=> array(
1741 xl('Flow Board: Default Starting Date'),
1742 array(
1743 'D0' => xl('Current Day'),
1744 'B0' => xl('Beginning of Current Work Week'),
1746 'D0', // default = Current Day
1747 xl('This is the default Beginning date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1750 'ptkr_end_date' => array(
1751 xl('Flow Board: Default Ending Date'),
1752 array(
1753 'Y1' => xl('One Year Ahead'),
1754 'Y2' => xl('Two Years Ahead'),
1755 'M6' => xl('Six Months Ahead'),
1756 'M3' => xl('Three Months Ahead'),
1757 'M1' => xl('One Month Ahead'),
1758 'D7' => xl('One Week Ahead'),
1759 'D1' => xl('One Day Ahead'),
1760 'D0' => xl('Current Day'),
1762 'D0', // default = One Day Ahead
1763 xl('This is the default Ending date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1766 'pat_trkr_timer' => array(
1767 xl('Flow Board: Timer Refresh Interval'),
1768 array(
1769 '0' => xl('No automatic refresh'),
1770 '0:10' => '10',
1771 '0:20' => '20',
1772 '0:30' => '30',
1773 '0:40' => '40',
1774 '0:50' => '50',
1775 '0:59' => '60',
1777 '0:20', // default
1778 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1781 'checkout_roll_off' => array(
1782 xl('Flow Board: display completed checkouts (minutes)'),
1783 'num',
1784 '0', // default
1785 xl('Flow Board will only display completed checkouts for this many minutes. Zero is continuous display.')
1788 'drug_screen' => array(
1789 xl('Flow Board: Enable Random Drug Testing'),
1790 'bool', // data type
1791 '0', // default
1792 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1795 'drug_testing_percentage' => array(
1796 xl('Flow Board: Percentage of Patients to Drug Test'),
1797 'num',
1798 '33', // default
1799 xl('Percentage of Patients to select for Random Drug Testing.')
1802 'maximum_drug_test_yearly' => array(
1803 xl('Flow Board: Max tests per Patient per year'),
1804 'num',
1805 '0', // default
1806 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1809 'disable_rcb' => array(
1810 xl('Recall Board: Disable'),
1811 'bool', // data type
1812 '0', // default
1813 xl('Do not display the Recall Board.')
1821 // Security Tab
1823 'Security' => array(
1824 'sql_string_no_show_screen' => array(
1825 xl('Mode - Do Not Show SQL Queries'),
1826 'bool', // data type
1827 '0', // default
1828 xl('Do not allow SQL queries to be outputted to screen.')
1830 'timeout' => array(
1831 xl('Idle Session Timeout Seconds'),
1832 'num', // data type
1833 '7200', // default
1834 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1836 'secure_upload' => array(
1837 xl('Secure Upload Files with White List'),
1838 'bool', // data type
1839 '1', // default
1840 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1842 'secure_password' => array(
1843 xl('Require Strong Passwords'),
1844 'bool', // data type
1845 '0', // default
1846 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1848 'password_history' => array(
1849 xl('Require Unique Passwords'),
1850 'bool', // data type
1851 '0', // default
1852 xl('Means none of last three passwords are allowed when changing a password.')
1854 'password_compatibility' => array(
1855 xl('Permit unsalted passwords'),
1856 'bool', // data type
1857 '1', // default
1858 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')
1861 'password_expiration_days' => array(
1862 xl('Default Password Expiration Days'),
1863 'num', // data type
1864 '0', // default
1865 xl('Default password expiration period in days. 0 means this feature is disabled.')
1868 'password_grace_time' => array(
1869 xl('Password Expiration Grace Period'),
1870 'num', // data type
1871 '0', // default
1872 xl('Period in days where a user may login with an expired password.')
1875 'is_client_ssl_enabled' => array(
1876 xl('Enable Client SSL'),
1877 'bool', // data type
1878 '0', // default
1879 xl('Enable client SSL certificate authentication.')
1882 'certificate_authority_crt' => array(
1883 xl('Path to CA Certificate File'),
1884 'text', // data type
1885 '', // default
1886 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1889 'certificate_authority_key' => array(
1890 xl('Path to CA Key File'),
1891 'text', // data type
1892 '', // default
1893 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1896 'client_certificate_valid_in_days' => array(
1897 xl('Client Certificate Expiration Days'),
1898 'num', // data type
1899 '365', // default
1900 xl('Number of days that the client certificate is valid.')
1903 'Emergency_Login_email_id' => array(
1904 xl('Emergency Login Email Address'),
1905 'text', // data type
1906 '', // default
1907 xl('Email address, if any, to receive emergency login user activation messages.')
1910 'new_validate' => array(
1911 xl('New form validation'),
1912 'bool',
1913 '1',
1914 xl('New form validation')
1917 'allow_multiple_databases' => array(
1918 xl('Allow multiple databases'),
1919 'bool',
1920 '0',
1921 xl('Allow to use with multiple database')
1924 'safe_key_database' => array(
1925 xl('Safe key database'),
1926 'text', // data type
1927 '', // default
1928 xl('Key for multiple database credentials encryption')
1931 'use_active_directory' => array(
1932 xl('Use Active Directory'),
1933 'bool',
1934 '0',
1935 xl('If enabled, uses the specified active directory for login and authentication.')
1938 'account_suffix' => array(
1939 xl('Active Directory - Suffix Of Account'),
1940 'text',
1942 xl('The suffix of the account.')
1945 'base_dn' => array(
1946 xl('Active Directory - Domains Base'),
1947 'text',
1949 xl('Users is the standard windows CN, replace the DC stuff with your domain.')
1952 'domain_controllers' => array(
1953 xl('Active Directory - Domains Controllers'),
1954 'text',
1956 xl('The IP address of your domain controller(s).')
1961 // Notifications Tab
1963 'Notifications' => array(
1965 'patient_reminder_sender_name' => array(
1966 xl('Patient Reminder Sender Name'),
1967 'text', // data type
1968 '', // default
1969 xl('Name of the sender for patient reminders.')
1972 'patient_reminder_sender_email' => array(
1973 xl('Patient Reminder Sender Email'),
1974 'text', // data type
1975 '', // default
1976 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.')
1979 'practice_return_email_path' => array(
1980 xl('Notification Email Address'),
1981 'text', // data type
1982 '', // default
1983 xl('Email address, if any, to receive administrative notifications.')
1986 'EMAIL_METHOD' => array(
1987 xl('Email Transport Method'),
1988 array(
1989 'PHPMAIL' => 'PHPMAIL',
1990 'SENDMAIL' => 'SENDMAIL',
1991 'SMTP' => 'SMTP',
1993 'SMTP', // default
1994 xl('Method for sending outgoing email.')
1997 'SMTP_HOST' => array(
1998 xl('SMTP Server Hostname'),
1999 'text', // data type
2000 'localhost', // default
2001 xl('If SMTP is used, the server`s hostname or IP address.')
2004 'SMTP_PORT' => array(
2005 xl('SMTP Server Port Number'),
2006 'num', // data type
2007 '25', // default
2008 xl('If SMTP is used, the server`s TCP port number (usually 25).')
2011 'SMTP_USER' => array(
2012 xl('SMTP User for Authentication'),
2013 'text', // data type
2014 '', // default
2015 xl('Must be empty if SMTP authentication is not used.')
2018 'SMTP_PASS' => array(
2019 xl('SMTP Password for Authentication'),
2020 'encrypted', // data type
2021 '', // default
2022 xl('Must be empty if SMTP authentication is not used.')
2025 'SMTP_SECURE' => array(
2026 xl('SMTP Security Protocol'),
2027 array(
2028 '' => xl('None'),
2029 'ssl' => 'SSL',
2030 'tls' => 'TLS'
2033 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
2036 'EMAIL_NOTIFICATION_HOUR' => array(
2037 xl('Email Notification Hours'),
2038 'num', // data type
2039 '50', // default
2040 xl('Number of hours in advance to send email notifications.')
2043 'SMS_NOTIFICATION_HOUR' => array(
2044 xl('SMS Notification Hours'),
2045 'num', // data type
2046 '50', // default
2047 xl('Number of hours in advance to send SMS notifications.')
2050 'SMS_GATEWAY_USENAME' => array(
2051 xl('SMS Gateway Username'),
2052 'text', // data type
2053 '', // default
2054 xl('Username for SMS Gateway.')
2057 'SMS_GATEWAY_PASSWORD' => array(
2058 xl('SMS Gateway Password'),
2059 'text', // data type
2060 '', // default
2061 xl('Password for SMS Gateway.')
2064 'SMS_GATEWAY_APIKEY' => array(
2065 xl('SMS Gateway API Key'),
2066 'text', // data type
2067 '', // default
2068 xl('API key for SMS Gateway.')
2071 'phone_notification_hour' => array(
2072 xl('Phone Notification Hour'),
2073 'num', // data type
2074 '50', // default
2075 xl('Number of hours in advance to send Phone notification.')
2078 'phone_gateway_username' => array(
2079 xl('Phone Gateway Username'),
2080 'text', // data type
2081 '', // default
2082 xl('Username for Phone Gateway.')
2085 'phone_gateway_password' => array(
2086 xl('Phone Gateway Password'),
2087 'encrypted', // data type
2088 '', // default
2089 xl('Password for Phone Gateway.')
2092 'phone_gateway_url' => array(
2093 xl('Phone Gateway URL'),
2094 'text', // data type
2095 '', // default
2096 xl('URL for Phone Gateway.')
2101 // CDR (Clinical Decision Rules)
2103 'CDR' => array(
2105 'enable_cdr' => array(
2106 xl('Enable Clinical Decisions Rules (CDR)'),
2107 'bool', // data type
2108 '1', // default
2109 xl('Enable Clinical Decisions Rules (CDR)')
2112 'enable_allergy_check' => array(
2113 xl('Enable Allergy Check'),
2114 'bool', // data type
2115 '1', // default
2116 xl('Enable Allergy Check Against Medications and Prescriptions')
2119 'enable_alert_log' => array(
2120 xl('Enable Alert Log'),
2121 'bool', // data type
2122 '1', // default
2123 xl('Enable Alert Logging')
2126 'enable_cdr_new_crp' => array(
2127 xl('Enable Clinical Passive New Reminder(s) Popup'),
2128 'bool', // data type
2129 '1', // default
2130 xl('Enable Clinical Passive New Reminder(s) Popup')
2133 'enable_cdr_crw' => array(
2134 xl('Enable Clinical Passive Reminder Widget'),
2135 'bool', // data type
2136 '1', // default
2137 xl('Enable Clinical Passive Reminder Widget')
2140 'enable_cdr_crp' => array(
2141 xl('Enable Clinical Active Reminder Popup'),
2142 'bool', // data type
2143 '1', // default
2144 xl('Enable Clinical Active Reminder Popup')
2147 'enable_cdr_prw' => array(
2148 xl('Enable Patient Reminder Widget'),
2149 'bool', // data type
2150 '1', // default
2151 xl('Enable Patient Reminder Widget')
2154 'enable_cqm' => array(
2155 xl('Enable CQM Reporting'),
2156 'bool', // data type
2157 '1', // default
2158 xl('Enable Clinical Quality Measure (CQM) Reporting')
2161 'pqri_registry_name' => array(
2162 xl('PQRI Registry Name'),
2163 'text', // data type
2164 'Model Registry', // default
2165 xl('PQRI Registry Name')
2168 'pqri_registry_id' => array(
2169 xl('PQRI Registry ID'),
2170 'text', // data type
2171 '125789123', // default
2172 xl('PQRI Registry ID')
2175 'enable_amc' => array(
2176 xl('Enable AMC Reporting'),
2177 'bool', // data type
2178 '1', // default
2179 xl('Enable Automated Measure Calculations (AMC) Reporting')
2182 'enable_amc_prompting' => array(
2183 xl('Enable AMC Prompting'),
2184 'bool', // data type
2185 '1', // default
2186 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
2189 'enable_amc_tracking' => array(
2190 xl('Enable AMC Tracking'),
2191 'bool', // data type
2192 '1', // default
2193 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
2196 'cdr_report_nice' => array(
2197 xl('CDR Reports Processing Priority'),
2198 array(
2199 '' => xl('Default Priority'),
2200 '5' => xl('Moderate Priority'),
2201 '10' => xl('Moderate/Low Priority'),
2202 '15' => xl('Low Priority'),
2203 '20' => xl('Lowest Priority')
2205 '', // default
2206 xl('Set processing priority for CDR engine based reports.')
2209 'pat_rem_clin_nice' => array(
2210 xl('Patient Reminder Creation Processing Priority'),
2211 array(
2212 '' => xl('Default Priority'),
2213 '5' => xl('Moderate Priority'),
2214 '10' => xl('Moderate/Low Priority'),
2215 '15' => xl('Low Priority'),
2216 '20' => xl('Lowest Priority')
2218 '', // default
2219 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2222 'report_itemizing_standard' => array(
2223 xl('Enable Standard Report Itemization'),
2224 'bool', // data type
2225 '1', // default
2226 xl('Enable Itemization of Standard Clinical Rules Reports')
2229 'report_itemizing_cqm' => array(
2230 xl('Enable CQM Report Itemization'),
2231 'bool', // data type
2232 '1', // default
2233 xl('Enable Itemization of CQM Reports')
2236 'report_itemizing_amc' => array(
2237 xl('Enable AMC Report Itemization'),
2238 'bool', // data type
2239 '1', // default
2240 xl('Enable Itemization of AMC Reports')
2242 'dated_reminders_max_alerts_to_show' => array(
2243 xl('Dated reminders maximum alerts to show'),
2244 'num', // data type
2245 '5', // default
2246 xl('Dated reminders maximum alerts to show')
2248 'patient_birthday_alert' => array(
2249 xl('Alert on patient birthday'),
2250 array(
2251 '0' => xl('No alert'),
2252 '1' => xl('Alert only on birthday'),
2253 '2' => xl('Alert on and after birthday'),
2254 '3' => xl('Alert on and up to 28 days after birthday')
2256 '1', // default
2257 xl('Alert on patient birthday')
2259 'patient_birthday_alert_manual_off' => array(
2260 xl('Patient birthday alert requires turning off'),
2261 'bool', // data type
2262 '0', // default
2263 xl('Patient birthday alert requires turning off')
2267 // Logging
2269 'Logging' => array(
2271 'user_debug' => array(
2272 xl('User Debugging Options'),
2273 array(
2274 '0' => xl('None'),
2275 '1' => xl('Display Window Errors Only'),
2276 '2' => xl('Display Application Errors Only'),
2277 '3' => xl('All'),
2279 '0', // default
2280 xl('User Debugging Mode.')
2283 'enable_auditlog' => array(
2284 xl('Enable Audit Logging'),
2285 'bool', // data type
2286 '1', // default
2287 xl('Enable Audit Logging')
2290 'audit_events_patient-record' => array(
2291 xl('Audit Logging Patient Record'),
2292 'bool', // data type
2293 '1', // default
2294 xl('Enable logging of patient record modifications.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2297 'audit_events_scheduling' => array(
2298 xl('Audit Logging Scheduling'),
2299 'bool', // data type
2300 '1', // default
2301 xl('Enable logging of scheduling activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2304 'audit_events_order' => array(
2305 xl('Audit Logging Order'),
2306 'bool', // data type
2307 '1', // default
2308 xl('Enable logging of ordering activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2311 'audit_events_security-administration' => array(
2312 xl('Audit Logging Security Administration'),
2313 'bool', // data type
2314 '1', // default
2315 xl('Enable logging of security and administration activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2318 'audit_events_backup' => array(
2319 xl('Audit Logging Backups'),
2320 'bool', // data type
2321 '1', // default
2322 xl('Enable logging of backup related activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2325 'audit_events_other' => array(
2326 xl('Audit Logging Miscellaneous'),
2327 'bool', // data type
2328 '1', // default
2329 xl('Enable logging of miscellaneous activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2332 'audit_events_query' => array(
2333 xl('Audit Logging SELECT Query'),
2334 'bool', // data type
2335 '0', // default
2336 xl('Enable logging of all SQL SELECT queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2339 'audit_events_cdr' => array(
2340 xl('Audit CDR Engine Queries'),
2341 'bool', // data type
2342 '0', // default
2343 xl('Enable logging of CDR Engine Queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2346 'enable_atna_audit' => array(
2347 xl('Enable ATNA Auditing'),
2348 'bool', // data type
2349 '0', // default
2350 xl('Enable Audit Trail and Node Authentication (ATNA).')
2353 'atna_audit_host' => array(
2354 xl('ATNA audit host'),
2355 'text', // data type
2356 '', // default
2357 xl('The hostname of the ATNA audit repository machine.')
2360 'atna_audit_port' => array(
2361 xl('ATNA audit port'),
2362 'text', // data type
2363 '6514', // default
2364 xl('Listening port of the RFC 5425 TLS syslog server.')
2367 'atna_audit_localcert' => array(
2368 xl('ATNA audit local certificate'),
2369 'text', // data type
2370 '', // default
2371 xl('Certificate to send to RFC 5425 TLS syslog server.')
2374 'atna_audit_cacert' => array(
2375 xl('ATNA audit CA certificate'),
2376 'text', // data type
2377 '', // default
2378 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2381 'enable_auditlog_encryption' => array(
2382 xl('Enable Audit Log Encryption'),
2383 'bool', // data type
2384 '0', // default
2385 xl('Enable Audit Log Encryption')
2388 'billing_log_option' => array(
2389 xl('Billing Log Option'),
2390 array(
2391 '1' => xl('Billing Log Append'),
2392 '2' => xl('Billing Log Overwrite')
2394 '1', // default
2395 xl('Billing log setting to append or overwrite the log file.')
2398 'gbl_print_log_option' => array(
2399 xl('Printing Log Option'),
2400 array(
2401 '0' => xl('No logging'),
2402 '1' => xl('Hide print feature'),
2403 '2' => xl('Log entire document'),
2405 '0', // default
2406 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2411 // Miscellaneous Tab
2413 'Miscellaneous' => array(
2415 'mysql_bin_dir' => array(
2416 xl('Path to MySQL Binaries'),
2417 'text', // data type
2418 $mysql_bin_dir, // default
2419 xl('Full path to directory containing MySQL executables.')
2422 'perl_bin_dir' => array(
2423 xl('Path to Perl Binaries'),
2424 'text', // data type
2425 $perl_bin_dir, // default
2426 xl('Full path to directory containing Perl executables.')
2429 'temporary_files_dir' => array(
2430 xl('Path to Temporary Files'),
2431 'text', // data type
2432 $temporary_files_dir, // default
2433 xl('Full path to directory used for temporary files.')
2436 'backup_log_dir' => array(
2437 xl('Path for Event Log Backup'),
2438 'text', // data type
2439 $backup_log_dir, // default
2440 xl('Full path to directory for event log backup.')
2443 'state_data_type' => array(
2444 xl('State Data Type'),
2445 array(
2446 '2' => xl('Text field'),
2447 '1' => xl('Single-selection list'),
2448 '26' => xl('Single-selection list with ability to add to the list'),
2450 '26', // default
2451 xl('Field type to use for employer or subscriber state in demographics.')
2454 'state_list' => array(
2455 xl('State list'),
2456 'text', // data type
2457 'state', // default
2458 xl('List used by above State Data Type option.')
2461 'state_custom_addlist_widget' => array(
2462 xl('State List Widget Custom Fields'),
2463 'bool', // data type
2464 '1', // default
2465 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2468 'country_data_type' => array(
2469 xl('Country Data Type'),
2470 array(
2471 '2' => xl('Text field'),
2472 '1' => xl('Single-selection list'),
2473 '26' => xl('Single-selection list with ability to add to the list'),
2475 '26', // default
2476 xl('Field type to use for employer or subscriber country in demographics.')
2479 'country_list' => array(
2480 xl('Country list'),
2481 'text', // data type
2482 'country', // default
2483 xl('List used by above Country Data Type option.')
2486 'print_command' => array(
2487 xl('Print Command'),
2488 'text', // data type
2489 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2490 xl('Shell command for printing from the server.')
2493 'default_chief_complaint' => array(
2494 xl('Default Reason for Visit'),
2495 'text', // data type
2497 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2500 'MedicareReferrerIsRenderer' => array(
2501 xl('Medicare Referrer Is Renderer'),
2502 'bool', // data type
2503 '0', // default = true
2504 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2507 'post_to_date_benchmark' => array(
2508 xl('Financial Close Date (yyyy-mm-dd)'),
2509 'text', // data type
2510 date('Y-m-d', time() - (10 * 24 * 60 * 60)), // default
2511 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2514 'enable_hylafax' => array(
2515 xl('Enable Hylafax Support'),
2516 'bool', // data type
2517 '0', // default
2518 xl('Enable Hylafax Support')
2521 'hylafax_server' => array(
2522 xl('Hylafax Server'),
2523 'text', // data type
2524 'localhost', // default
2525 xl('Hylafax server hostname.')
2528 'hylafax_basedir' => array(
2529 xl('Hylafax Directory'),
2530 'text', // data type
2531 '/var/spool/hylafax', // default
2532 xl('Location where Hylafax stores faxes.')
2535 'hylafax_enscript' => array(
2536 xl('Hylafax Enscript Command'),
2537 'text', // data type
2538 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2539 xl('Enscript command used by Hylafax.')
2542 'enable_scanner' => array(
2543 xl('Enable Scanner Support'),
2544 'bool', // data type
2545 '0', // default
2546 xl('Enable Scanner Support')
2549 'scanner_output_directory' => array(
2550 xl('Scanner Directory'),
2551 'text', // data type
2552 '/mnt/scan_docs', // default
2553 xl('Location where scans are stored.')
2557 // Portal Tab
2559 'Portal' => array(
2561 'portal_onsite_two_enable' => array(
2562 xl('Enable Version 2 Onsite Patient Portal'),
2563 'bool', // data type
2564 '0',
2565 xl('Enable Version 2 Onsite Patient Portal')
2568 'portal_onsite_two_address' => array(
2569 xl('Version 2 Onsite Patient Portal Site Address'),
2570 'text', // data type
2571 'https://your_web_site.com/openemr/portal',
2572 xl('Website link for the Version 2 Onsite Patient Portal.')
2575 'portal_onsite_two_basepath' => array(
2576 xl('Portal Uses Server Base Path (internal)'),
2577 'bool',
2578 '0',
2579 xl('Use servers protocol and host in urls (portal internal only).')
2582 'enforce_signin_email' => array(
2583 xl('Enforce E-Mail in Portal Log On Dialog'),
2584 'bool', // data type
2585 '1',
2586 xl('Patient is required to enter their contact e-mail if present in Demographics Contact.')
2589 'portal_onsite_two_register' => array(
2590 xl('Allow Version 2 Onsite New Patient Registration Widget'),
2591 'bool', // data type
2592 '1',
2593 xl('Enable Version 2 Onsite Patient Portal new patient to self register.')
2596 'allow_portal_appointments' => array(
2597 xl('Allow Version 2 Onsite Online Appointments'),
2598 'bool', // data type
2599 '1',
2600 xl('Allow Version 2 Onsite Patient to make and view appointments online.')
2603 'allow_portal_chat' => array(
2604 xl('Allow Version 2 Onsite Online Secure Chat'),
2605 'bool', // data type
2606 '1',
2607 xl('Allow Version 2 Onsite Patient to use Secure Chat Application.')
2610 'portal_two_ledger' => array(
2611 xl('Allow Version 2 Onsite Patient Ledger'),
2612 'bool', // data type
2613 '1',
2614 xl('Allow Version 2 Onsite Patient to view their accounting ledger online.')
2617 'portal_two_payments' => array(
2618 xl('Allow Version 2 Onsite Online Payments'),
2619 'bool', // data type
2620 '0',
2621 xl('Allow Version 2 Onsite Patient to make payments online.')
2624 'portal_two_pass_reset' => array(
2625 xl('Allow Version 2 Patients to Reset Credentials'),
2626 'bool', // data type
2627 '0',
2628 xl('Patient may change their logon from portal login dialog.')
2631 'portal_onsite_document_download' => array(
2632 xl('Enable Onsite Patient Portal Document Download'),
2633 'bool', // data type
2634 '1',
2635 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2638 'portal_onsite_enable' => array(
2639 xl('Enable Version 1 Onsite Patient Portal'),
2640 'bool', // data type
2641 '0',
2642 xl('Enable Version 1 Onsite Patient Portal')
2645 'portal_onsite_address' => array(
2646 xl('Version 1 Onsite Patient Portal Site Address'),
2647 'text', // data type
2648 'https://your_web_site.com/openemr/patients',
2649 xl('Website link for the Version 1 Onsite Patient Portal.')
2652 'portal_offsite_enable' => array(
2653 xl('Enable Offsite Patient Portal'),
2654 'bool', // data type
2655 '0',
2656 xl('Enable Offsite Patient Portal.')
2658 'portal_offsite_providerid' => array(
2659 xl('Offsite Patient Portal Provider ID'),
2660 'text', // data type
2662 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2665 'portal_offsite_username' => array(
2666 xl('Offsite Patient Portal Username'),
2667 'text', // data type
2669 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2672 'portal_offsite_password' => array(
2673 xl('Offsite Patient Portal Password'),
2674 'pwd', // data type
2676 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2679 'portal_offsite_address' => array(
2680 xl('Offsite Patient Portal Site Address'),
2681 'text', // data type
2682 'https://ssh.mydocsportal.com/provider.php',
2683 xl('Offsite Https link for the Patient Portal.')
2686 'portal_offsite_address_patient_link' => array(
2687 xl('Offsite Patient Portal Site Address (Patient Link)'),
2688 'text', // data type
2689 'https://ssh.mydocsportal.com',
2690 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2693 // Currently the "CMS Portal" supports WordPress. Other Content Management
2694 // Systems may be supported in the future.
2696 'gbl_portal_cms_enable' => array(
2697 xl('Enable CMS Portal'),
2698 'bool', // data type
2699 '0',
2700 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2703 'gbl_portal_cms_address' => array(
2704 xl('CMS Portal Site Address'),
2705 'text', // data type
2706 'https://your_cms_site.com/',
2707 xl('URL for the WordPress site that supports the portal')
2710 'gbl_portal_cms_username' => array(
2711 xl('CMS Portal Username'),
2712 'text', // data type
2714 xl('Login name of WordPress user for portal access')
2717 'gbl_portal_cms_password' => array(
2718 xl('CMS Portal Password'),
2719 'encrypted', // data type
2721 xl('Password for the above user')
2726 // Connectors Tab
2728 'Connectors' => array(
2730 'fhir_enable' => array(
2731 xl('Enable FHIR Provider Client Service'),
2732 array(
2733 0 => xl('Off: No Service.'),
2734 1 => xl('On: HAPI FHIR.'),
2735 2 => xl('On: Smart on FHIR.'),
2737 '0',
2738 xl('Enable FHIR Provider Client Service')
2741 'fhir_base_url' => array(
2742 xl('FHIR Server Base Address'),
2743 'text',
2744 'https://hapi.fhir.org/baseDstu3/',
2745 xl('Base URL for FHIR Server.')
2748 'rest_api' => array(
2749 xl('Enable OpenEMR REST API'),
2750 'bool',
2751 '0',
2752 xl('Enable OpenEMR RESTful API. SSL Required')
2755 'enable_oa' => array(
2756 xl('Enable Office Ally Insurance Eligibility'),
2757 'bool',
2758 '0',
2759 xl('Allow insurance eligibility checks using Office Ally')
2762 'payment_gateway' => array(
2763 xl('Select Credit Card Payment Gateway'),
2764 array(
2765 'InHouse' => xl('In House'),
2766 'AuthorizeNet' => xl('Authorize.Net'),
2767 'Stripe' => xl('Stripe')
2769 'InHouse',
2770 xl('Enable a Payment Gateway Service for processing credit card transactions')
2773 'gateway_mode_production' => array(
2774 xl('Set Gateway to Production Mode'),
2775 'bool', // data type
2776 '0',
2777 xl('Check this to go live. Not checked is testing mode.')
2780 'gateway_public_key' => array(
2781 xl('Gateway Publishable Key'),
2782 'encrypted',
2784 xl('The public access key for secure tokenize of credit or debit card authorization. PCI compliance')
2787 'gateway_api_key' => array(
2788 xl('Gateway API Login Auth Name or Secret'),
2789 'encrypted',
2791 xl('The Auth Name or API key for selected account.Auth Name for Authorize.Net and API Secret for Stripe')
2794 'gateway_transaction_key' => array(
2795 xl('Gateway Transaction Key'),
2796 'encrypted',
2798 xl('Mainly Authorize.Net uses two keys')
2801 'medex_enable' => array(
2802 xl('Enable MedEx Communication Service'),
2803 'bool', // data type
2804 '0',
2805 xl('Enable MedEx Communication Service')
2808 'erx_enable' => array(
2809 xl('Enable NewCrop eRx Service'),
2810 'bool',
2811 '0',
2812 xl('Enable NewCrop eRx Service.') . ' ' .
2813 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.')
2816 'erx_newcrop_path' => array(
2817 xl('NewCrop eRx Site Address'),
2818 'text',
2819 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2820 xl('URL for NewCrop eRx Site Address.')
2823 'erx_newcrop_path_soap' => array(
2824 xl('NewCrop eRx Web Service Address'),
2825 'text',
2826 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2827 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2830 'erx_soap_ttl_allergies' => array(
2831 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2832 'num',
2833 '21600',
2834 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2837 'erx_soap_ttl_medications' => array(
2838 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2839 'num',
2840 '21600',
2841 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2844 'erx_account_partner_name' => array(
2845 xl('NewCrop eRx Partner Name'),
2846 'text',
2848 xl('Partner Name issued for NewCrop eRx service.')
2851 'erx_account_name' => array(
2852 xl('NewCrop eRx Name'),
2853 'text',
2855 xl('Account Name issued for NewCrop eRx service.')
2858 'erx_account_password' => array(
2859 xl('NewCrop eRx Password'),
2860 'encrypted',
2862 xl('Account Password issued for NewCrop eRx service.')
2865 'erx_account_id' => array(
2866 xl('NewCrop eRx Account Id'),
2867 'text',
2868 '1',
2869 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2872 'erx_upload_active' => array(
2873 xl('Only upload active prescriptions'),
2874 'bool',
2875 '0',
2876 xl('Only upload active prescriptions to NewCrop eRx.')
2879 'erx_import_status_message' => array(
2880 xl('Enable NewCrop eRx import status message'),
2881 'bool',
2882 '0',
2883 xl('Enable import status message after visiting NewCrop eRx.')
2886 'erx_medication_display' => array(
2887 xl('Do not display NewCrop eRx Medications uploaded'),
2888 'bool',
2889 '0',
2890 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2893 'erx_allergy_display' => array(
2894 xl('Do not display NewCrop eRx Allergy uploaded'),
2895 'bool',
2896 '0',
2897 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2900 'erx_default_patient_country' => array(
2901 xl('NewCrop eRx Default Patient Country'),
2902 array(
2903 '' => '',
2904 'US' => xl('USA'),
2905 'CA' => xl('Canada'),
2906 'MX' => xl('Mexico'),
2909 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2912 'erx_debug_setting' => array(
2913 xl('NewCrop eRx Debug Setting'),
2914 array(
2915 0 => xl('None'),
2916 1 => xl('Request Only'),
2917 2 => xl('Response Only'),
2918 3 => xl('Request & Response'),
2920 '0',
2921 xl('Log all NewCrop eRx Requests and / or Responses.'),
2924 'weno_rx_enable' => array(
2925 xl('Enable Weno eRx Service'),
2926 'bool',
2927 '0',
2928 xl('Enable Weno eRx Service') . ' ' . xl('Contact Open Med Practice, www.openmedpractice.com for subscribing to the Weno Free eRx service.')
2931 'weno_account_id' => array(
2932 xl('Weno eRx Account Id'),
2933 'text',
2934 '137',
2935 xl('Account Id issued for Weno eRx service.')
2938 'weno_account_pass' => array(
2939 xl('Weno eRx Account Pass'),
2940 'encrypted', // data type
2941 '7C84773D5063B20BC9E41636A091C6F17E9C1E34',
2942 xl('Account Id issued for Weno eRx service.')
2945 'weno_provider_id' => array(
2946 xl('Weno eRx Clinic ID'),
2947 'text',
2948 'C36275',
2949 xl('Account Id issued for Your clinics eRx service.')
2952 'ccda_alt_service_enable' => array(
2953 xl('Enable C-CDA Alternate Service'),
2954 array(
2955 0 => xl('Off'),
2956 1 => xl('Care Coordination Only'),
2957 2 => xl('Portal Only'),
2958 3 => xl('Both'),
2960 '0',
2961 xl('Enable C-CDA Alternate Service')
2964 'phimail_enable' => array(
2965 xl('Enable phiMail Direct Messaging Service'),
2966 'bool', // data type
2967 '0',
2968 xl('Enable phiMail Direct Messaging Service')
2971 'phimail_server_address' => array(
2972 xl('phiMail Server Address'),
2973 'text', // data type
2974 'https://phimail.example.com:32541',
2975 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2978 'phimail_username' => array(
2979 xl('phiMail Username'),
2980 'text', // data type
2982 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2985 'phimail_password' => array(
2986 xl('phiMail Password'),
2987 'encrypted', // data type
2989 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2992 'phimail_notify' => array(
2993 xl('phiMail notification user'),
2994 'text', // data type
2995 'admin',
2996 xl('This user will receive notification of new incoming Direct messages')
2999 'phimail_interval' => array(
3000 xl('phiMail Message Check Interval (minutes)'),
3001 'num', // data type
3002 '5',
3003 xl('Interval between message checks (set to zero for manual checks only)')
3006 'phimail_ccd_enable' => array(
3007 xl('phiMail Allow CCD Send'),
3008 'bool', // data type
3009 '0',
3010 xl('phiMail Allow CCD Send')
3013 'phimail_ccr_enable' => array(
3014 xl('phiMail Allow CCR Send'),
3015 'bool', // data type
3016 '0',
3017 xl('phiMail Allow CCR Send')
3021 'Rx' => array(
3022 'rx_enable_DEA' => array(
3023 xl('Rx Enable DEA #'),
3024 'bool', // data type
3025 '1',
3026 xl('Rx Enable DEA #')
3028 'rx_show_DEA' => array(
3029 xl('Rx Show DEA #'),
3030 'bool', // data type
3031 '0',
3032 xl('Rx Show DEA #')
3034 'rx_enable_NPI' => array(
3035 xl('Rx Enable NPI'),
3036 'bool', // data type
3037 '0',
3038 xl('Rx Enable NPI')
3040 'rx_show_NPI' => array(
3041 xl('Rx Show NPI'),
3042 'bool', // data type
3043 '0',
3044 xl('Rx Show NPI')
3046 'rx_enable_SLN' => array(
3047 xl('Rx Enable State Lic. #'),
3048 'bool', // data type
3049 '0',
3050 xl('Rx Enable State Lic. #')
3052 'rx_show_SLN' => array(
3053 xl('Rx Show State Lic. #'),
3054 'bool', // data type
3055 '0',
3056 xl('Rx Show State Lic. #')
3058 'rx_show_drug_drug' => array(
3059 xl('Rx NLM Drug-Drug'),
3060 'bool', // data type
3061 '0',
3062 xl('Rx NLM Drug-Drug')
3064 'rx_paper_size' => array(
3065 xl('Rx Paper Size'), // descriptive name
3066 array(
3067 'LETTER' => xl('Letter Paper Size'),
3068 'LEGAL' => xl('Legal Paper Size'),
3069 'FOLIO' => xl('Folio Paper Size'),
3070 'EXECUTIVE' => xl('Executive Paper Size'),
3071 '4A0' => ('4A0' . " " . xl('Paper Size')),
3072 '2A0' => ('2A0' . " " . xl('Paper Size')),
3073 'A0' => ('A0' . " " . xl('Paper Size')),
3074 'A1' => ('A1' . " " . xl('Paper Size')),
3075 'A2' => ('A2' . " " . xl('Paper Size')),
3076 'A3' => ('A3' . " " . xl('Paper Size')),
3077 'A4' => ('A4' . " " . xl('Paper Size')),
3078 'A5' => ('A5' . " " . xl('Paper Size')),
3079 'A6' => ('A6' . " " . xl('Paper Size')),
3080 'A7' => ('A7' . " " . xl('Paper Size')),
3081 'A8' => ('A8' . " " . xl('Paper Size')),
3082 'A9' => ('A9' . " " . xl('Paper Size')),
3083 'A10' => ('A10' . " " . xl('Paper Size')),
3084 'B0' => ('B0' . " " . xl('Paper Size')),
3085 'B1' => ('B1' . " " . xl('Paper Size')),
3086 'B2' => ('B2' . " " . xl('Paper Size')),
3087 'B3' => ('B3' . " " . xl('Paper Size')),
3088 'B4' => ('B4' . " " . xl('Paper Size')),
3089 'B5' => ('B5' . " " . xl('Paper Size')),
3090 'B6' => ('B6' . " " . xl('Paper Size')),
3091 'B7' => ('B7' . " " . xl('Paper Size')),
3092 'B8' => ('B8' . " " . xl('Paper Size')),
3093 'B9' => ('B9' . " " . xl('Paper Size')),
3094 'B10' => ('B10' . " " . xl('Paper Size')),
3095 'C0' => ('C0' . " " . xl('Paper Size')),
3096 'C1' => ('C1' . " " . xl('Paper Size')),
3097 'C2' => ('C2' . " " . xl('Paper Size')),
3098 'C3' => ('C3' . " " . xl('Paper Size')),
3099 'C4' => ('C4' . " " . xl('Paper Size')),
3100 'C5' => ('C5' . " " . xl('Paper Size')),
3101 'C6' => ('C6' . " " . xl('Paper Size')),
3102 'C7' => ('C7' . " " . xl('Paper Size')),
3103 'C8' => ('C8' . " " . xl('Paper Size')),
3104 'C9' => ('C9' . " " . xl('Paper Size')),
3105 'C10' => ('C10' . " " . xl('Paper Size')),
3106 'RA0' => ('RA0' . " " . xl('Paper Size')),
3107 'RA1' => ('RA1' . " " . xl('Paper Size')),
3108 'RA2' => ('RA2' . " " . xl('Paper Size')),
3109 'RA3' => ('RA3' . " " . xl('Paper Size')),
3110 'RA4' => ('RA4' . " " . xl('Paper Size')),
3111 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3112 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3113 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3114 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3115 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3117 'LETTER', // default = tree menu
3118 xl('Rx Paper Size')
3120 'rx_left_margin' => array(
3121 xl('Rx Left Margin (px)'),
3122 'num',
3123 '30',
3124 xl('Rx Left Margin (px)')
3126 'rx_right_margin' => array(
3127 xl('Rx Right Margin (px)'),
3128 'num',
3129 '30',
3130 xl('Rx Right Margin (px)')
3132 'rx_top_margin' => array(
3133 xl('Rx Top Margin (px)'),
3134 'num',
3135 '72',
3136 xl('Rx Top Margin (px)')
3138 'rx_bottom_margin' => array(
3139 xl('Rx Bottom Margin (px)'),
3140 'num',
3141 '30',
3142 xl('Rx Bottom Margin (px)')
3144 'rx_use_fax_template' => array(
3145 xl('Show button for download fax template'),
3146 'bool', // data type
3147 '1', // default = true
3148 xl('Show button in the prescription list for download fax template')
3150 'rx_zend_html_template' => array(
3151 xl('Rx html print - zend module'),
3152 'bool', // data type
3153 '0', // default = false
3154 xl('Use an html template from zend module')
3156 'rx_zend_html_action' => array(
3157 xl('Name of zend template for html print'),
3158 'text', // data type
3159 'default',
3160 xl('Name of zend template for html print, possible to add custom template in the PrescriptionTemplate module')
3162 'rx_zend_pdf_template' => array(
3163 xl('Rx pdf - zend template'),
3164 'bool', // data type
3165 '0', // default = false
3166 xl('Use a pdf template from zend module')
3168 'rx_zend_pdf_action' => array(
3169 xl('Name of zend template for pdf export'),
3170 'text', // data type
3171 'default',
3172 xl('Name of zend template for pdf export, possible to add custom template in the PrescriptionTemplate module')
3175 'PDF' => array(
3176 'pdf_layout' => array(
3177 xl('Layout'),
3178 array(
3179 'P' => xl('Portrait'),
3180 'L' => xl('Landscape')
3182 'P', //defaut
3183 xl("Choose Layout Direction"),
3185 'pdf_language' => array(
3186 xl('PDF Language'),
3187 array(
3188 'aa' => xl('Afar'),
3189 'af' => xl('Afrikaans'),
3190 'ak' => xl('Akan'),
3191 'sq' => xl('Albanian'),
3192 'am' => xl('Amharic'),
3193 'ar' => xl('Arabic'),
3194 'an' => xl('Aragonese'),
3195 'hy' => xl('Armenian'),
3196 'as' => xl('Assamese'),
3197 'av' => xl('Avaric'),
3198 'ae' => xl('Avestan'),
3199 'ay' => xl('Aymara'),
3200 'az' => xl('Azerbaijani'),
3201 'bm' => xl('Bambara'),
3202 'ba' => xl('Bashkir'),
3203 'eu' => xl('Basque'),
3204 'be' => xl('Belarusian'),
3205 'bn' => xl('Bengali- Bangla'),
3206 'bh' => xl('Bihari'),
3207 'bi' => xl('Bislama'),
3208 'bs' => xl('Bosnian'),
3209 'br' => xl('Breton'),
3210 'bg' => xl('Bulgarian'),
3211 'my' => xl('Burmese'),
3212 'ca' => xl('Catalan- Valencian'),
3213 'ch' => xl('Chamorro'),
3214 'ce' => xl('Chechen'),
3215 'ny' => xl('Chichewa- Chewa- Nyanja'),
3216 'zh' => xl('Chinese'),
3217 'cv' => xl('Chuvash'),
3218 'kw' => xl('Cornish'),
3219 'co' => xl('Corsican'),
3220 'cr' => xl('Cree'),
3221 'hr' => xl('Croatian'),
3222 'cs' => xl('Czech'),
3223 'da' => xl('Danish'),
3224 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
3225 'nl' => xl('Dutch'),
3226 'dz' => xl('Dzongkha'),
3227 'en' => xl('English'),
3228 'eo' => xl('Esperanto'),
3229 'et' => xl('Estonian'),
3230 'ee' => xl('Ewe'),
3231 'fo' => xl('Faroese'),
3232 'fj' => xl('Fijian'),
3233 'fi' => xl('Finnish'),
3234 'fr' => xl('French'),
3235 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
3236 'gl' => xl('Galician'),
3237 'ka' => xl('Georgian'),
3238 'de' => xl('German'),
3239 'el' => xl('Greek, Modern'),
3240 'gn' => xl('Guarani'),
3241 'gu' => xl('Gujarati'),
3242 'ht' => xl('Haitian- Haitian Creole'),
3243 'ha' => xl('Hausa'),
3244 'he' => xl('Hebrew (modern)'),
3245 'hz' => xl('Herero'),
3246 'hi' => xl('Hindi'),
3247 'ho' => xl('Hiri Motu'),
3248 'hu' => xl('Hungarian'),
3249 'ia' => xl('Interlingua'),
3250 'id' => xl('Indonesian'),
3251 'ie' => xl('Interlingue'),
3252 'ga' => xl('Irish'),
3253 'ig' => xl('Igbo'),
3254 'ik' => xl('Inupiaq'),
3255 'io' => xl('Ido'),
3256 'is' => xl('Icelandic'),
3257 'it' => xl('Italian'),
3258 'iu' => xl('Inuktitut'),
3259 'ja' => xl('Japanese'),
3260 'jv' => xl('Javanese'),
3261 'kl' => xl('Kalaallisut, Greenlandic'),
3262 'kn' => xl('Kannada'),
3263 'kr' => xl('Kanuri'),
3264 'ks' => xl('Kashmiri'),
3265 'kk' => xl('Kazakh'),
3266 'km' => xl('Khmer'),
3267 'ki' => xl('Kikuyu, Gikuyu'),
3268 'rw' => xl('Kinyarwanda'),
3269 'ky' => xl('Kyrgyz'),
3270 'kv' => xl('Komi'),
3271 'kg' => xl('Kongo'),
3272 'ko' => xl('Korean'),
3273 'ku' => xl('Kurdish'),
3274 'kj' => xl('Kwanyama, Kuanyama'),
3275 'la' => xl('Latin'),
3276 'lb' => xl('Luxembourgish, Letzeburgesch'),
3277 'lg' => xl('Ganda'),
3278 'li' => xl('Limburgish, Limburgan, Limburger'),
3279 'ln' => xl('Lingala'),
3280 'lo' => xl('Lao'),
3281 'lt' => xl('Lithuanian'),
3282 'lu' => xl('Luba-Katanga'),
3283 'lv' => xl('Latvian'),
3284 'gv' => xl('Manx'),
3285 'mk' => xl('Macedonian'),
3286 'mg' => xl('Malagasy'),
3287 'ms' => xl('Malay'),
3288 'ml' => xl('Malayalam'),
3289 'mt' => xl('Maltese'),
3290 'mi' => xl('Maori'),
3291 'mr' => xl('Marathi (Marathi)'),
3292 'mh' => xl('Marshallese'),
3293 'mn' => xl('Mongolian'),
3294 'na' => xl('Nauru'),
3295 'nv' => xl('Navajo, Navaho'),
3296 'nb' => xl('Norwegian Bokmal'),
3297 'nd' => xl('North Ndebele'),
3298 'ne' => xl('Nepali'),
3299 'ng' => xl('Ndonga'),
3300 'nn' => xl('Norwegian Nynorsk'),
3301 'no' => xl('Norwegian'),
3302 'ii' => xl('Nuosu'),
3303 'nr' => xl('South Ndebele'),
3304 'oc' => xl('Occitan'),
3305 'oj' => xl('Ojibwe, Ojibwa'),
3306 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
3307 'om' => xl('Oromo'),
3308 'or' => xl('Oriya'),
3309 'os' => xl('Ossetian, Ossetic'),
3310 'pa' => xl('Panjabi, Punjabi'),
3311 'pi' => xl('Pali'),
3312 'fa' => xl('Persian (Farsi)'),
3313 'pl' => xl('Polish'),
3314 'ps' => xl('Pashto, Pushto'),
3315 'pt' => xl('Portuguese'),
3316 'qu' => xl('Quechua'),
3317 'rm' => xl('Romansh'),
3318 'rn' => xl('Kirundi'),
3319 'ro' => xl('Romanian'),
3320 'ru' => xl('Russian'),
3321 'sa' => xl('Sanskrit (Samskrta)'),
3322 'sc' => xl('Sardinian'),
3323 'sd' => xl('Sindhi'),
3324 'se' => xl('Northern Sami'),
3325 'sm' => xl('Samoan'),
3326 'sg' => xl('Sango'),
3327 'sr' => xl('Serbian'),
3328 'gd' => xl('Scottish Gaelic- Gaelic'),
3329 'sn' => xl('Shona'),
3330 'si' => xl('Sinhala, Sinhalese'),
3331 'sk' => xl('Slovak'),
3332 'sl' => xl('Slovene'),
3333 'so' => xl('Somali'),
3334 'st' => xl('Southern Sotho'),
3335 'es' => xl('Spanish- Castilian'),
3336 'su' => xl('Sundanese'),
3337 'sw' => xl('Swahili'),
3338 'ss' => xl('Swati'),
3339 'sv' => xl('Swedish'),
3340 'ta' => xl('Tamil'),
3341 'te' => xl('Telugu'),
3342 'tg' => xl('Tajik'),
3343 'th' => xl('Thai'),
3344 'ti' => xl('Tigrinya'),
3345 'bo' => xl('Tibetan Standard, Tibetan, Central'),
3346 'tk' => xl('Turkmen'),
3347 'tl' => xl('Tagalog'),
3348 'tn' => xl('Tswana'),
3349 'to' => xl('Tonga (Tonga Islands)'),
3350 'tr' => xl('Turkish'),
3351 'ts' => xl('Tsonga'),
3352 'tt' => xl('Tatar'),
3353 'tw' => xl('Twi'),
3354 'ty' => xl('Tahitian'),
3355 'ug' => xl('Uyghur, Uighur'),
3356 'uk' => xl('Ukrainian'),
3357 'ur' => xl('Urdu'),
3358 'uz' => xl('Uzbek'),
3359 've' => xl('Venda'),
3360 'vi' => xl('Vietnamese'),
3361 'vo' => xl('Volapuk'),
3362 'wa' => xl('Walloon'),
3363 'cy' => xl('Welsh'),
3364 'wo' => xl('Wolof'),
3365 'fy' => xl('Western Frisian'),
3366 'xh' => xl('Xhosa'),
3367 'yi' => xl('Yiddish'),
3368 'yo' => xl('Yoruba'),
3369 'za' => xl('Zhuang, Chuang'),
3370 'zu' => xl('Zulu'),
3372 'en', // default English
3373 xl('Choose PDF languange Preference'),
3375 'pdf_size' => array(
3376 xl('Paper Size'), // Descriptive Name
3377 array(
3378 'LETTER' => xl('Letter Paper Size'),
3379 'LEGAL' => xl('Legal Paper Size'),
3380 'FOLIO' => xl('Folio Paper Size'),
3381 'EXECUTIVE' => xl('Executive Paper Size'),
3382 '4A0' => ('4A0' . " " . xl('Paper Size')),
3383 '2A0' => ('2A0' . " " . xl('Paper Size')),
3384 'A0' => ('A0' . " " . xl('Paper Size')),
3385 'A1' => ('A1' . " " . xl('Paper Size')),
3386 'A2' => ('A2' . " " . xl('Paper Size')),
3387 'A3' => ('A3' . " " . xl('Paper Size')),
3388 'A4' => ('A4' . " " . xl('Paper Size')),
3389 'A5' => ('A5' . " " . xl('Paper Size')),
3390 'A6' => ('A6' . " " . xl('Paper Size')),
3391 'A7' => ('A7' . " " . xl('Paper Size')),
3392 'A8' => ('A8' . " " . xl('Paper Size')),
3393 'A9' => ('A9' . " " . xl('Paper Size')),
3394 'A10' => ('A10' . " " . xl('Paper Size')),
3395 'B0' => ('B0' . " " . xl('Paper Size')),
3396 'B1' => ('B1' . " " . xl('Paper Size')),
3397 'B2' => ('B2' . " " . xl('Paper Size')),
3398 'B3' => ('B3' . " " . xl('Paper Size')),
3399 'B4' => ('B4' . " " . xl('Paper Size')),
3400 'B5' => ('B5' . " " . xl('Paper Size')),
3401 'B6' => ('B6' . " " . xl('Paper Size')),
3402 'B7' => ('B7' . " " . xl('Paper Size')),
3403 'B8' => ('B8' . " " . xl('Paper Size')),
3404 'B9' => ('B9' . " " . xl('Paper Size')),
3405 'B10' => ('B10' . " " . xl('Paper Size')),
3406 'C0' => ('C0' . " " . xl('Paper Size')),
3407 'C1' => ('C1' . " " . xl('Paper Size')),
3408 'C2' => ('C2' . " " . xl('Paper Size')),
3409 'C3' => ('C3' . " " . xl('Paper Size')),
3410 'C4' => ('C4' . " " . xl('Paper Size')),
3411 'C5' => ('C5' . " " . xl('Paper Size')),
3412 'C6' => ('C6' . " " . xl('Paper Size')),
3413 'C7' => ('C7' . " " . xl('Paper Size')),
3414 'C8' => ('C8' . " " . xl('Paper Size')),
3415 'C9' => ('C9' . " " . xl('Paper Size')),
3416 'C10' => ('C10' . " " . xl('Paper Size')),
3417 'RA0' => ('RA0' . " " . xl('Paper Size')),
3418 'RA1' => ('RA1' . " " . xl('Paper Size')),
3419 'RA2' => ('RA2' . " " . xl('Paper Size')),
3420 'RA3' => ('RA3' . " " . xl('Paper Size')),
3421 'RA4' => ('RA4' . " " . xl('Paper Size')),
3422 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3423 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3424 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3425 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3426 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3428 'LETTER',
3429 xl('Choose Paper Size')
3431 'pdf_left_margin' => array(
3432 xl('Left Margin (mm)'),
3433 'num',
3434 '5',
3435 xl('Left Margin (mm)')
3437 'pdf_right_margin' => array(
3438 xl('Right Margin (mm)'),
3439 'num',
3440 '5',
3441 xl('Right Margin (mm)')
3443 'pdf_top_margin' => array(
3444 xl('Top Margin (mm)'),
3445 'num',
3446 '5',
3447 xl('Top Margin (mm)')
3449 'pdf_bottom_margin' => array(
3450 xl('Bottom Margin (px)'),
3451 'num',
3452 '8',
3453 xl('Bottom Margin (px)')
3455 'pdf_output' => array(
3456 xl('Output Type'),
3457 array(
3458 'D' => xl('Download'),
3459 'I' => xl('Inline')
3461 'D', //defaut
3462 xl("Choose Download or Display Inline"),
3465 'chart_label_type' => array(
3466 xl('Patient Label Type'),
3467 array(
3468 '0' => xl('None'),
3469 '1' => '5160',
3470 '2' => '5161',
3471 '3' => '5162'
3473 '1', // default
3474 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3477 'barcode_label_type' => array(
3478 xl('Barcode Label Type'),
3479 array(
3480 '0' => xl('None'),
3481 '1' => 'std25',
3482 '2' => 'int25',
3483 '3' => 'ean8',
3484 '4' => 'ean13',
3485 '5' => 'upc',
3486 '6' => 'code11',
3487 '7' => 'code39',
3488 '8' => 'code93',
3489 '9' => 'code128',
3490 '10' => 'codabar',
3491 '11' => 'msi',
3492 '12' => 'datamatrix'
3494 '9', // default = None
3495 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3498 'addr_label_type' => array(
3499 xl('Print Patient Address Label'),
3500 'bool', // data type
3501 '1', // default = false
3502 xl('Select to print patient address labels from popups in left nav screen.')
3505 'env_x_width' => array(
3506 xl('Envelope Width in mm'),
3507 'num', // data type
3508 '104.775',
3509 xl('In Portrait mode, determines the width of the envelope along the x-axis in mm')
3512 'env_y_height' => array(
3513 xl('Envelope Height in mm'),
3514 'num', // data type
3515 '241.3',
3516 xl('In Portrait mode, determines the height of the envelope along the y-axis in mm')
3519 'env_font_size' => array(
3520 xl('Font Size in Pt'),
3521 'num', // data type
3522 '14',
3523 xl('Sets the font of the address text on the envelope in mm')
3526 'env_x_dist' => array(
3527 xl('Envelope x-axis starting pt'),
3528 'num', // data type
3529 '65',
3530 xl('Distance from the \'top\' of the envelope in mm')
3533 'env_y_dist' => array(
3534 xl('Envelope y-axis starting pt'),
3535 'num', // data type
3536 '220',
3537 xl('Distance from the right most edge of the envelope in portrait position in mm')