revert theme to light - may be time to go to a color theme soon, but which one?
[openemr.git] / library / globals.inc.php
blob0a0d3eea82ea012c5e6b37563f186757dca9af2d
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_chart_tracker' => array(
751 xl('Disable Chart Tracker'),
752 'bool', // data type
753 '0', // default = false
754 xl('Removes the Chart Tracker feature')
757 'disable_immunizations' => array(
758 xl('Disable Immunizations'),
759 'bool', // data type
760 '0', // default = false
761 xl('Removes support for immunizations')
764 'disable_prescriptions' => array(
765 xl('Disable Prescriptions'),
766 'bool', // data type
767 '0', // default = false
768 xl('Removes support for prescriptions')
771 'omit_employers' => array(
772 xl('Omit Employers'),
773 'bool', // data type
774 '0', // default = false
775 xl('Omit employer information in patient demographics')
778 'select_multi_providers' => array(
779 xl('Support Multi-Provider Events'),
780 'bool', // data type
781 '0', // default = false
782 xl('Support calendar events that apply to multiple providers')
785 'disable_non_default_groups' => array(
786 xl('Disable User Groups'),
787 'bool', // data type
788 '1', // default = true
789 xl('Normally this should be checked. Not related to access control.')
792 'ignore_pnotes_authorization' => array(
793 xl('Skip Authorization of Patient Notes'),
794 'bool', // data type
795 '1', // default = true
796 xl('Do not require patient notes to be authorized')
799 'support_encounter_claims' => array(
800 xl('Allow Encounter Claims'),
801 'bool', // data type
802 '0', // default = false
803 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
806 'advance_directives_warning' => array(
807 xl('Advance Directives Warning'),
808 'bool', // data type
809 '0', // default = false
810 xl('Display advance directives in the demographics page.')
813 'configuration_import_export' => array(
814 xl('Configuration Export/Import'),
815 'bool', // data type
816 '0', // default = false
817 xl('Support export/import of configuration data via the Backup page.')
820 'restrict_user_facility' => array(
821 xl('Restrict Users to Facilities'),
822 'bool', // data type
823 '0', // default
824 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
827 'set_facility_cookie' => array(
828 xl('Remember Selected Facility'),
829 'bool', // data type
830 '0', // default
831 xl('Set a facility cookie to remember the selected facility between logins.')
834 'receipts_by_provider' => array(
835 xl('Print Receipts by Provider'),
836 'bool',
837 '0', // default
838 xl('Causes Receipts to Print Encounter/Primary Provider Info')
841 'discount_by_money' => array(
842 xl('Discounts as Monetary Amounts'),
843 'bool', // data type
844 '1', // default = true
845 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
848 'gbl_visit_referral_source' => array(
849 xl('Referral Source for Encounters'),
850 'bool', // data type
851 '0', // default = false
852 xl('A referral source may be specified for each visit.')
855 'gbl_mask_patient_id' => array(
856 xl('Mask for Patient IDs'),
857 'text', // data type
858 '', // default
859 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
862 'gbl_mask_invoice_number' => array(
863 xl('Mask for Invoice Numbers'),
864 'text', // data type
865 '', // default
866 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
869 'gbl_mask_product_id' => array(
870 xl('Mask for Product IDs'),
871 'text', // data type
872 '', // default
873 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
876 'hide_billing_widget' => array(
877 xl('Hide Billing Widget'),
878 'bool', // data type
879 '0', // default = false
880 xl('This will hide the Billing Widget in the Patient Summary screen')
883 'force_billing_widget_open' => array(
884 xl('Force Billing Widget Open'),
885 'bool', // data type
886 '0', // default = false
887 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
890 'activate_ccr_ccd_report' => array(
891 xl('Activate CCR/CCD Reporting'),
892 'bool', // data type
893 '1', // default = true
894 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
897 'hide_document_encryption' => array(
898 xl('Hide Encryption/Decryption Options In Document Management'),
899 'bool', // data type
900 '1', // default = true
901 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
904 'use_custom_immun_list' => array(
905 xl('Use Custom Immunization List'),
906 'bool', // data type
907 '0', // default = true
908 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
911 'amendments' => array(
912 xl('Amendments'),
913 'bool', // data type
914 '1', // default = true
915 xl('Enable amendments feature')
918 'allow_pat_delete' => array(
919 xl('Allow Administrators to Delete Patients'),
920 'bool', // data type
921 '0', // default = false
922 xl('Allow Administrators to Delete Patients')
926 'observation_results_immunization' => array(
927 xl('Immunization Observation Results'),
928 'bool', // data type
929 '1', // default
930 xl('Observation Results in Immunization')
933 'enable_help' => array(
934 xl('Enable Help Modal'),
935 array(
936 '0' => xl('Hide Help Modal'),
937 '1' => xl('Show Help Modal'),
938 '2' => xl('Disable Help Modal'),
939 ), // data type
940 '1', // default = Print End of Day Report 1
941 xl('This will allow the display of help modal on help enabled pages')
943 'messages_due_date' => array(
944 xl('Messages - due date'),
945 'bool', // data type
946 '0', // default false
947 xl('Enables choose due date to message')
950 'expand_form' => array(
951 xl('Expand Form'),
952 'bool', // data type
953 '0', // default false
954 xl('Open all expandable forms in expanded state')
957 // Report Tab
959 'Report' => array(
961 'use_custom_daysheet' => array(
962 xl('Use Custom End of Day Report'),
963 array(
964 '0' => xl('None'),
965 '1' => xl('Print End of Day Report 1'),
966 '2' => xl('Print End of Day Report 2'),
967 '3' => xl('Print End of Day Report 3'),
968 ), // data type
969 '1', // default = Print End of Day Report 1
970 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
973 'daysheet_provider_totals' => array(
974 xl('End of Day by Provider or allow Totals Only'),
975 array(
976 '0' => xl('Provider'),
977 '1' => xl('Totals Only'),
979 '1', // default
980 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
983 'ledger_begin_date' => array(
984 xl('Beginning Date for Ledger Report'),
985 array(
986 'Y1' => xl('One Year Ago'),
987 'Y2' => xl('Two Years Ago'),
988 'M6' => xl('Six Months Ago'),
989 'M3' => xl('Three Months Ago'),
990 'M1' => xl('One Month Ago'),
991 'D1' => xl('One Day Ago'),
993 'Y1', // default = One Year
994 xl('This is the Beginning date for the Ledger Report.')
997 'print_next_appointment_on_ledger' => array(
998 xl('Print the Next Appointment on the Bottom of the Ledger'),
999 'bool', // data type
1000 '1', // default = true
1001 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
1004 'sales_report_invoice' => array(
1005 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
1006 array(
1007 '0' => xl('Invoice Number'),
1008 '1' => xl('Patient Name and ID'),
1009 '2' => xl('Patient Name and Invoice'),
1011 '2', // default = 2
1012 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
1015 'cash_receipts_report_invoice' => array(
1016 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
1017 array(
1018 '0' => xl('Invoice Number'),
1019 '1' => xl('Patient Name'),
1021 '0', // default = 0
1022 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
1027 // Billing Tab
1029 'Billing' => array(
1031 'ub04_support' => array(
1032 xl('Activate UB04/837I Claim Support'),
1033 'bool', // data type
1034 '0', // default = false
1035 xl('Allow institutional claims support.')
1038 'top_ubmargin_default' => array(
1039 xl('Default top print margin for UB04'),
1040 'num', // data type
1041 '14', // default
1042 xl('This is the default top print margin for UB04. It will adjust the final printed output up or down.')
1045 'left_ubmargin_default' => array(
1046 xl('Default left print margin for UB04'),
1047 'num', // data type
1048 '11', // default
1049 xl('This is the default left print margin for UB04. It will adjust the final printed output left or right.')
1052 'cms_top_margin_default' => array(
1053 xl('Default top print margin for CMS 1500'),
1054 'num', // data type
1055 '24', // default
1056 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
1059 'cms_left_margin_default' => array(
1060 xl('Default left print margin for CMS 1500'),
1061 'num', // data type
1062 '20', // default
1063 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
1066 'preprinted_cms_1500' => array(
1067 xl('Prints the CMS 1500 on the Preprinted form'),
1068 'bool', // data type
1069 '0', // default = false
1070 xl('Overlay CMS 1500 on the Preprinted form')
1073 'cms_1500_box_31_format' => array(
1074 xl('CMS 1500: Box 31 Format'),
1075 array(
1076 '0' => xl('Signature on File'),
1077 '1' => xl('Firstname Lastname'),
1078 '2' => xl('None'),
1080 '0', // default
1081 xl('This specifies whether to include date in Box 31.')
1084 'cms_1500_box_31_date' => array(
1085 xl('CMS 1500: Date in Box 31 (Signature)'),
1086 array(
1087 '0' => xl('None'),
1088 '1' => xl('Date of Service'),
1089 '2' => xl('Today'),
1091 '0', // default
1092 xl('This specifies whether to include date in Box 31.')
1095 'default_search_code_type' => array(
1096 xl('Default Search Code Type'),
1097 'all_code_types', // data type
1098 'ICD10', // default
1099 xl('The default code type to search for in the Fee Sheet.')
1102 'default_rendering_provider' => array(
1103 xl('Default Rendering Provider in Fee Sheet'),
1104 array(
1105 '0' => xl('Please Select'),
1106 '1' => xl('Current Provider'),
1107 '2' => xl('Current Logged in User'),
1109 '1',
1110 xl('Default selection for rendering provider in fee sheet.')
1113 'posting_adj_disable' => array(
1114 xl('Disable Auto Adjustment Calculations in EOB Posting'),
1115 'bool', // data type
1116 '0', // default = false
1117 xl('Turn off auto calculations of adjustments in EOB')
1120 'show_payment_history' => array(
1121 xl('Show all payment history in Patient Ledger'),
1122 'bool', // data type
1123 '1', // default = true
1124 xl('Turn on to show all payment history in Patient Ledger')
1127 'support_fee_sheet_line_item_provider' => array(
1128 xl('Support provider in line item in fee sheet'),
1129 'bool', // data type
1130 '0', // default = false
1131 xl('This Enables provider in line item in the fee sheet')
1134 'default_fee_sheet_line_item_provider' => array(
1135 xl('Default to a provider for line item in the fee sheet'),
1136 'bool', // data type
1137 '0', // default = false
1138 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1141 'replicate_justification' => array(
1142 xl('Automatically replicate justification codes in Fee Sheet'),
1143 'bool', // data type
1144 '0', // default = false
1145 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1148 'display_units_in_billing' => array(
1149 xl('Display the Units Column on the Billing Screen'),
1150 'bool', // data type
1151 '0', // default = false
1152 xl('Display the Units Column on the Billing Screen')
1155 'notes_to_display_in_Billing' => array(
1156 xl('Which notes are to be displayed in the Billing Screen'),
1157 array(
1158 '0' => xl('None'),
1159 '1' => xl('Encounter Billing Note'),
1160 '2' => xl('Patient Billing Note'),
1161 '3' => xl('All'),
1163 '3',
1164 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1167 'set_pos_code_encounter' => array(
1168 xl('Set POS code in encounter'),
1169 'bool', // data type
1170 '0', // default = false
1171 xl('This feature will allow the default POS facility code to be overriden from the encounter.')
1174 'statement_logo' => array(
1175 xl('Statement Logo GIF Filename'),
1176 'text', // data type
1177 'practice_logo.gif', // data type
1178 xl('Place your logo in sites/default/images and type the filename including gif extension here.')
1181 'use_custom_statement' => array(
1182 xl('Use Custom Statement'),
1183 'bool', // data type
1184 '0', // default = false
1185 xl('This will use the custom Statment showing the description instead of the codes.')
1188 'statement_appearance' => array(
1189 xl('Statement Appearance'),
1190 array(
1191 '0' => xl('Plain Text'),
1192 '1' => xl('Modern/images')
1193 ), // data type
1194 '1', // default = true
1195 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1198 'billing_phone_number' => array(
1199 xl('Custom Billing Phone Number'),
1200 'text', // data type
1202 xl('Phone number for billing inquiries')
1205 'show_aging_on_custom_statement' => array(
1206 xl('Show Aging on Custom Statement'),
1207 'bool', // data type
1208 '0', // default = false
1209 xl('This will Show Aging on the custom Statement.')
1212 'use_statement_print_exclusion' => array(
1213 xl('Allow Statement Exclusions from Printing'),
1214 'bool', // data type
1215 '0', // default = false
1216 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1219 'minimum_amount_to_print' => array(
1220 xl('Total Minimum Amount of Statement to Allow Printing'),
1221 'num', // data type
1222 '1.00',
1223 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1226 'statement_bill_note_print' => array(
1227 xl('Print Patient Billing Note'),
1228 'bool', // data type
1229 '0', // default = false
1230 xl('This will allow printing of the Patient Billing Note on the statements.')
1233 'number_appointments_on_statement' => array(
1234 xl('Number of Appointments on Statement'),
1235 'num', // data type
1236 '0', // default = 0
1237 xl('The Number of Future Appointments to Display on the Statement.')
1240 'statement_message_to_patient' => array(
1241 xl('Print Custom Message'),
1242 'bool', // data type
1243 '0', // default = false
1244 xl('This will allow printing of a custom Message on the statements.')
1247 'statement_msg_text' => array(
1248 xl('Custom Statement message'),
1249 'text', // data type
1251 xl('Text for Custom statement message.')
1254 'use_dunning_message' => array(
1255 xl('Use Custom Dunning Messages'),
1256 'bool', // data type
1257 '0', // default = false
1258 xl('This will allow use of the custom Dunning Messages on the statements.')
1261 'first_dun_msg_set' => array(
1262 xl('Number of days before showing first account message'),
1263 'num', // data type
1264 '30',
1265 xl('Number of days before showing first account message.')
1268 'first_dun_msg_text' => array(
1269 xl('First account message'),
1270 'text', // data type
1272 xl('Text for first account message.')
1275 'second_dun_msg_set' => array(
1276 xl('Number of days before showing second account message'),
1277 'num', // data type
1278 '60',
1279 xl('Number of days before showing second account message')
1282 'second_dun_msg_text' => array(
1283 xl('Second account message'),
1284 'text', // data type
1286 xl('Text for second account message.')
1289 'third_dun_msg_set' => array(
1290 xl('Number of days before showing third account message'),
1291 'num', // data type
1292 '90',
1293 xl('Number of days before showing third account message')
1296 'third_dun_msg_text' => array(
1297 xl('Third account message'),
1298 'text', // data type
1300 xl('Text for third account message.')
1303 'fourth_dun_msg_set' => array(
1304 xl('Number of days before showing fourth account message'),
1305 'num', // data type
1306 '120',
1307 xl('Number of days before showing fourth account message')
1310 'fourth_dun_msg_text' => array(
1311 xl('Fourth account message'),
1312 'text', // data type
1314 xl('Text for fourth account message.')
1317 'fifth_dun_msg_set' => array(
1318 xl('Number of days before showing fifth account message'),
1319 'num', // data type
1320 '150',
1321 xl('Number of days before showing fifth account message')
1324 'fifth_dun_msg_text' => array(
1325 xl('Fifth account message'),
1326 'text', // data type
1328 xl('Text for fifth account message.')
1330 'save_codes_history' => array(
1331 xl('Save codes history'),
1332 'bool', // data type
1333 '1', // default
1334 xl('Save codes history')
1338 // E-Sign Tab
1340 'E-Sign' => array(
1342 'esign_all' => array(
1343 xl('Allows E-Sign on the entire encounter'),
1344 'bool', // data type
1345 '0', // default = false
1346 xl('This will enable signing an entire encounter, rather than individual forms')
1349 'lock_esign_all' => array(
1350 xl('Lock e-signed encounters and their forms'),
1351 'bool', // data type
1352 '0', // default = false
1353 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1356 'esign_individual' => array(
1357 xl('Allows E-Signing Individual Forms'),
1358 'bool', // data type
1359 '1', // default = false
1360 xl('This will enable signing individual forms separately')
1363 'lock_esign_individual' => array(
1364 xl('Lock an e-signed form individually'),
1365 'bool', // data type
1366 '1', // default = false
1367 xl('This will disable the Edit button on any form that is e-signed')
1370 'esign_lock_toggle' => array(
1371 xl('Enable lock toggle'),
1372 'bool', // data type
1373 '0', // default = false
1374 xl('This will give the user the option to lock (separate locking and signing)')
1377 'esign_report_hide_empty_sig' => array(
1378 xl('Hide Empty E-Sign Logs On Report'),
1379 'bool', // data type
1380 '1', // default = false
1381 xl('This will hide empty e-sign logs on the patient report')
1385 //Documents Tab
1386 'Documents' => array(
1388 'document_storage_method' => array(
1389 xl('Document Storage Method'),
1390 array(
1391 '0' => xl('Hard Disk'),
1392 '1' => xl('CouchDB')
1394 '0', // default
1395 xl('Option to save method of document storage.')
1398 'couchdb_host' => array(
1399 xl('CouchDB HostName'),
1400 'text',
1401 'localhost',
1402 xl('CouchDB host'),
1404 'couchdb_user' => array(
1405 xl('CouchDB UserName'),
1406 'text',
1408 xl('Username to connect to CouchDB'),
1410 'couchdb_pass' => array(
1411 xl('CouchDB Password'),
1412 'text',
1414 xl('Password to connect to CouchDB'),
1416 'couchdb_port' => array(
1417 xl('CouchDB Port'),
1418 'text',
1419 '5984',
1420 xl('CouchDB port'),
1422 'couchdb_dbase' => array(
1423 xl('CouchDB Database'),
1424 'text',
1426 xl('CouchDB database name'),
1428 'couchdb_log' => array(
1429 xl('CouchDB Log Enable'),
1430 'bool',
1431 '0',
1432 xl('Enable log for document uploads/downloads to CouchDB'),
1435 'expand_document_tree' => array(
1436 xl('Expand All Document Categories'),
1437 'bool', // data type
1438 '0', // default = false
1439 xl('Expand All Document Categories by Default')
1442 'patient_id_category_name' => array(
1443 xl('Patient ID Category Name'),
1444 'text', // data type
1445 'Patient ID card', // default
1446 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1449 'patient_photo_category_name' => array(
1450 xl('Patient Photo Category Name'),
1451 'text', // data type
1452 'Patient Photograph', // default
1453 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1456 'lab_results_category_name' => array(
1457 xl('Lab Results Category Name'),
1458 'text', // data type
1459 'Lab Report', // default
1460 xl('Document category name for storage of electronically received lab results.')
1463 'gbl_mdm_category_name' => array(
1464 xl('MDM Document Category Name'),
1465 'text', // data type
1466 'Lab Report', // default
1467 xl('Document category name for storage of electronically received MDM documents.')
1469 'generate_doc_thumb' => array(
1470 xl('Generate thumbnail'),
1471 'bool',
1472 '0',
1473 xl('Generate thumbnail images'),
1475 'thumb_doc_max_size' => array(
1476 xl('Thumbnail size'),
1477 'text', // data type
1478 '100', // default
1479 xl('Maximum size of thumbnail file')
1483 // Calendar Tab
1485 'Calendar' => array(
1487 'disable_calendar' => array(
1488 xl('Disable Calendar'),
1489 'bool', // data type
1490 '0', // default
1491 xl('Do not display the calendar.')
1494 'schedule_start' => array(
1495 xl('Calendar Starting Hour'),
1496 'hour',
1497 '8', // default
1498 xl('Beginning hour of day for calendar events.')
1501 'schedule_end' => array(
1502 xl('Calendar Ending Hour'),
1503 'hour',
1504 '17', // default
1505 xl('Ending hour of day for calendar events.')
1508 'calendar_interval' => array(
1509 xl('Calendar Interval'),
1510 array(
1511 '5' => '5',
1512 '10' => '10',
1513 '15' => '15',
1514 '20' => '20',
1515 '30' => '30',
1516 '60' => '60',
1518 '15', // default
1519 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1522 'calendar_view_type' => array(
1523 xl('Default Calendar View'),
1524 array(
1525 'day' => xl('Day'),
1526 'week' => xl('Week'),
1527 'month' => xl('Month'),
1529 'day', // default
1530 xl('This sets the Default Calendar View, Default is Day.')
1532 'first_day_week' => array(
1533 xl('First day in the week'),
1534 array(
1535 '1' => xl('Monday'),
1536 '0' => xl('Sunday'),
1537 '6' => xl('Saturday')
1539 '1',
1540 xl('Your first day of the week.')
1542 'calendar_appt_style' => array(
1543 xl('Appointment Display Style'),
1544 array(
1545 '1' => xl('Last name'),
1546 '2' => xl('Last name, first name'),
1547 '3' => xl('Last name, first name (title)'),
1548 '4' => xl('Last name, first name (title: comments)'),
1550 '2', // default
1551 xl('This determines how appointments display on the calendar.')
1554 'event_color' => array(
1555 xl('Appointment/Event Color'),
1556 array(
1557 '1' => xl('Category Color Schema'),
1558 '2' => xl('Facility Color Schema'),
1559 ), // data type
1560 '1', // default
1561 xl('This determines which color schema used for appointment')
1564 'number_of_appts_to_show' => array(
1565 xl('Appointments - Patient Summary - Number to Display'),
1566 'num',
1567 '10',
1568 xl('Number of Appointments to display in the Patient Summary')
1571 'number_of_group_appts_to_show' => array(
1572 xl('Appointments - Group Summary - Number to Display'),
1573 'num',
1574 '10',
1575 xl('Number of Appointments to display in the Group Summary')
1577 'number_of_ex_appts_to_show' => array(
1578 xl('Excluded Appointments - Tooltip - Number to Display'),
1579 'num',
1580 '15',
1581 xl('Number of Excluded Appointments to display in the Tooltip')
1585 'patient_portal_appt_display_num' => array(
1586 xl('Appointments - Onsite Patient Portal - Number to Display'),
1587 'num',
1588 '20',
1589 xl('Number of Appointments to display in the Onsite Patient Portal')
1592 'appt_display_sets_option' => array(
1593 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1594 'bool', // data type
1595 '1', // default
1596 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1599 'appt_display_sets_color_1' => array(
1600 xl('Appointment Display Sets - Color 1'),
1601 'color_code',
1602 '#FFFFFF',
1603 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).')
1606 'appt_display_sets_color_2' => array(
1607 xl('Appointment Display Sets - Color 2'),
1608 'color_code',
1609 '#E6E6FF',
1610 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).')
1613 'appt_display_sets_color_3' => array(
1614 xl('Appointment Display Sets - Color 3'),
1615 'color_code',
1616 '#E6FFE6',
1617 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1620 'appt_display_sets_color_4' => array(
1621 xl('Appointment Display Sets - Color 4'),
1622 'color_code',
1623 '#FFE6FF',
1624 xl('Color for the last set when not all member appointments are displayed.')
1627 'appt_recurrences_widget' => array(
1628 xl('Recurrent Appointment Display Widget'),
1629 'bool', // data type
1630 '1', // default
1631 xl('Display the recurrent appointment widget in the patient summary.')
1634 'num_past_appointments_to_show' => array(
1635 xl('Past Appointment Display Widget'),
1636 'num', // data type
1637 '0', // default = false
1638 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)')
1641 'docs_see_entire_calendar' => array(
1642 xl('Providers See Entire Calendar'),
1643 'bool', // data type
1644 '0', // default
1645 xl('Check this if you want providers to see all appointments by default and not just their own.')
1648 'auto_create_new_encounters' => array(
1649 xl('Auto-Create New Encounters'),
1650 'bool', // data type
1651 '1', // default
1652 xl('Automatically create a new encounter when an appointment check in status is selected.')
1655 'allow_early_check_in' => array(
1656 xl('Allow Early Check In'),
1657 'bool', // data type
1658 '1', // default
1659 xl("Allow Check In before the appointment's time.")
1662 'submit_changes_for_all_appts_at_once' => array(
1663 xl('Submit Changes For All Appts At Once'),
1664 'bool', // data type
1665 '1', // default
1666 xl('Enables to submit changes for all appointments of a recurrence at once.')
1669 'disable_pat_trkr' => array(
1670 xl('Flow Board: Disable'),
1671 'bool', // data type
1672 '0', // default
1673 xl('Completely remove the ability to display the Patient Flow Board.')
1676 'ptkr_visit_reason' => array(
1677 xl('Flow Board: Show Visit Reason'),
1678 'bool', // data type
1679 '0', // default = false
1680 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1683 'ptkr_show_pid' => array(
1684 xl('Flow Board: Show Patient ID'),
1685 'bool', // data type
1686 '1', // default = true
1687 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1690 'ptkr_show_encounter' => array(
1691 xl('Flow Board: Show Encounter Number'),
1692 'bool', // data type
1693 '1', // default = true
1694 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1697 'ptkr_show_staff' => array(
1698 xl('Flow Board: Show Staff Action'),
1699 'bool', // data type
1700 '1', // default = true
1701 xl('When Checked, Last Staff to Update Board Will Show in Patient Flow Board.')
1704 'ptkr_date_range' => array(
1705 xl('Flow Board: Allow Date Range'),
1706 'bool', // data type
1707 '1', // default = true
1708 xl('This Allows a Date Range to be Selected in Patient Flow Board.')
1711 'ptkr_start_date'=> array(
1712 xl('Flow Board: Default Starting Date'),
1713 array(
1714 'D0' => xl('Current Day'),
1715 'B0' => xl('Beginning of Current Work Week'),
1717 'D0', // default = Current Day
1718 xl('This is the default Beginning date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1721 'ptkr_end_date' => array(
1722 xl('Flow Board: Default Ending Date'),
1723 array(
1724 'Y1' => xl('One Year Ahead'),
1725 'Y2' => xl('Two Years Ahead'),
1726 'M6' => xl('Six Months Ahead'),
1727 'M3' => xl('Three Months Ahead'),
1728 'M1' => xl('One Month Ahead'),
1729 'D7' => xl('One Week Ahead'),
1730 'D1' => xl('One Day Ahead'),
1731 'D0' => xl('Current Day'),
1733 'D0', // default = One Day Ahead
1734 xl('This is the default Ending date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1737 'pat_trkr_timer' => array(
1738 xl('Flow Board: Timer Refresh Interval'),
1739 array(
1740 '0' => xl('No automatic refresh'),
1741 '0:10' => '10',
1742 '0:20' => '20',
1743 '0:30' => '30',
1744 '0:40' => '40',
1745 '0:50' => '50',
1746 '0:59' => '60',
1748 '0:20', // default
1749 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1752 'checkout_roll_off' => array(
1753 xl('Flow Board: display completed checkouts (minutes)'),
1754 'num',
1755 '0', // default
1756 xl('Flow Board will only display completed checkouts for this many minutes. Zero is continuous display.')
1759 'drug_screen' => array(
1760 xl('Flow Board: Enable Random Drug Testing'),
1761 'bool', // data type
1762 '0', // default
1763 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1766 'drug_testing_percentage' => array(
1767 xl('Flow Board: Percentage of Patients to Drug Test'),
1768 'num',
1769 '33', // default
1770 xl('Percentage of Patients to select for Random Drug Testing.')
1773 'maximum_drug_test_yearly' => array(
1774 xl('Flow Board: Max tests per Patient per year'),
1775 'num',
1776 '0', // default
1777 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1780 'disable_rcb' => array(
1781 xl('Recall Board: Disable'),
1782 'bool', // data type
1783 '0', // default
1784 xl('Do not display the Recall Board.')
1792 // Security Tab
1794 'Security' => array(
1795 'sql_string_no_show_screen' => array(
1796 xl('Mode - Do Not Show SQL Queries'),
1797 'bool', // data type
1798 '0', // default
1799 xl('Do not allow SQL queries to be outputted to screen.')
1801 'timeout' => array(
1802 xl('Idle Session Timeout Seconds'),
1803 'num', // data type
1804 '7200', // default
1805 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1807 'secure_upload' => array(
1808 xl('Secure Upload Files with White List'),
1809 'bool', // data type
1810 '0', // default
1811 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1813 'secure_password' => array(
1814 xl('Require Strong Passwords'),
1815 'bool', // data type
1816 '0', // default
1817 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1819 'password_history' => array(
1820 xl('Require Unique Passwords'),
1821 'bool', // data type
1822 '0', // default
1823 xl('Means none of last three passwords are allowed when changing a password.')
1825 'password_compatibility' => array(
1826 xl('Permit unsalted passwords'),
1827 'bool', // data type
1828 '1', // default
1829 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')
1832 'password_expiration_days' => array(
1833 xl('Default Password Expiration Days'),
1834 'num', // data type
1835 '0', // default
1836 xl('Default password expiration period in days. 0 means this feature is disabled.')
1839 'password_grace_time' => array(
1840 xl('Password Expiration Grace Period'),
1841 'num', // data type
1842 '0', // default
1843 xl('Period in days where a user may login with an expired password.')
1846 'is_client_ssl_enabled' => array(
1847 xl('Enable Client SSL'),
1848 'bool', // data type
1849 '0', // default
1850 xl('Enable client SSL certificate authentication.')
1853 'certificate_authority_crt' => array(
1854 xl('Path to CA Certificate File'),
1855 'text', // data type
1856 '', // default
1857 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1860 'certificate_authority_key' => array(
1861 xl('Path to CA Key File'),
1862 'text', // data type
1863 '', // default
1864 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1867 'client_certificate_valid_in_days' => array(
1868 xl('Client Certificate Expiration Days'),
1869 'num', // data type
1870 '365', // default
1871 xl('Number of days that the client certificate is valid.')
1874 'Emergency_Login_email_id' => array(
1875 xl('Emergency Login Email Address'),
1876 'text', // data type
1877 '', // default
1878 xl('Email address, if any, to receive emergency login user activation messages.')
1881 'new_validate' => array(
1882 xl('New form validation'),
1883 'bool',
1884 '1',
1885 xl('New form validation')
1888 'allow_multiple_databases' => array(
1889 xl('Allow multiple databases'),
1890 'bool',
1891 '0',
1892 xl('Allow to use with multiple database')
1895 'safe_key_database' => array(
1896 xl('Safe key database'),
1897 'text', // data type
1898 '', // default
1899 xl('Key for multiple database credentials encryption')
1902 'use_active_directory' => array(
1903 xl('Use Active Directory'),
1904 'bool',
1905 '0',
1906 xl('If enabled, uses the specified active directory for login and authentication.')
1909 'account_suffix' => array(
1910 xl('Active Directory - Suffix Of Account'),
1911 'text',
1913 xl('The suffix of the account.')
1916 'base_dn' => array(
1917 xl('Active Directory - Domains Base'),
1918 'text',
1920 xl('Users is the standard windows CN, replace the DC stuff with your domain.')
1923 'domain_controllers' => array(
1924 xl('Active Directory - Domains Controllers'),
1925 'text',
1927 xl('The IP address of your domain controller(s).')
1932 // Notifications Tab
1934 'Notifications' => array(
1936 'patient_reminder_sender_name' => array(
1937 xl('Patient Reminder Sender Name'),
1938 'text', // data type
1939 '', // default
1940 xl('Name of the sender for patient reminders.')
1943 'patient_reminder_sender_email' => array(
1944 xl('Patient Reminder Sender Email'),
1945 'text', // data type
1946 '', // default
1947 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.')
1950 'practice_return_email_path' => array(
1951 xl('Notification Email Address'),
1952 'text', // data type
1953 '', // default
1954 xl('Email address, if any, to receive administrative notifications.')
1957 'EMAIL_METHOD' => array(
1958 xl('Email Transport Method'),
1959 array(
1960 'PHPMAIL' => 'PHPMAIL',
1961 'SENDMAIL' => 'SENDMAIL',
1962 'SMTP' => 'SMTP',
1964 'SMTP', // default
1965 xl('Method for sending outgoing email.')
1968 'SMTP_HOST' => array(
1969 xl('SMTP Server Hostname'),
1970 'text', // data type
1971 'localhost', // default
1972 xl('If SMTP is used, the server`s hostname or IP address.')
1975 'SMTP_PORT' => array(
1976 xl('SMTP Server Port Number'),
1977 'num', // data type
1978 '25', // default
1979 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1982 'SMTP_USER' => array(
1983 xl('SMTP User for Authentication'),
1984 'text', // data type
1985 '', // default
1986 xl('Must be empty if SMTP authentication is not used.')
1989 'SMTP_PASS' => array(
1990 xl('SMTP Password for Authentication'),
1991 'text', // data type
1992 '', // default
1993 xl('Must be empty if SMTP authentication is not used.')
1996 'SMTP_SECURE' => array(
1997 xl('SMTP Security Protocol'),
1998 array(
1999 '' => xl('None'),
2000 'ssl' => 'SSL',
2001 'tls' => 'TLS'
2004 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
2007 'EMAIL_NOTIFICATION_HOUR' => array(
2008 xl('Email Notification Hours'),
2009 'num', // data type
2010 '50', // default
2011 xl('Number of hours in advance to send email notifications.')
2014 'SMS_NOTIFICATION_HOUR' => array(
2015 xl('SMS Notification Hours'),
2016 'num', // data type
2017 '50', // default
2018 xl('Number of hours in advance to send SMS notifications.')
2021 'SMS_GATEWAY_USENAME' => array(
2022 xl('SMS Gateway Username'),
2023 'text', // data type
2024 '', // default
2025 xl('Username for SMS Gateway.')
2028 'SMS_GATEWAY_PASSWORD' => array(
2029 xl('SMS Gateway Password'),
2030 'text', // data type
2031 '', // default
2032 xl('Password for SMS Gateway.')
2035 'SMS_GATEWAY_APIKEY' => array(
2036 xl('SMS Gateway API Key'),
2037 'text', // data type
2038 '', // default
2039 xl('API key for SMS Gateway.')
2042 'phone_notification_hour' => array(
2043 xl('Phone Notification Hour'),
2044 'num', // data type
2045 '50', // default
2046 xl('Number of hours in advance to send Phone notification.')
2049 'phone_gateway_username' => array(
2050 xl('Phone Gateway Username'),
2051 'text', // data type
2052 '', // default
2053 xl('Username for Phone Gateway.')
2056 'phone_gateway_password' => array(
2057 xl('Phone Gateway Password'),
2058 'text', // data type
2059 '', // default
2060 xl('Password for Phone Gateway.')
2063 'phone_gateway_url' => array(
2064 xl('Phone Gateway URL'),
2065 'text', // data type
2066 '', // default
2067 xl('URL for Phone Gateway.')
2072 // CDR (Clinical Decision Rules)
2074 'CDR' => array(
2076 'enable_cdr' => array(
2077 xl('Enable Clinical Decisions Rules (CDR)'),
2078 'bool', // data type
2079 '1', // default
2080 xl('Enable Clinical Decisions Rules (CDR)')
2083 'enable_allergy_check' => array(
2084 xl('Enable Allergy Check'),
2085 'bool', // data type
2086 '1', // default
2087 xl('Enable Allergy Check Against Medications and Prescriptions')
2090 'enable_alert_log' => array(
2091 xl('Enable Alert Log'),
2092 'bool', // data type
2093 '1', // default
2094 xl('Enable Alert Logging')
2097 'enable_cdr_new_crp' => array(
2098 xl('Enable Clinical Passive New Reminder(s) Popup'),
2099 'bool', // data type
2100 '1', // default
2101 xl('Enable Clinical Passive New Reminder(s) Popup')
2104 'enable_cdr_crw' => array(
2105 xl('Enable Clinical Passive Reminder Widget'),
2106 'bool', // data type
2107 '1', // default
2108 xl('Enable Clinical Passive Reminder Widget')
2111 'enable_cdr_crp' => array(
2112 xl('Enable Clinical Active Reminder Popup'),
2113 'bool', // data type
2114 '1', // default
2115 xl('Enable Clinical Active Reminder Popup')
2118 'enable_cdr_prw' => array(
2119 xl('Enable Patient Reminder Widget'),
2120 'bool', // data type
2121 '1', // default
2122 xl('Enable Patient Reminder Widget')
2125 'enable_cqm' => array(
2126 xl('Enable CQM Reporting'),
2127 'bool', // data type
2128 '1', // default
2129 xl('Enable Clinical Quality Measure (CQM) Reporting')
2132 'pqri_registry_name' => array(
2133 xl('PQRI Registry Name'),
2134 'text', // data type
2135 'Model Registry', // default
2136 xl('PQRI Registry Name')
2139 'pqri_registry_id' => array(
2140 xl('PQRI Registry ID'),
2141 'text', // data type
2142 '125789123', // default
2143 xl('PQRI Registry ID')
2146 'enable_amc' => array(
2147 xl('Enable AMC Reporting'),
2148 'bool', // data type
2149 '1', // default
2150 xl('Enable Automated Measure Calculations (AMC) Reporting')
2153 'enable_amc_prompting' => array(
2154 xl('Enable AMC Prompting'),
2155 'bool', // data type
2156 '1', // default
2157 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
2160 'enable_amc_tracking' => array(
2161 xl('Enable AMC Tracking'),
2162 'bool', // data type
2163 '1', // default
2164 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
2167 'cdr_report_nice' => array(
2168 xl('CDR Reports Processing Priority'),
2169 array(
2170 '' => xl('Default Priority'),
2171 '5' => xl('Moderate Priority'),
2172 '10' => xl('Moderate/Low Priority'),
2173 '15' => xl('Low Priority'),
2174 '20' => xl('Lowest Priority')
2176 '', // default
2177 xl('Set processing priority for CDR engine based reports.')
2180 'pat_rem_clin_nice' => array(
2181 xl('Patient Reminder Creation Processing Priority'),
2182 array(
2183 '' => xl('Default Priority'),
2184 '5' => xl('Moderate Priority'),
2185 '10' => xl('Moderate/Low Priority'),
2186 '15' => xl('Low Priority'),
2187 '20' => xl('Lowest Priority')
2189 '', // default
2190 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2193 'report_itemizing_standard' => array(
2194 xl('Enable Standard Report Itemization'),
2195 'bool', // data type
2196 '1', // default
2197 xl('Enable Itemization of Standard Clinical Rules Reports')
2200 'report_itemizing_cqm' => array(
2201 xl('Enable CQM Report Itemization'),
2202 'bool', // data type
2203 '1', // default
2204 xl('Enable Itemization of CQM Reports')
2207 'report_itemizing_amc' => array(
2208 xl('Enable AMC Report Itemization'),
2209 'bool', // data type
2210 '1', // default
2211 xl('Enable Itemization of AMC Reports')
2213 'dated_reminders_max_alerts_to_show' => array(
2214 xl('Dated reminders maximum alerts to show'),
2215 'num', // data type
2216 '5', // default
2217 xl('Dated reminders maximum alerts to show')
2219 'patient_birthday_alert' => array(
2220 xl('Alert on patient birthday'),
2221 array(
2222 '0' => xl('No alert'),
2223 '1' => xl('Alert only on birthday'),
2224 '2' => xl('Alert on and after birthday'),
2225 '3' => xl('Alert on and up to 28 days after birthday')
2227 '1', // default
2228 xl('Alert on patient birthday')
2230 'patient_birthday_alert_manual_off' => array(
2231 xl('Patient birthday alert requires turning off'),
2232 'bool', // data type
2233 '0', // default
2234 xl('Patient birthday alert requires turning off')
2238 // Logging
2240 'Logging' => array(
2242 'enable_auditlog' => array(
2243 xl('Enable Audit Logging'),
2244 'bool', // data type
2245 '1', // default
2246 xl('Enable Audit Logging')
2249 'audit_events_patient-record' => array(
2250 xl('Audit Logging Patient Record'),
2251 'bool', // data type
2252 '1', // default
2253 xl('Enable logging of patient record modifications.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2256 'audit_events_scheduling' => array(
2257 xl('Audit Logging Scheduling'),
2258 'bool', // data type
2259 '1', // default
2260 xl('Enable logging of scheduling activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2263 'audit_events_order' => array(
2264 xl('Audit Logging Order'),
2265 'bool', // data type
2266 '1', // default
2267 xl('Enable logging of ordering activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2270 'audit_events_security-administration' => array(
2271 xl('Audit Logging Security Administration'),
2272 'bool', // data type
2273 '1', // default
2274 xl('Enable logging of security and administration activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2277 'audit_events_backup' => array(
2278 xl('Audit Logging Backups'),
2279 'bool', // data type
2280 '1', // default
2281 xl('Enable logging of backup related activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2284 'audit_events_other' => array(
2285 xl('Audit Logging Miscellaneous'),
2286 'bool', // data type
2287 '1', // default
2288 xl('Enable logging of miscellaneous activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2291 'audit_events_query' => array(
2292 xl('Audit Logging SELECT Query'),
2293 'bool', // data type
2294 '0', // default
2295 xl('Enable logging of all SQL SELECT queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2298 'audit_events_cdr' => array(
2299 xl('Audit CDR Engine Queries'),
2300 'bool', // data type
2301 '0', // default
2302 xl('Enable logging of CDR Engine Queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2305 'enable_atna_audit' => array(
2306 xl('Enable ATNA Auditing'),
2307 'bool', // data type
2308 '0', // default
2309 xl('Enable Audit Trail and Node Authentication (ATNA).')
2312 'atna_audit_host' => array(
2313 xl('ATNA audit host'),
2314 'text', // data type
2315 '', // default
2316 xl('The hostname of the ATNA audit repository machine.')
2319 'atna_audit_port' => array(
2320 xl('ATNA audit port'),
2321 'text', // data type
2322 '6514', // default
2323 xl('Listening port of the RFC 5425 TLS syslog server.')
2326 'atna_audit_localcert' => array(
2327 xl('ATNA audit local certificate'),
2328 'text', // data type
2329 '', // default
2330 xl('Certificate to send to RFC 5425 TLS syslog server.')
2333 'atna_audit_cacert' => array(
2334 xl('ATNA audit CA certificate'),
2335 'text', // data type
2336 '', // default
2337 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2340 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
2341 'enable_auditlog_encryption' => array(
2342 xl('Enable Audit Log Encryption'),
2343 'bool', // data type
2344 '0', // default
2345 xl('Enable Audit Log Encryption')
2348 'billing_log_option' => array(
2349 xl('Billing Log Option'),
2350 array(
2351 '1' => xl('Billing Log Append'),
2352 '2' => xl('Billing Log Overwrite')
2354 '1', // default
2355 xl('Billing log setting to append or overwrite the log file.')
2358 'gbl_print_log_option' => array(
2359 xl('Printing Log Option'),
2360 array(
2361 '0' => xl('No logging'),
2362 '1' => xl('Hide print feature'),
2363 '2' => xl('Log entire document'),
2365 '0', // default
2366 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2371 // Miscellaneous Tab
2373 'Miscellaneous' => array(
2375 'mysql_bin_dir' => array(
2376 xl('Path to MySQL Binaries'),
2377 'text', // data type
2378 $mysql_bin_dir, // default
2379 xl('Full path to directory containing MySQL executables.')
2382 'perl_bin_dir' => array(
2383 xl('Path to Perl Binaries'),
2384 'text', // data type
2385 $perl_bin_dir, // default
2386 xl('Full path to directory containing Perl executables.')
2389 'temporary_files_dir' => array(
2390 xl('Path to Temporary Files'),
2391 'text', // data type
2392 $temporary_files_dir, // default
2393 xl('Full path to directory used for temporary files.')
2396 'backup_log_dir' => array(
2397 xl('Path for Event Log Backup'),
2398 'text', // data type
2399 $backup_log_dir, // default
2400 xl('Full path to directory for event log backup.')
2403 'state_data_type' => array(
2404 xl('State Data Type'),
2405 array(
2406 '2' => xl('Text field'),
2407 '1' => xl('Single-selection list'),
2408 '26' => xl('Single-selection list with ability to add to the list'),
2410 '26', // default
2411 xl('Field type to use for employer or subscriber state in demographics.')
2414 'state_list' => array(
2415 xl('State list'),
2416 'text', // data type
2417 'state', // default
2418 xl('List used by above State Data Type option.')
2421 'state_custom_addlist_widget' => array(
2422 xl('State List Widget Custom Fields'),
2423 'bool', // data type
2424 '1', // default
2425 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2428 'country_data_type' => array(
2429 xl('Country Data Type'),
2430 array(
2431 '2' => xl('Text field'),
2432 '1' => xl('Single-selection list'),
2433 '26' => xl('Single-selection list with ability to add to the list'),
2435 '26', // default
2436 xl('Field type to use for employer or subscriber country in demographics.')
2439 'country_list' => array(
2440 xl('Country list'),
2441 'text', // data type
2442 'country', // default
2443 xl('List used by above Country Data Type option.')
2446 'print_command' => array(
2447 xl('Print Command'),
2448 'text', // data type
2449 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2450 xl('Shell command for printing from the server.')
2453 'default_chief_complaint' => array(
2454 xl('Default Reason for Visit'),
2455 'text', // data type
2457 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2460 'MedicareReferrerIsRenderer' => array(
2461 xl('Medicare Referrer Is Renderer'),
2462 'bool', // data type
2463 '0', // default = true
2464 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2467 'post_to_date_benchmark' => array(
2468 xl('Financial Close Date (yyyy-mm-dd)'),
2469 'text', // data type
2470 date('Y-m-d', time() - (10 * 24 * 60 * 60)), // default
2471 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2474 'enable_hylafax' => array(
2475 xl('Enable Hylafax Support'),
2476 'bool', // data type
2477 '0', // default
2478 xl('Enable Hylafax Support')
2481 'hylafax_server' => array(
2482 xl('Hylafax Server'),
2483 'text', // data type
2484 'localhost', // default
2485 xl('Hylafax server hostname.')
2488 'hylafax_basedir' => array(
2489 xl('Hylafax Directory'),
2490 'text', // data type
2491 '/var/spool/hylafax', // default
2492 xl('Location where Hylafax stores faxes.')
2495 'hylafax_enscript' => array(
2496 xl('Hylafax Enscript Command'),
2497 'text', // data type
2498 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2499 xl('Enscript command used by Hylafax.')
2502 'enable_scanner' => array(
2503 xl('Enable Scanner Support'),
2504 'bool', // data type
2505 '0', // default
2506 xl('Enable Scanner Support')
2509 'scanner_output_directory' => array(
2510 xl('Scanner Directory'),
2511 'text', // data type
2512 '/mnt/scan_docs', // default
2513 xl('Location where scans are stored.')
2517 // Portal Tab
2519 'Portal' => array(
2521 'portal_onsite_two_enable' => array(
2522 xl('Enable Version 2 Onsite Patient Portal'),
2523 'bool', // data type
2524 '0',
2525 xl('Enable Version 2 Onsite Patient Portal')
2528 'portal_onsite_two_address' => array(
2529 xl('Version 2 Onsite Patient Portal Site Address'),
2530 'text', // data type
2531 'https://your_web_site.com/openemr/portal',
2532 xl('Website link for the Version 2 Onsite Patient Portal.')
2535 'portal_onsite_two_basepath' => array(
2536 xl('Portal Uses Server Base Path (internal)'),
2537 'bool',
2538 '0',
2539 xl('Use servers protocol and host in urls (portal internal only).')
2542 'portal_onsite_two_register' => array(
2543 xl('Allow Version 2 Onsite New Patient Registration Widget'),
2544 'bool', // data type
2545 '1',
2546 xl('Enable Version 2 Onsite Patient Portal new patient to self register.')
2549 'allow_portal_appointments' => array(
2550 xl('Allow Version 2 Onsite Online Appointments'),
2551 'bool', // data type
2552 '1',
2553 xl('Allow Version 2 Onsite Patient to make and view appointments online.')
2556 'allow_portal_chat' => array(
2557 xl('Allow Version 2 Onsite Online Secure Chat'),
2558 'bool', // data type
2559 '1',
2560 xl('Allow Version 2 Onsite Patient to use Secure Chat Application.')
2563 'portal_two_payments' => array(
2564 xl('Allow Version 2 Onsite Online Payments'),
2565 'bool', // data type
2566 '0',
2567 xl('Allow Version 2 Onsite Patient to make payments online.')
2570 'portal_two_pass_reset' => array(
2571 xl('Allow Version 2 Patients to Reset Credentials'),
2572 'bool', // data type
2573 '0',
2574 xl('Patient may change their logon from portal login dialog.')
2577 'portal_onsite_enable' => array(
2578 xl('Enable Version 1 Onsite Patient Portal'),
2579 'bool', // data type
2580 '0',
2581 xl('Enable Version 1 Onsite Patient Portal')
2584 'portal_onsite_address' => array(
2585 xl('Version 1 Onsite Patient Portal Site Address'),
2586 'text', // data type
2587 'https://your_web_site.com/openemr/patients',
2588 xl('Website link for the Version 1 Onsite Patient Portal.')
2591 'portal_onsite_document_download' => array(
2592 xl('Enable Onsite Patient Portal Document Download'),
2593 'bool', // data type
2594 '1',
2595 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2598 'portal_offsite_enable' => array(
2599 xl('Enable Offsite Patient Portal'),
2600 'bool', // data type
2601 '0',
2602 xl('Enable Offsite Patient Portal.')
2604 'portal_offsite_providerid' => array(
2605 xl('Offsite Patient Portal Provider ID'),
2606 'text', // data type
2608 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2611 'portal_offsite_username' => array(
2612 xl('Offsite Patient Portal Username'),
2613 'text', // data type
2615 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2618 'portal_offsite_password' => array(
2619 xl('Offsite Patient Portal Password'),
2620 'pwd', // data type
2622 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2625 'portal_offsite_address' => array(
2626 xl('Offsite Patient Portal Site Address'),
2627 'text', // data type
2628 'https://ssh.mydocsportal.com/provider.php',
2629 xl('Offsite Https link for the Patient Portal.')
2632 'portal_offsite_address_patient_link' => array(
2633 xl('Offsite Patient Portal Site Address (Patient Link)'),
2634 'text', // data type
2635 'https://ssh.mydocsportal.com',
2636 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2639 // Currently the "CMS Portal" supports WordPress. Other Content Management
2640 // Systems may be supported in the future.
2642 'gbl_portal_cms_enable' => array(
2643 xl('Enable CMS Portal'),
2644 'bool', // data type
2645 '0',
2646 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2649 'gbl_portal_cms_address' => array(
2650 xl('CMS Portal Site Address'),
2651 'text', // data type
2652 'https://your_cms_site.com/',
2653 xl('URL for the WordPress site that supports the portal')
2656 'gbl_portal_cms_username' => array(
2657 xl('CMS Portal Username'),
2658 'text', // data type
2660 xl('Login name of WordPress user for portal access')
2663 'gbl_portal_cms_password' => array(
2664 xl('CMS Portal Password'),
2665 'text', // data type
2667 xl('Password for the above user')
2672 // Connectors Tab
2674 'Connectors' => array(
2676 'fhir_enable' => array(
2677 xl('Enable FHIR Provider Client Service'),
2678 array(
2679 0 => xl('Off: No Service.'),
2680 1 => xl('On: HAPI FHIR.'),
2681 2 => xl('On: Smart on FHIR.'),
2683 '0',
2684 xl('Enable FHIR Provider Client Service')
2687 'fhir_base_url' => array(
2688 xl('FHIR Server Base Address'),
2689 'text',
2690 'https://hapi.fhir.org/baseDstu3/',
2691 xl('Base URL for FHIR Server. Url should end with /')
2694 'rest_api' => array(
2695 xl('Enable OpenEMR REST API'),
2696 'bool',
2697 '0',
2698 xl('Enable OpenEMR RESTful API. SSL Required')
2701 'medex_enable' => array(
2702 xl('Enable MedEx Communication Service'),
2703 'bool', // data type
2704 '0',
2705 xl('Enable MedEx Communication Service')
2708 'erx_enable' => array(
2709 xl('Enable NewCrop eRx Service'),
2710 'bool',
2711 '0',
2712 xl('Enable NewCrop eRx Service.') . ' ' .
2713 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.')
2716 'erx_newcrop_path' => array(
2717 xl('NewCrop eRx Site Address'),
2718 'text',
2719 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2720 xl('URL for NewCrop eRx Site Address.')
2723 'erx_newcrop_path_soap' => array(
2724 xl('NewCrop eRx Web Service Address'),
2725 'text',
2726 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2727 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2730 'erx_soap_ttl_allergies' => array(
2731 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2732 'num',
2733 '21600',
2734 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2737 'erx_soap_ttl_medications' => array(
2738 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2739 'num',
2740 '21600',
2741 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2744 'erx_account_partner_name' => array(
2745 xl('NewCrop eRx Partner Name'),
2746 'text',
2748 xl('Partner Name issued for NewCrop eRx service.')
2751 'erx_account_name' => array(
2752 xl('NewCrop eRx Name'),
2753 'text',
2755 xl('Account Name issued for NewCrop eRx service.')
2758 'erx_account_password' => array(
2759 xl('NewCrop eRx Password'),
2760 'pass',
2762 xl('Account Password issued for NewCrop eRx service.')
2765 'erx_account_id' => array(
2766 xl('NewCrop eRx Account Id'),
2767 'text',
2768 '1',
2769 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2772 'erx_upload_active' => array(
2773 xl('Only upload active prescriptions'),
2774 'bool',
2775 '0',
2776 xl('Only upload active prescriptions to NewCrop eRx.')
2779 'erx_import_status_message' => array(
2780 xl('Enable NewCrop eRx import status message'),
2781 'bool',
2782 '0',
2783 xl('Enable import status message after visiting NewCrop eRx.')
2786 'erx_medication_display' => array(
2787 xl('Do not display NewCrop eRx Medications uploaded'),
2788 'bool',
2789 '0',
2790 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2793 'erx_allergy_display' => array(
2794 xl('Do not display NewCrop eRx Allergy uploaded'),
2795 'bool',
2796 '0',
2797 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2800 'erx_default_patient_country' => array(
2801 xl('NewCrop eRx Default Patient Country'),
2802 array(
2803 '' => '',
2804 'US' => xl('USA'),
2805 'CA' => xl('Canada'),
2806 'MX' => xl('Mexico'),
2809 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2812 'erx_debug_setting' => array(
2813 xl('NewCrop eRx Debug Setting'),
2814 array(
2815 0 => xl('None'),
2816 1 => xl('Request Only'),
2817 2 => xl('Response Only'),
2818 3 => xl('Request & Response'),
2820 '0',
2821 xl('Log all NewCrop eRx Requests and / or Responses.'),
2824 'weno_rx_enable' => array(
2825 xl('Enable Weno eRx Service'),
2826 'bool',
2827 '0',
2828 xl('Enable Weno eRx Service') . ' ' . xl('Contact Open Med Practice, www.openmedpractice.com for subscribing to the Weno Free eRx service.')
2831 'weno_account_id' => array(
2832 xl('Weno eRx Account Id'),
2833 'text',
2834 '137',
2835 xl('Account Id issued for Weno eRx service.')
2838 'weno_account_pass' => array(
2839 xl('Weno eRx Account Pass'),
2840 'text',
2841 '7C84773D5063B20BC9E41636A091C6F17E9C1E34',
2842 xl('Account Id issued for Weno eRx service.')
2845 'weno_provider_id' => array(
2846 xl('Weno eRx Clinic ID'),
2847 'text',
2848 'C36275',
2849 xl('Account Id issued for Your clinics eRx service.')
2852 'ccda_alt_service_enable' => array(
2853 xl('Enable C-CDA Alternate Service'),
2854 array(
2855 0 => xl('Off'),
2856 1 => xl('Care Coordination Only'),
2857 2 => xl('Portal Only'),
2858 3 => xl('Both'),
2860 '0',
2861 xl('Enable C-CDA Alternate Service')
2864 'phimail_enable' => array(
2865 xl('Enable phiMail Direct Messaging Service'),
2866 'bool', // data type
2867 '0',
2868 xl('Enable phiMail Direct Messaging Service')
2871 'phimail_server_address' => array(
2872 xl('phiMail Server Address'),
2873 'text', // data type
2874 'https://phimail.example.com:32541',
2875 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2878 'phimail_username' => array(
2879 xl('phiMail Username'),
2880 'text', // data type
2882 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2885 'phimail_password' => array(
2886 xl('phiMail Password'),
2887 'pass', // data type
2889 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2892 'phimail_notify' => array(
2893 xl('phiMail notification user'),
2894 'text', // data type
2895 'admin',
2896 xl('This user will receive notification of new incoming Direct messages')
2899 'phimail_interval' => array(
2900 xl('phiMail Message Check Interval (minutes)'),
2901 'num', // data type
2902 '5',
2903 xl('Interval between message checks (set to zero for manual checks only)')
2906 'phimail_ccd_enable' => array(
2907 xl('phiMail Allow CCD Send'),
2908 'bool', // data type
2909 '0',
2910 xl('phiMail Allow CCD Send')
2913 'phimail_ccr_enable' => array(
2914 xl('phiMail Allow CCR Send'),
2915 'bool', // data type
2916 '0',
2917 xl('phiMail Allow CCR Send')
2921 'Rx' => array(
2922 'rx_enable_DEA' => array(
2923 xl('Rx Enable DEA #'),
2924 'bool', // data type
2925 '1',
2926 xl('Rx Enable DEA #')
2928 'rx_show_DEA' => array(
2929 xl('Rx Show DEA #'),
2930 'bool', // data type
2931 '0',
2932 xl('Rx Show DEA #')
2934 'rx_enable_NPI' => array(
2935 xl('Rx Enable NPI'),
2936 'bool', // data type
2937 '0',
2938 xl('Rx Enable NPI')
2940 'rx_show_NPI' => array(
2941 xl('Rx Show NPI'),
2942 'bool', // data type
2943 '0',
2944 xl('Rx Show NPI')
2946 'rx_enable_SLN' => array(
2947 xl('Rx Enable State Lic. #'),
2948 'bool', // data type
2949 '0',
2950 xl('Rx Enable State Lic. #')
2952 'rx_show_SLN' => array(
2953 xl('Rx Show State Lic. #'),
2954 'bool', // data type
2955 '0',
2956 xl('Rx Show State Lic. #')
2958 'rx_show_drug-drug' => array(
2959 xl('Rx NLM Drug-Drug'),
2960 'bool', // data type
2961 '0',
2962 xl('Rx NLM Drug-Drug')
2964 'rx_paper_size' => array(
2965 xl('Rx Paper Size'), // descriptive name
2966 array(
2967 'LETTER' => xl('Letter Paper Size'),
2968 'LEGAL' => xl('Legal Paper Size'),
2969 'FOLIO' => xl('Folio Paper Size'),
2970 'EXECUTIVE' => xl('Executive Paper Size'),
2971 '4A0' => ('4A0' . " " . xl('Paper Size')),
2972 '2A0' => ('2A0' . " " . xl('Paper Size')),
2973 'A0' => ('A0' . " " . xl('Paper Size')),
2974 'A1' => ('A1' . " " . xl('Paper Size')),
2975 'A2' => ('A2' . " " . xl('Paper Size')),
2976 'A3' => ('A3' . " " . xl('Paper Size')),
2977 'A4' => ('A4' . " " . xl('Paper Size')),
2978 'A5' => ('A5' . " " . xl('Paper Size')),
2979 'A6' => ('A6' . " " . xl('Paper Size')),
2980 'A7' => ('A7' . " " . xl('Paper Size')),
2981 'A8' => ('A8' . " " . xl('Paper Size')),
2982 'A9' => ('A9' . " " . xl('Paper Size')),
2983 'A10' => ('A10' . " " . xl('Paper Size')),
2984 'B0' => ('B0' . " " . xl('Paper Size')),
2985 'B1' => ('B1' . " " . xl('Paper Size')),
2986 'B2' => ('B2' . " " . xl('Paper Size')),
2987 'B3' => ('B3' . " " . xl('Paper Size')),
2988 'B4' => ('B4' . " " . xl('Paper Size')),
2989 'B5' => ('B5' . " " . xl('Paper Size')),
2990 'B6' => ('B6' . " " . xl('Paper Size')),
2991 'B7' => ('B7' . " " . xl('Paper Size')),
2992 'B8' => ('B8' . " " . xl('Paper Size')),
2993 'B9' => ('B9' . " " . xl('Paper Size')),
2994 'B10' => ('B10' . " " . xl('Paper Size')),
2995 'C0' => ('C0' . " " . xl('Paper Size')),
2996 'C1' => ('C1' . " " . xl('Paper Size')),
2997 'C2' => ('C2' . " " . xl('Paper Size')),
2998 'C3' => ('C3' . " " . xl('Paper Size')),
2999 'C4' => ('C4' . " " . xl('Paper Size')),
3000 'C5' => ('C5' . " " . xl('Paper Size')),
3001 'C6' => ('C6' . " " . xl('Paper Size')),
3002 'C7' => ('C7' . " " . xl('Paper Size')),
3003 'C8' => ('C8' . " " . xl('Paper Size')),
3004 'C9' => ('C9' . " " . xl('Paper Size')),
3005 'C10' => ('C10' . " " . xl('Paper Size')),
3006 'RA0' => ('RA0' . " " . xl('Paper Size')),
3007 'RA1' => ('RA1' . " " . xl('Paper Size')),
3008 'RA2' => ('RA2' . " " . xl('Paper Size')),
3009 'RA3' => ('RA3' . " " . xl('Paper Size')),
3010 'RA4' => ('RA4' . " " . xl('Paper Size')),
3011 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3012 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3013 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3014 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3015 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3017 'LETTER', // default = tree menu
3018 xl('Rx Paper Size')
3020 'rx_left_margin' => array(
3021 xl('Rx Left Margin (px)'),
3022 'num',
3023 '30',
3024 xl('Rx Left Margin (px)')
3026 'rx_right_margin' => array(
3027 xl('Rx Right Margin (px)'),
3028 'num',
3029 '30',
3030 xl('Rx Right Margin (px)')
3032 'rx_top_margin' => array(
3033 xl('Rx Top Margin (px)'),
3034 'num',
3035 '72',
3036 xl('Rx Top Margin (px)')
3038 'rx_bottom_margin' => array(
3039 xl('Rx Bottom Margin (px)'),
3040 'num',
3041 '30',
3042 xl('Rx Bottom Margin (px)')
3044 'rx_use_fax_template' => array(
3045 xl('Show button for download fax template'),
3046 'bool', // data type
3047 '1', // default = true
3048 xl('Show button in the prescription list for download fax template')
3050 'rx_zend_html_template' => array(
3051 xl('Rx html print - zend module'),
3052 'bool', // data type
3053 '0', // default = false
3054 xl('Use an html template from zend module')
3056 'rx_zend_html_action' => array(
3057 xl('Name of zend template for html print'),
3058 'text', // data type
3059 'default',
3060 xl('Name of zend template for html print, possible to add custom template in the PrescriptionTemplate module')
3062 'rx_zend_pdf_template' => array(
3063 xl('Rx pdf - zend template'),
3064 'bool', // data type
3065 '0', // default = false
3066 xl('Use a pdf template from zend module')
3068 'rx_zend_pdf_action' => array(
3069 xl('Name of zend template for pdf export'),
3070 'text', // data type
3071 'default',
3072 xl('Name of zend template for pdf export, possible to add custom template in the PrescriptionTemplate module')
3075 'PDF' => array(
3076 'pdf_layout' => array(
3077 xl('Layout'),
3078 array(
3079 'P' => xl('Portrait'),
3080 'L' => xl('Landscape')
3082 'P', //defaut
3083 xl("Choose Layout Direction"),
3085 'pdf_language' => array(
3086 xl('PDF Language'),
3087 array(
3088 'aa' => xl('Afar'),
3089 'af' => xl('Afrikaans'),
3090 'ak' => xl('Akan'),
3091 'sq' => xl('Albanian'),
3092 'am' => xl('Amharic'),
3093 'ar' => xl('Arabic'),
3094 'an' => xl('Aragonese'),
3095 'hy' => xl('Armenian'),
3096 'as' => xl('Assamese'),
3097 'av' => xl('Avaric'),
3098 'ae' => xl('Avestan'),
3099 'ay' => xl('Aymara'),
3100 'az' => xl('Azerbaijani'),
3101 'bm' => xl('Bambara'),
3102 'ba' => xl('Bashkir'),
3103 'eu' => xl('Basque'),
3104 'be' => xl('Belarusian'),
3105 'bn' => xl('Bengali- Bangla'),
3106 'bh' => xl('Bihari'),
3107 'bi' => xl('Bislama'),
3108 'bs' => xl('Bosnian'),
3109 'br' => xl('Breton'),
3110 'bg' => xl('Bulgarian'),
3111 'my' => xl('Burmese'),
3112 'ca' => xl('Catalan- Valencian'),
3113 'ch' => xl('Chamorro'),
3114 'ce' => xl('Chechen'),
3115 'ny' => xl('Chichewa- Chewa- Nyanja'),
3116 'zh' => xl('Chinese'),
3117 'cv' => xl('Chuvash'),
3118 'kw' => xl('Cornish'),
3119 'co' => xl('Corsican'),
3120 'cr' => xl('Cree'),
3121 'hr' => xl('Croatian'),
3122 'cs' => xl('Czech'),
3123 'da' => xl('Danish'),
3124 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
3125 'nl' => xl('Dutch'),
3126 'dz' => xl('Dzongkha'),
3127 'en' => xl('English'),
3128 'eo' => xl('Esperanto'),
3129 'et' => xl('Estonian'),
3130 'ee' => xl('Ewe'),
3131 'fo' => xl('Faroese'),
3132 'fj' => xl('Fijian'),
3133 'fi' => xl('Finnish'),
3134 'fr' => xl('French'),
3135 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
3136 'gl' => xl('Galician'),
3137 'ka' => xl('Georgian'),
3138 'de' => xl('German'),
3139 'el' => xl('Greek, Modern'),
3140 'gn' => xl('Guarani'),
3141 'gu' => xl('Gujarati'),
3142 'ht' => xl('Haitian- Haitian Creole'),
3143 'ha' => xl('Hausa'),
3144 'he' => xl('Hebrew (modern)'),
3145 'hz' => xl('Herero'),
3146 'hi' => xl('Hindi'),
3147 'ho' => xl('Hiri Motu'),
3148 'hu' => xl('Hungarian'),
3149 'ia' => xl('Interlingua'),
3150 'id' => xl('Indonesian'),
3151 'ie' => xl('Interlingue'),
3152 'ga' => xl('Irish'),
3153 'ig' => xl('Igbo'),
3154 'ik' => xl('Inupiaq'),
3155 'io' => xl('Ido'),
3156 'is' => xl('Icelandic'),
3157 'it' => xl('Italian'),
3158 'iu' => xl('Inuktitut'),
3159 'ja' => xl('Japanese'),
3160 'jv' => xl('Javanese'),
3161 'kl' => xl('Kalaallisut, Greenlandic'),
3162 'kn' => xl('Kannada'),
3163 'kr' => xl('Kanuri'),
3164 'ks' => xl('Kashmiri'),
3165 'kk' => xl('Kazakh'),
3166 'km' => xl('Khmer'),
3167 'ki' => xl('Kikuyu, Gikuyu'),
3168 'rw' => xl('Kinyarwanda'),
3169 'ky' => xl('Kyrgyz'),
3170 'kv' => xl('Komi'),
3171 'kg' => xl('Kongo'),
3172 'ko' => xl('Korean'),
3173 'ku' => xl('Kurdish'),
3174 'kj' => xl('Kwanyama, Kuanyama'),
3175 'la' => xl('Latin'),
3176 'lb' => xl('Luxembourgish, Letzeburgesch'),
3177 'lg' => xl('Ganda'),
3178 'li' => xl('Limburgish, Limburgan, Limburger'),
3179 'ln' => xl('Lingala'),
3180 'lo' => xl('Lao'),
3181 'lt' => xl('Lithuanian'),
3182 'lu' => xl('Luba-Katanga'),
3183 'lv' => xl('Latvian'),
3184 'gv' => xl('Manx'),
3185 'mk' => xl('Macedonian'),
3186 'mg' => xl('Malagasy'),
3187 'ms' => xl('Malay'),
3188 'ml' => xl('Malayalam'),
3189 'mt' => xl('Maltese'),
3190 'mi' => xl('Maori'),
3191 'mr' => xl('Marathi (Marathi)'),
3192 'mh' => xl('Marshallese'),
3193 'mn' => xl('Mongolian'),
3194 'na' => xl('Nauru'),
3195 'nv' => xl('Navajo, Navaho'),
3196 'nb' => xl('Norwegian Bokmal'),
3197 'nd' => xl('North Ndebele'),
3198 'ne' => xl('Nepali'),
3199 'ng' => xl('Ndonga'),
3200 'nn' => xl('Norwegian Nynorsk'),
3201 'no' => xl('Norwegian'),
3202 'ii' => xl('Nuosu'),
3203 'nr' => xl('South Ndebele'),
3204 'oc' => xl('Occitan'),
3205 'oj' => xl('Ojibwe, Ojibwa'),
3206 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
3207 'om' => xl('Oromo'),
3208 'or' => xl('Oriya'),
3209 'os' => xl('Ossetian, Ossetic'),
3210 'pa' => xl('Panjabi, Punjabi'),
3211 'pi' => xl('Pali'),
3212 'fa' => xl('Persian (Farsi)'),
3213 'pl' => xl('Polish'),
3214 'ps' => xl('Pashto, Pushto'),
3215 'pt' => xl('Portuguese'),
3216 'qu' => xl('Quechua'),
3217 'rm' => xl('Romansh'),
3218 'rn' => xl('Kirundi'),
3219 'ro' => xl('Romanian'),
3220 'ru' => xl('Russian'),
3221 'sa' => xl('Sanskrit (Samskrta)'),
3222 'sc' => xl('Sardinian'),
3223 'sd' => xl('Sindhi'),
3224 'se' => xl('Northern Sami'),
3225 'sm' => xl('Samoan'),
3226 'sg' => xl('Sango'),
3227 'sr' => xl('Serbian'),
3228 'gd' => xl('Scottish Gaelic- Gaelic'),
3229 'sn' => xl('Shona'),
3230 'si' => xl('Sinhala, Sinhalese'),
3231 'sk' => xl('Slovak'),
3232 'sl' => xl('Slovene'),
3233 'so' => xl('Somali'),
3234 'st' => xl('Southern Sotho'),
3235 'es' => xl('Spanish- Castilian'),
3236 'su' => xl('Sundanese'),
3237 'sw' => xl('Swahili'),
3238 'ss' => xl('Swati'),
3239 'sv' => xl('Swedish'),
3240 'ta' => xl('Tamil'),
3241 'te' => xl('Telugu'),
3242 'tg' => xl('Tajik'),
3243 'th' => xl('Thai'),
3244 'ti' => xl('Tigrinya'),
3245 'bo' => xl('Tibetan Standard, Tibetan, Central'),
3246 'tk' => xl('Turkmen'),
3247 'tl' => xl('Tagalog'),
3248 'tn' => xl('Tswana'),
3249 'to' => xl('Tonga (Tonga Islands)'),
3250 'tr' => xl('Turkish'),
3251 'ts' => xl('Tsonga'),
3252 'tt' => xl('Tatar'),
3253 'tw' => xl('Twi'),
3254 'ty' => xl('Tahitian'),
3255 'ug' => xl('Uyghur, Uighur'),
3256 'uk' => xl('Ukrainian'),
3257 'ur' => xl('Urdu'),
3258 'uz' => xl('Uzbek'),
3259 've' => xl('Venda'),
3260 'vi' => xl('Vietnamese'),
3261 'vo' => xl('Volapuk'),
3262 'wa' => xl('Walloon'),
3263 'cy' => xl('Welsh'),
3264 'wo' => xl('Wolof'),
3265 'fy' => xl('Western Frisian'),
3266 'xh' => xl('Xhosa'),
3267 'yi' => xl('Yiddish'),
3268 'yo' => xl('Yoruba'),
3269 'za' => xl('Zhuang, Chuang'),
3270 'zu' => xl('Zulu'),
3272 'en', // default English
3273 xl('Choose PDF languange Preference'),
3275 'pdf_size' => array(
3276 xl('Paper Size'), // Descriptive Name
3277 array(
3278 'LETTER' => xl('Letter Paper Size'),
3279 'LEGAL' => xl('Legal Paper Size'),
3280 'FOLIO' => xl('Folio Paper Size'),
3281 'EXECUTIVE' => xl('Executive Paper Size'),
3282 '4A0' => ('4A0' . " " . xl('Paper Size')),
3283 '2A0' => ('2A0' . " " . xl('Paper Size')),
3284 'A0' => ('A0' . " " . xl('Paper Size')),
3285 'A1' => ('A1' . " " . xl('Paper Size')),
3286 'A2' => ('A2' . " " . xl('Paper Size')),
3287 'A3' => ('A3' . " " . xl('Paper Size')),
3288 'A4' => ('A4' . " " . xl('Paper Size')),
3289 'A5' => ('A5' . " " . xl('Paper Size')),
3290 'A6' => ('A6' . " " . xl('Paper Size')),
3291 'A7' => ('A7' . " " . xl('Paper Size')),
3292 'A8' => ('A8' . " " . xl('Paper Size')),
3293 'A9' => ('A9' . " " . xl('Paper Size')),
3294 'A10' => ('A10' . " " . xl('Paper Size')),
3295 'B0' => ('B0' . " " . xl('Paper Size')),
3296 'B1' => ('B1' . " " . xl('Paper Size')),
3297 'B2' => ('B2' . " " . xl('Paper Size')),
3298 'B3' => ('B3' . " " . xl('Paper Size')),
3299 'B4' => ('B4' . " " . xl('Paper Size')),
3300 'B5' => ('B5' . " " . xl('Paper Size')),
3301 'B6' => ('B6' . " " . xl('Paper Size')),
3302 'B7' => ('B7' . " " . xl('Paper Size')),
3303 'B8' => ('B8' . " " . xl('Paper Size')),
3304 'B9' => ('B9' . " " . xl('Paper Size')),
3305 'B10' => ('B10' . " " . xl('Paper Size')),
3306 'C0' => ('C0' . " " . xl('Paper Size')),
3307 'C1' => ('C1' . " " . xl('Paper Size')),
3308 'C2' => ('C2' . " " . xl('Paper Size')),
3309 'C3' => ('C3' . " " . xl('Paper Size')),
3310 'C4' => ('C4' . " " . xl('Paper Size')),
3311 'C5' => ('C5' . " " . xl('Paper Size')),
3312 'C6' => ('C6' . " " . xl('Paper Size')),
3313 'C7' => ('C7' . " " . xl('Paper Size')),
3314 'C8' => ('C8' . " " . xl('Paper Size')),
3315 'C9' => ('C9' . " " . xl('Paper Size')),
3316 'C10' => ('C10' . " " . xl('Paper Size')),
3317 'RA0' => ('RA0' . " " . xl('Paper Size')),
3318 'RA1' => ('RA1' . " " . xl('Paper Size')),
3319 'RA2' => ('RA2' . " " . xl('Paper Size')),
3320 'RA3' => ('RA3' . " " . xl('Paper Size')),
3321 'RA4' => ('RA4' . " " . xl('Paper Size')),
3322 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3323 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3324 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3325 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3326 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3328 'LETTER',
3329 xl('Choose Paper Size')
3331 'pdf_left_margin' => array(
3332 xl('Left Margin (mm)'),
3333 'num',
3334 '5',
3335 xl('Left Margin (mm)')
3337 'pdf_right_margin' => array(
3338 xl('Right Margin (mm)'),
3339 'num',
3340 '5',
3341 xl('Right Margin (mm)')
3343 'pdf_top_margin' => array(
3344 xl('Top Margin (mm)'),
3345 'num',
3346 '5',
3347 xl('Top Margin (mm)')
3349 'pdf_bottom_margin' => array(
3350 xl('Bottom Margin (px)'),
3351 'num',
3352 '8',
3353 xl('Bottom Margin (px)')
3355 'pdf_output' => array(
3356 xl('Output Type'),
3357 array(
3358 'D' => xl('Download'),
3359 'I' => xl('Inline')
3361 'D', //defaut
3362 xl("Choose Download or Display Inline"),
3365 'chart_label_type' => array(
3366 xl('Patient Label Type'),
3367 array(
3368 '0' => xl('None'),
3369 '1' => '5160',
3370 '2' => '5161',
3371 '3' => '5162'
3373 '1', // default
3374 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3377 'barcode_label_type' => array(
3378 xl('Barcode Label Type'),
3379 array(
3380 '0' => xl('None'),
3381 '1' => 'std25',
3382 '2' => 'int25',
3383 '3' => 'ean8',
3384 '4' => 'ean13',
3385 '5' => 'upc',
3386 '6' => 'code11',
3387 '7' => 'code39',
3388 '8' => 'code93',
3389 '9' => 'code128',
3390 '10' => 'codabar',
3391 '11' => 'msi',
3392 '12' => 'datamatrix'
3394 '9', // default = None
3395 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3398 'addr_label_type' => array(
3399 xl('Print Patient Address Label'),
3400 'bool', // data type
3401 '1', // default = false
3402 xl('Select to print patient address labels from popups in left nav screen.')
3405 'env_x_width' => array(
3406 xl('Envelope Width in mm'),
3407 'num', // data type
3408 '104.775',
3409 xl('In Portrait mode, determines the width of the envelope along the x-axis in mm')
3412 'env_y_height' => array(
3413 xl('Envelope Height in mm'),
3414 'num', // data type
3415 '241.3',
3416 xl('In Portrait mode, determines the height of the envelope along the y-axis in mm')
3419 'env_font_size' => array(
3420 xl('Font Size in Pt'),
3421 'num', // data type
3422 '14',
3423 xl('Sets the font of the address text on the envelope in mm')
3426 'env_x_dist' => array(
3427 xl('Envelope x-axis starting pt'),
3428 'num', // data type
3429 '65',
3430 xl('Distance from the \'top\' of the envelope in mm')
3433 'env_y_dist' => array(
3434 xl('Envelope y-axis starting pt'),
3435 'num', // data type
3436 '220',
3437 xl('Distance from the right most edge of the envelope in portrait position in mm')