Merge pull request #1761 from sjpadgett/PP2-appointment
[openemr.git] / library / globals.inc.php
blob1e13ee94c7070b0b6ac1e4e17957de5af5e964a2
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 // Chinese (Simplified) // xl('Chinese (Simplified)')
33 // Chinese (Traditional) // xl('Chinese (Traditional)')
34 // Croatian // xl('Croatian')
35 // Czech // xl('Czech')
36 // Danish // xl('Danish')
37 // Dutch // xl('Dutch')
38 // English (Indian) // xl('English (Indian)')
39 // English (Standard) // xl('English (Standard)')
40 // Estonian // xl('Estonian')
41 // Filipino // xl('Filipino')
42 // Finnish // xl('Finnish')
43 // French // xl('French (Standard)')
44 // French // xl('French (Canadian)')
45 // Georgian // xl('Georgian')
46 // German // xl('German')
47 // Greek // xl('Greek')
48 // Hebrew // xl('Hebrew')
49 // Hindi // xl('Hindi')
50 // Hungarian // xl('Hungarian')
51 // Italian // xl('Italian')
52 // Japanese // xl('Japanese')
53 // Korean // xl('Korean')
54 // Lithuanian // xl('Lithuanian')
55 // Marathi // xl('Marathi')
56 // Mongolian // xl('Mongolian')
57 // Norwegian // xl('Norwegian')
58 // Persian // xl('Persian')
59 // Polish // xl('Polish')
60 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
61 // Portuguese (European) // xl('Portuguese (European)')
62 // Romanian // xl('Romanian')
63 // Russian // xl('Russian')
64 // Serbian // xl('Serbian')
65 // Sinhala // xl('Sinhala')
66 // Slovak // xl('Slovak')
67 // Somali // xl('Somali')
68 // Spanish (Latin American) // xl('Spanish (Latin American)')
69 // Spanish (Spain) // xl('Spanish (Spain)')
70 // Swedish // xl('Swedish')
71 // Tamil // xl('Tamil')
72 // Thai // xl('Thai')
73 // Turkish // xl('Turkish')
74 // Ukrainian // xl('Ukrainian')
75 // Urdu // xl('Urdu')
76 // Vietnamese // xl('Vietnamese')
78 // OS-dependent stuff.
79 if (stristr(PHP_OS, 'WIN')) {
80 // MS Windows
81 $mysql_bin_dir = 'C:/xampp/mysql/bin';
82 $perl_bin_dir = 'C:/xampp/perl/bin';
83 $temporary_files_dir = 'C:/windows/temp';
84 $backup_log_dir = 'C:/windows/temp';
85 } else {
86 // Everything else
87 $mysql_bin_dir = '/usr/bin';
88 $perl_bin_dir = '/usr/bin';
89 $temporary_files_dir = '/tmp';
90 $backup_log_dir = '/tmp';
93 // Language constant declarations:
94 // xl('Appearance')
95 // xl('Locale')
96 // xl('Features')
97 // xl('Calendar')
98 // xl('Security')
99 // xl('Notifications')
100 // xl('Miscellaneous')
102 // List of user specific tabs and globals
103 $USER_SPECIFIC_TABS = array('Appearance',
104 'Locale',
105 'Report',
106 'Calendar',
107 'CDR',
108 'Connectors');
109 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
110 'default_second_tab',
111 'new_tabs_layout',
112 'theme_tabs_layout',
113 'css_header',
114 'menu_styling_vertical',
115 'default_encounter_view',
116 'gbl_pt_list_page_size',
117 'gbl_pt_list_new_window',
118 'units_of_measurement',
119 'us_weight_format',
120 'date_display_format',
121 'time_display_format',
122 'ledger_begin_date',
123 'print_next_appointment_on_ledger',
124 'calendar_view_type',
125 'event_color',
126 'pat_trkr_timer',
127 'ptkr_visit_reason',
128 'ptkr_date_range',
129 'ptkr_start_date',
130 'ptkr_end_date',
131 'checkout_roll_off',
132 'patient_birthday_alert',
133 'patient_birthday_alert_manual_off',
134 'erx_import_status_message');
136 // Gets array of time zones supported by PHP.
138 function gblTimeZones()
140 $zones = timezone_identifiers_list();
141 $arr = array('' => xl('Unassigned'));
142 foreach ($zones as $zone) {
143 $arr[$zone] = str_replace('_', ' ', $zone);
146 return $arr;
149 $GLOBALS_METADATA = array(
151 // Appearance Tab
153 'Appearance' => array(
155 'default_top_pane' => array(
156 xl('Main Top Pane Screen(Or Default First Tab)'), // descriptive name
157 array(
158 'main_info.php' => xl('Calendar Screen'),
159 '../new/new.php' => xl('Patient Search/Add Screen'),
160 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
161 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
162 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen')
164 'main_info.php', // default = calendar
165 xl('Main Top Pane Screen(Or Default First Tab)')
168 'default_second_tab' => array(
169 xl('Default Second Tab'), // descriptive name
170 array(
171 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen'),
172 'main_info.php' => xl('Calendar Screen'),
173 '../new/new.php' => xl('Patient Search/Add Screen'),
174 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
175 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
177 '../../interface/main/messages/messages.php?form_active=1', // default = messages
178 xl('Default Second Tab')
181 'new_tabs_layout' => array(
182 xl('Layout (need to logout/login after change this setting)'),
183 array(
184 '0' => xl('Frame'),
185 '1' => xl('Tabs'),
187 '1',
188 xl('Choose the layout (need to logout and then login to see this new setting).')
191 'theme_tabs_layout' => array(
192 xl('Tabs Layout Theme (need to logout/login after change this setting)'),
193 'tabs_css',
194 'tabs_style_full.css',
195 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.')
198 'css_header' => array(
199 xl('General Theme (need to logout/login after change this setting)'),
200 'css',
201 'style_light.css',
202 xl('Pick a general theme (need to logout/login after change this setting).')
205 'font-family' => array(
206 xl('Default font (need to logout/login after change this setting)'),
207 array(
208 '__default__' => 'Use Theme Font',
209 'Arial, Helvetica, sans-serif' => "Arial",
210 '"Arial Black", Gadget, sans-serif' => "Arial Black",
211 'Impact, Charcoal, sans-serif' => "Impact",
212 '"Lucida Sans Unicode", "Lucida Grande", sans-serif' => "Lucida Sans",
213 'Tahoma, Geneva, sans-serif' => "Tahoma",
214 '"Trebuchet MS", Helvetica, sans-serif' => "Trebuchet MS",
215 'Verdana, Geneva, sans-serif' => "Verdana",
216 'lato' => "Lato",
218 '__default__',
219 xl('Select the default font'),
222 'font-size' => array(
223 xl('Default font size (need to logout/login after change this setting)'),
224 array(
225 '__default__' => 'Use Theme Font Size',
226 '10px' => '10px',
227 '12px' => '12px',
228 '14px' => '14px',
229 '16px' => '16px',
230 '18px' => '18px',
232 '__default__',
233 xl("Select the default font size"),
236 'menu_styling_vertical' => array(
237 xl('Vertical Menu Style'),
238 array(
239 '0' => xl('Tree'),
240 '1' => xl('Sliding'),
242 '1',
243 xl('Vertical Menu Style')
246 'default_encounter_view' => array(
247 xl('Default Encounter View'), // descriptive name
248 array(
249 '0' => xl('Clinical View'),
250 '1' => xl('Billing View'),
252 '0', // default = tree menu
253 xl('Choose your default encounter view')
256 'gbl_nav_area_width' => array(
257 xl('Navigation Area Width'),
258 'num',
259 '175',
260 xl('Width in pixels of the left navigation frame.')
263 'openemr_name' => array(
264 xl('Application Title'),
265 'text',
266 'OpenEMR',
267 xl('Application name for login page and main window title.')
270 'enable_group_therapy' => array(
271 xl('Enable Group Therapy'),
272 'bool', // data type
273 '0', // default = false
274 xl('Enables groups module in system.')
277 'full_new_patient_form' => array(
278 xl('New Patient Form'),
280 array(
281 '0' => xl('Old-style static form without search or duplication check'),
282 '1' => xl('All demographics fields, with search and duplication check'),
283 '2' => xl('Mandatory or specified fields only, search and dup check'),
284 '3' => xl('Mandatory or specified fields only, dup check, no search'),
285 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
287 '1', // default
288 xl('Style of form used for adding new patients')
291 'gbl_edit_patient_form' => array(
292 xl('Modify Patient Form'),
294 array(
295 '0' => xl('Standard check'),
296 '1' => xl('Zend Module check in addition to standard check')
298 '0', // default
299 xl('Validation mechanism for when modifying patient demographics.')
302 'patient_search_results_style' => array(
303 xl('Patient Search Results Style'),
304 array(
305 '0' => xl('Encounter statistics'),
306 '1' => xl('Mandatory and specified fields'),
308 '0', // default
309 xl('Type of columns displayed for patient search results')
312 'gbl_tall_nav_area' => array(
313 xl('Tall Navigation Area'),
314 'bool', // data type
315 '0', // default = false
316 xl('Navigation area uses full height of frameset')
319 'gbl_nav_visit_forms' => array(
320 xl('Navigation Area Visit Forms'),
321 'bool', // data type
322 '1', // default = true
323 xl('Navigation area includes encounter forms')
326 'simplified_demographics' => array(
327 xl('Simplified Demographics'),
328 'bool', // data type
329 '0', // default = false
330 xl('Omit insurance and some other things from the demographics form')
333 'simplified_prescriptions' => array(
334 xl('Simplified Prescriptions'),
335 'bool', // data type
336 '0', // default = false
337 xl('Omit form, route and interval which then become part of dosage')
340 'simplified_copay' => array(
341 xl('Simplified Co-Pay'),
342 'bool', // data type
343 '0', // default = false
344 xl('Omit method of payment from the co-pay panel')
347 'use_charges_panel' => array(
348 xl('Use Charges Panel'),
349 'bool', // data type
350 '0', // default = false
351 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
354 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
355 'enable_fees_in_left_menu' => array(
356 xl('Enable Fees Submenu'),
357 'bool', // data type
358 '1', // default = true
359 xl('Enable Fees Submenu')
361 'enable_batch_payment' => array(
362 xl('Enable Batch Payment'),
363 'bool', // data type
364 '1', // default = true
365 xl('Enable Batch Payment')
367 'enable_posting' => array(
368 xl('Enable Posting'),
369 'bool', // data type
370 '1', // default = true
371 xl('Enable Posting')
373 // EDI history 2012-09-13
374 'enable_edihistory_in_left_menu' => array(
375 xl('Enable EDI History'),
376 'bool', // data type
377 '1', // default = true
378 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
381 'online_support_link' => array(
382 xl('Online Support Link'),
383 'text', // data type
384 'http://open-emr.org/',
385 xl('URL for OpenEMR support.')
388 'support_phone_number' => array(
389 xl('Support Phone Number'),
390 'text',
392 xl('Phone Number for Vendor Support that Appears on the About Page.')
395 'encounter_page_size' => array(
396 xl('Encounter Page Size'),
397 array(
398 '0' => xl('Show All'),
399 '5' => '5',
400 '10' => '10',
401 '15' => '15',
402 '20' => '20',
403 '25' => '25',
404 '50' => '50',
406 '20',
407 xl('Number of encounters to display per page.')
410 'gbl_pt_list_page_size' => array(
411 xl('Patient List Page Size'),
412 array(
413 '10' => '10',
414 '25' => '25',
415 '50' => '50',
416 '100' => '100',
418 '10',
419 xl('Number of patients to display per page in the patient list.')
422 'gbl_pt_list_new_window' => array(
423 xl('Patient List New Window'),
424 'bool', // data type
425 '0', // default = false
426 xl('Default state of New Window checkbox in the patient list.')
429 'num_of_messages_displayed' => array(
430 xl('Number of Messages Displayed in Patient Summary'),
431 'num',
432 '3',
433 xl('This is the number of messages that will be displayed in the messages widget in the patient summary screen.')
436 'gbl_vitals_options' => array(
437 xl('Vitals Form Options'),
438 array(
439 '0' => xl('Standard'),
440 '1' => xl('Omit circumferences'),
442 '0', // default
443 xl('Special treatment for the Vitals form')
446 'insurance_information' => array(
447 xl('Show Additional Insurance Information'), // descriptive name
448 array(
449 '0' => xl('None'),
450 '1' => xl('Address Only'),
451 '2' => xl('Address and Postal Code'),
452 '3' => xl('Address and State'),
453 '4' => xl('Address, State and Postal Code'),
454 '5' => xl('Address, City, State and Postal Code'),
455 '6' => xl('Postal Code and Box Number')
457 '5', // default
458 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
461 'gb_how_sort_list' => array(
462 xl('How to sort a drop-lists'),
463 array(
464 '0' => xl('Sort by seq'),
465 '1' => xl('Sort alphabetically')
467 '0',
468 xl('What kind of sorting will be in the drop lists.')
471 'show_label_login' => array(
472 xl('Show Title on Login'),
473 'bool', // data type
474 '0', // default = false
475 xl('Show Title on Login')
478 'extra_logo_login' => array(
479 xl('Show Extra Logo on Login'),
480 'bool', // data type
481 '0', // default = false
482 xl('Show Extra Logo on Login')
485 'tiny_logo_1' => array(
486 xl('Show Mini Logo 1'),
487 'bool', // data type
488 '0', // default = false
489 xl('Show Mini Logo 1')
492 'tiny_logo_2' => array(
493 xl('Show Mini Logo 2'),
494 'bool', // data type
495 '0', // default = false
496 xl('Show Mini Logo 2')
501 // Locale Tab
503 'Locale' => array(
505 'language_default' => array(
506 xl('Default Language'),
507 'lang', // data type
508 'English (Standard)', // default = english
509 xl('Default language if no other is allowed or chosen.')
512 'language_menu_showall' => array(
513 xl('All Languages Allowed'),
514 'bool', // data type
515 '1', // default = true
516 xl('Allow all available languages as choices on menu at login.')
519 'language_menu_other' => array(
520 xl('Allowed Languages'),
521 'm_lang', // data type
522 '', // default = none
523 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
526 'allow_debug_language' => array(
527 xl('Allow Debugging Language'),
528 'bool', // data type
529 '1', // default = true during development and false for production releases
530 xl('This will allow selection of the debugging (\'dummy\') language.')
533 'translate_no_safe_apostrophe' => array(
534 xl('Do Not Use Safe Apostrophe'),
535 'bool', // data type
536 '0', // default = false
537 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)')
540 'translate_layout' => array(
541 xl('Translate Layouts'),
542 'bool', // data type
543 '1', // default = true
544 xl('Is text from form layouts to be translated?')
547 'translate_lists' => array(
548 xl('Translate Lists'),
549 'bool', // data type
550 '1', // default = true
551 xl('Is text from lists to be translated?')
554 'translate_gacl_groups' => array(
555 xl('Translate Access Control Groups'),
556 'bool', // data type
557 '1', // default = true
558 xl('Are access control group names to be translated?')
561 'translate_form_titles' => array(
562 xl('Translate Patient Note Titles'),
563 'bool', // data type
564 '1', // default = true
565 xl('Are patient note titles to be translated?')
568 'translate_document_categories' => array(
569 xl('Translate Document Categories'),
570 'bool', // data type
571 '1', // default = true
572 xl('Are document category names to be translated?')
575 'translate_appt_categories' => array(
576 xl('Translate Appointment Categories'),
577 'bool', // data type
578 '1', // default = true
579 xl('Are appointment category names to be translated?')
582 'units_of_measurement' => array(
583 xl('Units for Visit Forms'),
584 array(
585 '1' => xl('Show both US and metric (main unit is US)'),
586 '2' => xl('Show both US and metric (main unit is metric)'),
587 '3' => xl('Show US only'),
588 '4' => xl('Show metric only'),
590 '1', // default = Both/US
591 xl('Applies to the Vitals form and Growth Chart')
594 'us_weight_format' => array(
595 xl('Display Format for US Weights'),
596 array(
597 '1' => xl('Show pounds as decimal value'),
598 '2' => xl('Show pounds and ounces')
600 '1',
601 xl('Applies to Vitals form')
604 'phone_country_code' => array(
605 xl('Telephone Country Code'),
606 'num',
607 '1', // default = North America
608 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
611 'date_display_format' => array(
612 xl('Date Display Format'),
613 array(
614 '0' => xl('YYYY-MM-DD'),
615 '1' => xl('MM/DD/YYYY'),
616 '2' => xl('DD/MM/YYYY'),
618 '0',
619 xl('Format used to display most dates.')
622 'time_display_format' => array(
623 xl('Time Display Format'),
624 array(
625 '0' => xl('24 hr'),
626 '1' => xl('12 hr'),
628 '0',
629 xl('Format used to display most times.')
632 'gbl_time_zone' => array(
633 xl('Time Zone'),
634 gblTimeZones(),
636 xl('If unassigned will default to php.ini setting for date.timezone.')
639 'currency_decimals' => array(
640 xl('Currency Decimal Places'),
641 array(
642 '0' => xl('0'),
643 '1' => xl('1'),
644 '2' => xl('2'),
646 '2',
647 xl('Number of digits after decimal point for currency, usually 0 or 2.')
650 'currency_dec_point' => array(
651 xl('Currency Decimal Point Symbol'),
652 array(
653 '.' => xl('Period'),
654 ',' => xl('Comma'),
656 '.',
657 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
660 'currency_thousands_sep' => array(
661 xl('Currency Thousands Separator'),
662 array(
663 ',' => xl('Comma'),
664 '.' => xl('Period'),
665 ' ' => xl('Space'),
666 '' => xl('None'),
668 ',',
669 xl('Symbol used to separate thousands for currency.')
672 'gbl_currency_symbol' => array(
673 xl('Currency Designator'),
674 'text', // data type
675 '$', // default
676 xl('Code or symbol to indicate currency')
678 'age_display_format' => array(xl('Age Display Format'),
679 array(
680 '0' => xl('Years or months'),
681 '1' => xl('Years, months and days')
683 '0',
684 xl('Format for age display')
686 'age_display_limit' => array(
687 xl('Age in Years for Display Format Change'),
688 'num',
689 '3',
690 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
692 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
693 'weekend_days' => array(
694 xl('Your weekend days'),
695 array(
696 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
697 '0' => xl('Sunday'),
698 '5' => xl('Friday'),
699 '6' => xl('Saturday'),
700 '5,6' => xl('Friday') . ' - ' . xl('Saturday'),
702 '6,0'
703 , xl('which days are your weekend days?')
708 // Features Tab
710 'Features' => array(
712 'specific_application' => array(
713 xl('Specific Application'),
714 array(
715 '0' => xl('None'),
716 '2' => xl('IPPF'),
717 '3' => xl('Weight loss clinic'),
719 '0', // default
720 xl('Indicator for specialized usage')
723 'inhouse_pharmacy' => array(
724 xl('Drugs and Products'),
725 array(
726 '0' => xl('Do not inventory and sell any products'),
727 '1' => xl('Inventory and sell drugs only'),
728 '2' => xl('Inventory and sell both drugs and non-drug products'),
729 '3' => xl('Products but no prescription drugs and no templates'),
731 '0', // default
732 xl('Option to support inventory and sales of products')
735 'default_visit_category' => array(
736 xl('Default Visit Category'),
737 'default_visit_category',
738 '_blank',
739 xl('Define a default visit category'),
742 'disable_chart_tracker' => array(
743 xl('Disable Chart Tracker'),
744 'bool', // data type
745 '0', // default = false
746 xl('Removes the Chart Tracker feature')
749 'disable_immunizations' => array(
750 xl('Disable Immunizations'),
751 'bool', // data type
752 '0', // default = false
753 xl('Removes support for immunizations')
756 'disable_prescriptions' => array(
757 xl('Disable Prescriptions'),
758 'bool', // data type
759 '0', // default = false
760 xl('Removes support for prescriptions')
763 'omit_employers' => array(
764 xl('Omit Employers'),
765 'bool', // data type
766 '0', // default = false
767 xl('Omit employer information in patient demographics')
770 'select_multi_providers' => array(
771 xl('Support Multi-Provider Events'),
772 'bool', // data type
773 '0', // default = false
774 xl('Support calendar events that apply to multiple providers')
777 'disable_non_default_groups' => array(
778 xl('Disable User Groups'),
779 'bool', // data type
780 '1', // default = true
781 xl('Normally this should be checked. Not related to access control.')
784 'ignore_pnotes_authorization' => array(
785 xl('Skip Authorization of Patient Notes'),
786 'bool', // data type
787 '1', // default = true
788 xl('Do not require patient notes to be authorized')
791 'support_encounter_claims' => array(
792 xl('Allow Encounter Claims'),
793 'bool', // data type
794 '0', // default = false
795 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
798 'advance_directives_warning' => array(
799 xl('Advance Directives Warning'),
800 'bool', // data type
801 '0', // default = false
802 xl('Display advance directives in the demographics page.')
805 'configuration_import_export' => array(
806 xl('Configuration Export/Import'),
807 'bool', // data type
808 '0', // default = false
809 xl('Support export/import of configuration data via the Backup page.')
812 'restrict_user_facility' => array(
813 xl('Restrict Users to Facilities'),
814 'bool', // data type
815 '0', // default
816 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
819 'set_facility_cookie' => array(
820 xl('Remember Selected Facility'),
821 'bool', // data type
822 '0', // default
823 xl('Set a facility cookie to remember the selected facility between logins.')
826 'receipts_by_provider' => array(
827 xl('Print Receipts by Provider'),
828 'bool',
829 '0', // default
830 xl('Causes Receipts to Print Encounter/Primary Provider Info')
833 'discount_by_money' => array(
834 xl('Discounts as Monetary Amounts'),
835 'bool', // data type
836 '1', // default = true
837 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
840 'gbl_visit_referral_source' => array(
841 xl('Referral Source for Encounters'),
842 'bool', // data type
843 '0', // default = false
844 xl('A referral source may be specified for each visit.')
847 'gbl_mask_patient_id' => array(
848 xl('Mask for Patient IDs'),
849 'text', // data type
850 '', // default
851 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
854 'gbl_mask_invoice_number' => array(
855 xl('Mask for Invoice Numbers'),
856 'text', // data type
857 '', // default
858 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
861 'gbl_mask_product_id' => array(
862 xl('Mask for Product IDs'),
863 'text', // data type
864 '', // default
865 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
868 'hide_billing_widget' => array(
869 xl('Hide Billing Widget'),
870 'bool', // data type
871 '0', // default = false
872 xl('This will hide the Billing Widget in the Patient Summary screen')
875 'force_billing_widget_open' => array(
876 xl('Force Billing Widget Open'),
877 'bool', // data type
878 '0', // default = false
879 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
882 'activate_ccr_ccd_report' => array(
883 xl('Activate CCR/CCD Reporting'),
884 'bool', // data type
885 '1', // default = true
886 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
889 'hide_document_encryption' => array(
890 xl('Hide Encryption/Decryption Options In Document Management'),
891 'bool', // data type
892 '1', // default = true
893 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
896 'use_custom_immun_list' => array(
897 xl('Use Custom Immunization List'),
898 'bool', // data type
899 '0', // default = true
900 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
903 'amendments' => array(
904 xl('Amendments'),
905 'bool', // data type
906 '1', // default = true
907 xl('Enable amendments feature')
910 'allow_pat_delete' => array(
911 xl('Allow Administrators to Delete Patients'),
912 'bool', // data type
913 '0', // default = false
914 xl('Allow Administrators to Delete Patients')
918 'observation_results_immunization' => array(
919 xl('Immunization Observation Results'),
920 'bool', // data type
921 '1', // default
922 xl('Observation Results in Immunization')
925 'enable_help' => array(
926 xl('Enable Help Modal'),
927 array(
928 '0' => xl('Hide Help Modal'),
929 '1' => xl('Show Help Modal'),
930 '2' => xl('Disable Help Modal'),
931 ), // data type
932 '1', // default = Print End of Day Report 1
933 xl('This will allow the display of help modal on help enabled pages')
937 // Report Tab
939 'Report' => array(
941 'use_custom_daysheet' => array(
942 xl('Use Custom End of Day Report'),
943 array(
944 '0' => xl('None'),
945 '1' => xl('Print End of Day Report 1'),
946 '2' => xl('Print End of Day Report 2'),
947 '3' => xl('Print End of Day Report 3'),
948 ), // data type
949 '1', // default = Print End of Day Report 1
950 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
953 'daysheet_provider_totals' => array(
954 xl('End of Day by Provider or allow Totals Only'),
955 array(
956 '0' => xl('Provider'),
957 '1' => xl('Totals Only'),
959 '1', // default
960 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
963 'ledger_begin_date' => array(
964 xl('Beginning Date for Ledger Report'),
965 array(
966 'Y1' => xl('One Year Ago'),
967 'Y2' => xl('Two Years Ago'),
968 'M6' => xl('Six Months Ago'),
969 'M3' => xl('Three Months Ago'),
970 'M1' => xl('One Month Ago'),
971 'D1' => xl('One Day Ago'),
973 'Y1', // default = One Year
974 xl('This is the Beginning date for the Ledger Report.')
977 'print_next_appointment_on_ledger' => array(
978 xl('Print the Next Appointment on the Bottom of the Ledger'),
979 'bool', // data type
980 '1', // default = true
981 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
984 'sales_report_invoice' => array(
985 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
986 array(
987 '0' => xl('Invoice Number'),
988 '1' => xl('Patient Name and ID'),
989 '2' => xl('Patient Name and Invoice'),
991 '2', // default = 2
992 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
995 'cash_receipts_report_invoice' => array(
996 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
997 array(
998 '0' => xl('Invoice Number'),
999 '1' => xl('Patient Name'),
1001 '0', // default = 0
1002 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
1007 // Billing Tab
1009 'Billing' => array(
1011 'ub04_support' => array(
1012 xl('Activate UB04/837I Claim Support'),
1013 'bool', // data type
1014 '0', // default = false
1015 xl('Allow institutional claims support.')
1018 'top_ubmargin_default' => array(
1019 xl('Default top print margin for UB04'),
1020 'num', // data type
1021 '14', // default
1022 xl('This is the default top print margin for UB04. It will adjust the final printed output up or down.')
1025 'left_ubmargin_default' => array(
1026 xl('Default left print margin for UB04'),
1027 'num', // data type
1028 '11', // default
1029 xl('This is the default left print margin for UB04. It will adjust the final printed output left or right.')
1032 'cms_top_margin_default' => array(
1033 xl('Default top print margin for CMS 1500'),
1034 'num', // data type
1035 '24', // default
1036 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
1039 'cms_left_margin_default' => array(
1040 xl('Default left print margin for CMS 1500'),
1041 'num', // data type
1042 '20', // default
1043 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
1046 'preprinted_cms_1500' => array(
1047 xl('Prints the CMS 1500 on the Preprinted form'),
1048 'bool', // data type
1049 '0', // default = false
1050 xl('Overlay CMS 1500 on the Preprinted form')
1053 'cms_1500_box_31_format' => array(
1054 xl('CMS 1500: Box 31 Format'),
1055 array(
1056 '0' => xl('Signature on File'),
1057 '1' => xl('Firstname Lastname'),
1058 '2' => xl('None'),
1060 '0', // default
1061 xl('This specifies whether to include date in Box 31.')
1064 'cms_1500_box_31_date' => array(
1065 xl('CMS 1500: Date in Box 31 (Signature)'),
1066 array(
1067 '0' => xl('None'),
1068 '1' => xl('Date of Service'),
1069 '2' => xl('Today'),
1071 '0', // default
1072 xl('This specifies whether to include date in Box 31.')
1075 'default_search_code_type' => array(
1076 xl('Default Search Code Type'),
1077 'all_code_types', // data type
1078 'ICD10', // default
1079 xl('The default code type to search for in the Fee Sheet.')
1082 'default_rendering_provider' => array(
1083 xl('Default Rendering Provider in Fee Sheet'),
1084 array(
1085 '0' => xl('Please Select'),
1086 '1' => xl('Current Provider'),
1087 '2' => xl('Current Logged in User'),
1089 '1',
1090 xl('Default selection for rendering provider in fee sheet.')
1093 'show_payment_history' => array(
1094 xl('Show all payment history in Patient Ledger'),
1095 'bool', // data type
1096 '1', // default = true
1097 xl('Turn on to show all payment history in Patient Ledger')
1100 'support_fee_sheet_line_item_provider' => array(
1101 xl('Support provider in line item in fee sheet'),
1102 'bool', // data type
1103 '0', // default = false
1104 xl('This Enables provider in line item in the fee sheet')
1107 'default_fee_sheet_line_item_provider' => array(
1108 xl('Default to a provider for line item in the fee sheet'),
1109 'bool', // data type
1110 '0', // default = false
1111 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1114 'replicate_justification' => array(
1115 xl('Automatically replicate justification codes in Fee Sheet'),
1116 'bool', // data type
1117 '0', // default = false
1118 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1121 'display_units_in_billing' => array(
1122 xl('Display the Units Column on the Billing Screen'),
1123 'bool', // data type
1124 '0', // default = false
1125 xl('Display the Units Column on the Billing Screen')
1128 'notes_to_display_in_Billing' => array(
1129 xl('Which notes are to be displayed in the Billing Screen'),
1130 array(
1131 '0' => xl('None'),
1132 '1' => xl('Encounter Billing Note'),
1133 '2' => xl('Patient Billing Note'),
1134 '3' => xl('All'),
1136 '3',
1137 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1140 'set_pos_code_encounter' => array(
1141 xl('Set POS code in encounter'),
1142 'bool', // data type
1143 '0', // default = false
1144 xl('This feature will allow the default POS facility code to be overriden from the encounter.')
1147 'use_custom_statement' => array(
1148 xl('Use Custom Statement'),
1149 'bool', // data type
1150 '0', // default = false
1151 xl('This will use the custom Statment showing the description instead of the codes.')
1154 'statement_appearance' => array(
1155 xl('Statement Appearance'),
1156 array(
1157 '0' => xl('Plain Text'),
1158 '1' => xl('Modern/images')
1159 ), // data type
1160 '1', // default = true
1161 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1164 'billing_phone_number' => array(
1165 xl('Custom Billing Phone Number'),
1166 'text', // data type
1168 xl('Phone number for billing inquiries')
1171 'show_aging_on_custom_statement' => array(
1172 xl('Show Aging on Custom Statement'),
1173 'bool', // data type
1174 '0', // default = false
1175 xl('This will Show Aging on the custom Statement.')
1178 'use_statement_print_exclusion' => array(
1179 xl('Allow Statement Exclusions from Printing'),
1180 'bool', // data type
1181 '0', // default = false
1182 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1185 'minimum_amount_to_print' => array(
1186 xl('Total Minimum Amount of Statement to Allow Printing'),
1187 'num', // data type
1188 '1.00',
1189 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1192 'statement_bill_note_print' => array(
1193 xl('Print Patient Billing Note'),
1194 'bool', // data type
1195 '0', // default = false
1196 xl('This will allow printing of the Patient Billing Note on the statements.')
1199 'number_appointments_on_statement' => array(
1200 xl('Number of Appointments on Statement'),
1201 'num', // data type
1202 '0', // default = 0
1203 xl('The Number of Future Appointments to Display on the Statement.')
1206 'statement_message_to_patient' => array(
1207 xl('Print Custom Message'),
1208 'bool', // data type
1209 '0', // default = false
1210 xl('This will allow printing of a custom Message on the statements.')
1213 'statement_msg_text' => array(
1214 xl('Custom Statement message'),
1215 'text', // data type
1217 xl('Text for Custom statement message.')
1220 'use_dunning_message' => array(
1221 xl('Use Custom Dunning Messages'),
1222 'bool', // data type
1223 '0', // default = false
1224 xl('This will allow use of the custom Dunning Messages on the statements.')
1227 'first_dun_msg_set' => array(
1228 xl('Number of days before showing first account message'),
1229 'num', // data type
1230 '30',
1231 xl('Number of days before showing first account message.')
1234 'first_dun_msg_text' => array(
1235 xl('First account message'),
1236 'text', // data type
1238 xl('Text for first account message.')
1241 'second_dun_msg_set' => array(
1242 xl('Number of days before showing second account message'),
1243 'num', // data type
1244 '60',
1245 xl('Number of days before showing second account message')
1248 'second_dun_msg_text' => array(
1249 xl('Second account message'),
1250 'text', // data type
1252 xl('Text for second account message.')
1255 'third_dun_msg_set' => array(
1256 xl('Number of days before showing third account message'),
1257 'num', // data type
1258 '90',
1259 xl('Number of days before showing third account message')
1262 'third_dun_msg_text' => array(
1263 xl('Third account message'),
1264 'text', // data type
1266 xl('Text for third account message.')
1269 'fourth_dun_msg_set' => array(
1270 xl('Number of days before showing fourth account message'),
1271 'num', // data type
1272 '120',
1273 xl('Number of days before showing fourth account message')
1276 'fourth_dun_msg_text' => array(
1277 xl('Fourth account message'),
1278 'text', // data type
1280 xl('Text for fourth account message.')
1283 'fifth_dun_msg_set' => array(
1284 xl('Number of days before showing fifth account message'),
1285 'num', // data type
1286 '150',
1287 xl('Number of days before showing fifth account message')
1290 'fifth_dun_msg_text' => array(
1291 xl('Fifth account message'),
1292 'text', // data type
1294 xl('Text for fifth account message.')
1296 'save_codes_history' => array(
1297 xl('Save codes history'),
1298 'bool', // data type
1299 '1', // default
1300 xl('Save codes history')
1304 // E-Sign Tab
1306 'E-Sign' => array(
1308 'esign_all' => array(
1309 xl('Allows E-Sign on the entire encounter'),
1310 'bool', // data type
1311 '0', // default = false
1312 xl('This will enable signing an entire encounter, rather than individual forms')
1315 'lock_esign_all' => array(
1316 xl('Lock e-signed encounters and their forms'),
1317 'bool', // data type
1318 '0', // default = false
1319 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1322 'esign_individual' => array(
1323 xl('Allows E-Signing Individual Forms'),
1324 'bool', // data type
1325 '1', // default = false
1326 xl('This will enable signing individual forms separately')
1329 'lock_esign_individual' => array(
1330 xl('Lock an e-signed form individually'),
1331 'bool', // data type
1332 '1', // default = false
1333 xl('This will disable the Edit button on any form that is e-signed')
1336 'esign_lock_toggle' => array(
1337 xl('Enable lock toggle'),
1338 'bool', // data type
1339 '0', // default = false
1340 xl('This will give the user the option to lock (separate locking and signing)')
1343 'esign_report_hide_empty_sig' => array(
1344 xl('Hide Empty E-Sign Logs On Report'),
1345 'bool', // data type
1346 '1', // default = false
1347 xl('This will hide empty e-sign logs on the patient report')
1351 //Documents Tab
1352 'Documents' => array(
1354 'document_storage_method' => array(
1355 xl('Document Storage Method'),
1356 array(
1357 '0' => xl('Hard Disk'),
1358 '1' => xl('CouchDB')
1360 '0', // default
1361 xl('Option to save method of document storage.')
1364 'couchdb_host' => array(
1365 xl('CouchDB HostName'),
1366 'text',
1367 'localhost',
1368 xl('CouchDB host'),
1370 'couchdb_user' => array(
1371 xl('CouchDB UserName'),
1372 'text',
1374 xl('Username to connect to CouchDB'),
1376 'couchdb_pass' => array(
1377 xl('CouchDB Password'),
1378 'text',
1380 xl('Password to connect to CouchDB'),
1382 'couchdb_port' => array(
1383 xl('CouchDB Port'),
1384 'text',
1385 '5984',
1386 xl('CouchDB port'),
1388 'couchdb_dbase' => array(
1389 xl('CouchDB Database'),
1390 'text',
1392 xl('CouchDB database name'),
1394 'couchdb_log' => array(
1395 xl('CouchDB Log Enable'),
1396 'bool',
1397 '0',
1398 xl('Enable log for document uploads/downloads to CouchDB'),
1401 'expand_document_tree' => array(
1402 xl('Expand All Document Categories'),
1403 'bool', // data type
1404 '0', // default = false
1405 xl('Expand All Document Categories by Default')
1408 'patient_id_category_name' => array(
1409 xl('Patient ID Category Name'),
1410 'text', // data type
1411 'Patient ID card', // default
1412 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1415 'patient_photo_category_name' => array(
1416 xl('Patient Photo Category Name'),
1417 'text', // data type
1418 'Patient Photograph', // default
1419 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1422 'lab_results_category_name' => array(
1423 xl('Lab Results Category Name'),
1424 'text', // data type
1425 'Lab Report', // default
1426 xl('Document category name for storage of electronically received lab results.')
1429 'gbl_mdm_category_name' => array(
1430 xl('MDM Document Category Name'),
1431 'text', // data type
1432 'Lab Report', // default
1433 xl('Document category name for storage of electronically received MDM documents.')
1435 'generate_doc_thumb' => array(
1436 xl('Generate thumbnail'),
1437 'bool',
1438 '0',
1439 xl('Generate thumbnail images'),
1441 'thumb_doc_max_size' => array(
1442 xl('Thumbnail size'),
1443 'text', // data type
1444 '100', // default
1445 xl('Maximum size of thumbnail file')
1449 // Calendar Tab
1451 'Calendar' => array(
1453 'disable_calendar' => array(
1454 xl('Disable Calendar'),
1455 'bool', // data type
1456 '0', // default
1457 xl('Do not display the calendar.')
1460 'schedule_start' => array(
1461 xl('Calendar Starting Hour'),
1462 'hour',
1463 '8', // default
1464 xl('Beginning hour of day for calendar events.')
1467 'schedule_end' => array(
1468 xl('Calendar Ending Hour'),
1469 'hour',
1470 '17', // default
1471 xl('Ending hour of day for calendar events.')
1474 'calendar_interval' => array(
1475 xl('Calendar Interval'),
1476 array(
1477 '5' => '5',
1478 '10' => '10',
1479 '15' => '15',
1480 '20' => '20',
1481 '30' => '30',
1482 '60' => '60',
1484 '15', // default
1485 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1488 'calendar_view_type' => array(
1489 xl('Default Calendar View'),
1490 array(
1491 'day' => xl('Day'),
1492 'week' => xl('Week'),
1493 'month' => xl('Month'),
1495 'day', // default
1496 xl('This sets the Default Calendar View, Default is Day.')
1498 'first_day_week' => array(
1499 xl('First day in the week'),
1500 array(
1501 '1' => xl('Monday'),
1502 '0' => xl('Sunday'),
1503 '6' => xl('Saturday')
1505 '1',
1506 xl('Your first day of the week.')
1508 'calendar_appt_style' => array(
1509 xl('Appointment Display Style'),
1510 array(
1511 '1' => xl('Last name'),
1512 '2' => xl('Last name, first name'),
1513 '3' => xl('Last name, first name (title)'),
1514 '4' => xl('Last name, first name (title: comments)'),
1516 '2', // default
1517 xl('This determines how appointments display on the calendar.')
1520 'event_color' => array(
1521 xl('Appointment/Event Color'),
1522 array(
1523 '1' => xl('Category Color Schema'),
1524 '2' => xl('Facility Color Schema'),
1525 ), // data type
1526 '1', // default
1527 xl('This determines which color schema used for appointment')
1530 'number_of_appts_to_show' => array(
1531 xl('Appointments - Patient Summary - Number to Display'),
1532 'num',
1533 '10',
1534 xl('Number of Appointments to display in the Patient Summary')
1537 'number_of_group_appts_to_show' => array(
1538 xl('Appointments - Group Summary - Number to Display'),
1539 'num',
1540 '10',
1541 xl('Number of Appointments to display in the Group Summary')
1543 'number_of_ex_appts_to_show' => array(
1544 xl('Excluded Appointments - Tooltip - Number to Display'),
1545 'num',
1546 '15',
1547 xl('Number of Excluded Appointments to display in the Tooltip')
1551 'patient_portal_appt_display_num' => array(
1552 xl('Appointments - Onsite Patient Portal - Number to Display'),
1553 'num',
1554 '20',
1555 xl('Number of Appointments to display in the Onsite Patient Portal')
1558 'appt_display_sets_option' => array(
1559 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1560 'bool', // data type
1561 '1', // default
1562 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1565 'appt_display_sets_color_1' => array(
1566 xl('Appointment Display Sets - Color 1'),
1567 'color_code',
1568 '#FFFFFF',
1569 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).')
1572 'appt_display_sets_color_2' => array(
1573 xl('Appointment Display Sets - Color 2'),
1574 'color_code',
1575 '#E6E6FF',
1576 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).')
1579 'appt_display_sets_color_3' => array(
1580 xl('Appointment Display Sets - Color 3'),
1581 'color_code',
1582 '#E6FFE6',
1583 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1586 'appt_display_sets_color_4' => array(
1587 xl('Appointment Display Sets - Color 4'),
1588 'color_code',
1589 '#FFE6FF',
1590 xl('Color for the last set when not all member appointments are displayed.')
1593 'appt_recurrences_widget' => array(
1594 xl('Recurrent Appointment Display Widget'),
1595 'bool', // data type
1596 '1', // default
1597 xl('Display the recurrent appointment widget in the patient summary.')
1600 'num_past_appointments_to_show' => array(
1601 xl('Past Appointment Display Widget'),
1602 'num', // data type
1603 '0', // default = false
1604 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)')
1607 'docs_see_entire_calendar' => array(
1608 xl('Providers See Entire Calendar'),
1609 'bool', // data type
1610 '0', // default
1611 xl('Check this if you want providers to see all appointments by default and not just their own.')
1614 'auto_create_new_encounters' => array(
1615 xl('Auto-Create New Encounters'),
1616 'bool', // data type
1617 '1', // default
1618 xl('Automatically create a new encounter when an appointment check in status is selected.')
1621 'allow_early_check_in' => array(
1622 xl('Allow Early Check In'),
1623 'bool', // data type
1624 '1', // default
1625 xl("Allow Check In before the appointment's time.")
1628 'submit_changes_for_all_appts_at_once' => array(
1629 xl('Submit Changes For All Appts At Once'),
1630 'bool', // data type
1631 '1', // default
1632 xl('Enables to submit changes for all appointments of a recurrence at once.')
1635 'disable_pat_trkr' => array(
1636 xl('Flow Board: Disable'),
1637 'bool', // data type
1638 '0', // default
1639 xl('Completely remove the ability to display the Patient Flow Board.')
1642 'ptkr_visit_reason' => array(
1643 xl('Flow Board: Show Visit Reason'),
1644 'bool', // data type
1645 '0', // default = false
1646 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1649 'ptkr_show_pid' => array(
1650 xl('Flow Board: Show Patient ID'),
1651 'bool', // data type
1652 '1', // default = true
1653 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1656 'ptkr_show_encounter' => array(
1657 xl('Flow Board: Show Encounter Number'),
1658 'bool', // data type
1659 '1', // default = true
1660 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1663 'ptkr_show_staff' => array(
1664 xl('Flow Board: Show Staff Action'),
1665 'bool', // data type
1666 '1', // default = true
1667 xl('When Checked, Last Staff to Update Board Will Show in Patient Flow Board.')
1670 'ptkr_date_range' => array(
1671 xl('Flow Board: Allow Date Range'),
1672 'bool', // data type
1673 '1', // default = true
1674 xl('This Allows a Date Range to be Selected in Patient Flow Board.')
1677 'ptkr_start_date'=> array(
1678 xl('Flow Board: Default Starting Date'),
1679 array(
1680 'D0' => xl('Current Day'),
1681 'B0' => xl('Beginning of Current Work Week'),
1683 'D0', // default = Current Day
1684 xl('This is the default Beginning date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1687 'ptkr_end_date' => array(
1688 xl('Flow Board: Default Ending Date'),
1689 array(
1690 'Y1' => xl('One Year Ahead'),
1691 'Y2' => xl('Two Years Ahead'),
1692 'M6' => xl('Six Months Ahead'),
1693 'M3' => xl('Three Months Ahead'),
1694 'M1' => xl('One Month Ahead'),
1695 'D7' => xl('One Week Ahead'),
1696 'D1' => xl('One Day Ahead'),
1697 'D0' => xl('Current Day'),
1699 'D0', // default = One Day Ahead
1700 xl('This is the default Ending date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1703 'pat_trkr_timer' => array(
1704 xl('Flow Board: Timer Refresh Interval'),
1705 array(
1706 '0' => xl('No automatic refresh'),
1707 '0:10' => '10',
1708 '0:20' => '20',
1709 '0:30' => '30',
1710 '0:40' => '40',
1711 '0:50' => '50',
1712 '0:59' => '60',
1714 '0:20', // default
1715 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1718 'checkout_roll_off' => array(
1719 xl('Flow Board: display completed checkouts (minutes)'),
1720 'num',
1721 '0', // default
1722 xl('Flow Board will only display completed checkouts for this many minutes. Zero is continuous display.')
1725 'drug_screen' => array(
1726 xl('Flow Board: Enable Random Drug Testing'),
1727 'bool', // data type
1728 '0', // default
1729 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1732 'drug_testing_percentage' => array(
1733 xl('Flow Board: Percentage of Patients to Drug Test'),
1734 'num',
1735 '33', // default
1736 xl('Percentage of Patients to select for Random Drug Testing.')
1739 'maximum_drug_test_yearly' => array(
1740 xl('Flow Board: Max tests per Patient per year'),
1741 'num',
1742 '0', // default
1743 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1746 'disable_rcb' => array(
1747 xl('Recall Board: Disable'),
1748 'bool', // data type
1749 '0', // default
1750 xl('Do not display the Recall Board.')
1758 // Security Tab
1760 'Security' => array(
1761 'sql_string_no_show_screen' => array(
1762 xl('Mode - Do Not Show SQL Queries'),
1763 'bool', // data type
1764 '0', // default
1765 xl('Do not allow SQL queries to be outputted to screen.')
1767 'timeout' => array(
1768 xl('Idle Session Timeout Seconds'),
1769 'num', // data type
1770 '7200', // default
1771 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1773 'secure_upload' => array(
1774 xl('Secure Upload Files with White List'),
1775 'bool', // data type
1776 '0', // default
1777 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1779 'secure_password' => array(
1780 xl('Require Strong Passwords'),
1781 'bool', // data type
1782 '0', // default
1783 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1785 'password_history' => array(
1786 xl('Require Unique Passwords'),
1787 'bool', // data type
1788 '0', // default
1789 xl('Means none of last three passwords are allowed when changing a password.')
1791 'password_compatibility' => array(
1792 xl('Permit unsalted passwords'),
1793 'bool', // data type
1794 '1', // default
1795 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')
1798 'password_expiration_days' => array(
1799 xl('Default Password Expiration Days'),
1800 'num', // data type
1801 '0', // default
1802 xl('Default password expiration period in days. 0 means this feature is disabled.')
1805 'password_grace_time' => array(
1806 xl('Password Expiration Grace Period'),
1807 'num', // data type
1808 '0', // default
1809 xl('Period in days where a user may login with an expired password.')
1812 'is_client_ssl_enabled' => array(
1813 xl('Enable Client SSL'),
1814 'bool', // data type
1815 '0', // default
1816 xl('Enable client SSL certificate authentication.')
1819 'certificate_authority_crt' => array(
1820 xl('Path to CA Certificate File'),
1821 'text', // data type
1822 '', // default
1823 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1826 'certificate_authority_key' => array(
1827 xl('Path to CA Key File'),
1828 'text', // data type
1829 '', // default
1830 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1833 'client_certificate_valid_in_days' => array(
1834 xl('Client Certificate Expiration Days'),
1835 'num', // data type
1836 '365', // default
1837 xl('Number of days that the client certificate is valid.')
1840 'Emergency_Login_email_id' => array(
1841 xl('Emergency Login Email Address'),
1842 'text', // data type
1843 '', // default
1844 xl('Email address, if any, to receive emergency login user activation messages.')
1847 'new_validate' => array(
1848 xl('New form validation'),
1849 'bool',
1850 '1',
1851 xl('New form validation')
1854 'allow_multiple_databases' => array(
1855 xl('Allow multiple databases'),
1856 'bool',
1857 '0',
1858 xl('Allow to use with multiple database')
1861 'safe_key_database' => array(
1862 xl('Safe key database'),
1863 'text', // data type
1864 '', // default
1865 xl('Key for multiple database credentials encryption')
1868 'use_active_directory' => array(
1869 xl('Use Active Directory'),
1870 'bool',
1871 '0',
1872 xl('If enabled, uses the specified active directory for login and authentication.')
1875 'account_suffix' => array(
1876 xl('Active Directory - Suffix Of Account'),
1877 'text',
1879 xl('The suffix of the account.')
1882 'base_dn' => array(
1883 xl('Active Directory - Domains Base'),
1884 'text',
1886 xl('Users is the standard windows CN, replace the DC stuff with your domain.')
1889 'domain_controllers' => array(
1890 xl('Active Directory - Domains Controllers'),
1891 'text',
1893 xl('The IP address of your domain controller(s).')
1898 // Notifications Tab
1900 'Notifications' => array(
1902 'patient_reminder_sender_name' => array(
1903 xl('Patient Reminder Sender Name'),
1904 'text', // data type
1905 '', // default
1906 xl('Name of the sender for patient reminders.')
1909 'patient_reminder_sender_email' => array(
1910 xl('Patient Reminder Sender Email'),
1911 'text', // data type
1912 '', // default
1913 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.')
1916 'practice_return_email_path' => array(
1917 xl('Notification Email Address'),
1918 'text', // data type
1919 '', // default
1920 xl('Email address, if any, to receive administrative notifications.')
1923 'EMAIL_METHOD' => array(
1924 xl('Email Transport Method'),
1925 array(
1926 'PHPMAIL' => 'PHPMAIL',
1927 'SENDMAIL' => 'SENDMAIL',
1928 'SMTP' => 'SMTP',
1930 'SMTP', // default
1931 xl('Method for sending outgoing email.')
1934 'SMTP_HOST' => array(
1935 xl('SMTP Server Hostname'),
1936 'text', // data type
1937 'localhost', // default
1938 xl('If SMTP is used, the server`s hostname or IP address.')
1941 'SMTP_PORT' => array(
1942 xl('SMTP Server Port Number'),
1943 'num', // data type
1944 '25', // default
1945 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1948 'SMTP_USER' => array(
1949 xl('SMTP User for Authentication'),
1950 'text', // data type
1951 '', // default
1952 xl('Must be empty if SMTP authentication is not used.')
1955 'SMTP_PASS' => array(
1956 xl('SMTP Password for Authentication'),
1957 'text', // data type
1958 '', // default
1959 xl('Must be empty if SMTP authentication is not used.')
1962 'SMTP_SECURE' => array(
1963 xl('SMTP Security Protocol'),
1964 array(
1965 '' => xl('None'),
1966 'ssl' => 'SSL',
1967 'tls' => 'TLS'
1970 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1973 'EMAIL_NOTIFICATION_HOUR' => array(
1974 xl('Email Notification Hours'),
1975 'num', // data type
1976 '50', // default
1977 xl('Number of hours in advance to send email notifications.')
1980 'SMS_NOTIFICATION_HOUR' => array(
1981 xl('SMS Notification Hours'),
1982 'num', // data type
1983 '50', // default
1984 xl('Number of hours in advance to send SMS notifications.')
1987 'SMS_GATEWAY_USENAME' => array(
1988 xl('SMS Gateway Username'),
1989 'text', // data type
1990 '', // default
1991 xl('Username for SMS Gateway.')
1994 'SMS_GATEWAY_PASSWORD' => array(
1995 xl('SMS Gateway Password'),
1996 'text', // data type
1997 '', // default
1998 xl('Password for SMS Gateway.')
2001 'SMS_GATEWAY_APIKEY' => array(
2002 xl('SMS Gateway API Key'),
2003 'text', // data type
2004 '', // default
2005 xl('API key for SMS Gateway.')
2008 'phone_notification_hour' => array(
2009 xl('Phone Notification Hour'),
2010 'num', // data type
2011 '50', // default
2012 xl('Number of hours in advance to send Phone notification.')
2015 'phone_gateway_username' => array(
2016 xl('Phone Gateway Username'),
2017 'text', // data type
2018 '', // default
2019 xl('Username for Phone Gateway.')
2022 'phone_gateway_password' => array(
2023 xl('Phone Gateway Password'),
2024 'text', // data type
2025 '', // default
2026 xl('Password for Phone Gateway.')
2029 'phone_gateway_url' => array(
2030 xl('Phone Gateway URL'),
2031 'text', // data type
2032 '', // default
2033 xl('URL for Phone Gateway.')
2038 // CDR (Clinical Decision Rules)
2040 'CDR' => array(
2042 'enable_cdr' => array(
2043 xl('Enable Clinical Decisions Rules (CDR)'),
2044 'bool', // data type
2045 '1', // default
2046 xl('Enable Clinical Decisions Rules (CDR)')
2049 'enable_allergy_check' => array(
2050 xl('Enable Allergy Check'),
2051 'bool', // data type
2052 '1', // default
2053 xl('Enable Allergy Check Against Medications and Prescriptions')
2056 'enable_alert_log' => array(
2057 xl('Enable Alert Log'),
2058 'bool', // data type
2059 '1', // default
2060 xl('Enable Alert Logging')
2063 'enable_cdr_new_crp' => array(
2064 xl('Enable Clinical Passive New Reminder(s) Popup'),
2065 'bool', // data type
2066 '1', // default
2067 xl('Enable Clinical Passive New Reminder(s) Popup')
2070 'enable_cdr_crw' => array(
2071 xl('Enable Clinical Passive Reminder Widget'),
2072 'bool', // data type
2073 '1', // default
2074 xl('Enable Clinical Passive Reminder Widget')
2077 'enable_cdr_crp' => array(
2078 xl('Enable Clinical Active Reminder Popup'),
2079 'bool', // data type
2080 '1', // default
2081 xl('Enable Clinical Active Reminder Popup')
2084 'enable_cdr_prw' => array(
2085 xl('Enable Patient Reminder Widget'),
2086 'bool', // data type
2087 '1', // default
2088 xl('Enable Patient Reminder Widget')
2091 'enable_cqm' => array(
2092 xl('Enable CQM Reporting'),
2093 'bool', // data type
2094 '1', // default
2095 xl('Enable Clinical Quality Measure (CQM) Reporting')
2098 'pqri_registry_name' => array(
2099 xl('PQRI Registry Name'),
2100 'text', // data type
2101 'Model Registry', // default
2102 xl('PQRI Registry Name')
2105 'pqri_registry_id' => array(
2106 xl('PQRI Registry ID'),
2107 'text', // data type
2108 '125789123', // default
2109 xl('PQRI Registry ID')
2112 'enable_amc' => array(
2113 xl('Enable AMC Reporting'),
2114 'bool', // data type
2115 '1', // default
2116 xl('Enable Automated Measure Calculations (AMC) Reporting')
2119 'enable_amc_prompting' => array(
2120 xl('Enable AMC Prompting'),
2121 'bool', // data type
2122 '1', // default
2123 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
2126 'enable_amc_tracking' => array(
2127 xl('Enable AMC Tracking'),
2128 'bool', // data type
2129 '1', // default
2130 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
2133 'cdr_report_nice' => array(
2134 xl('CDR Reports Processing Priority'),
2135 array(
2136 '' => xl('Default Priority'),
2137 '5' => xl('Moderate Priority'),
2138 '10' => xl('Moderate/Low Priority'),
2139 '15' => xl('Low Priority'),
2140 '20' => xl('Lowest Priority')
2142 '', // default
2143 xl('Set processing priority for CDR engine based reports.')
2146 'pat_rem_clin_nice' => array(
2147 xl('Patient Reminder Creation Processing Priority'),
2148 array(
2149 '' => xl('Default Priority'),
2150 '5' => xl('Moderate Priority'),
2151 '10' => xl('Moderate/Low Priority'),
2152 '15' => xl('Low Priority'),
2153 '20' => xl('Lowest Priority')
2155 '', // default
2156 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2159 'report_itemizing_standard' => array(
2160 xl('Enable Standard Report Itemization'),
2161 'bool', // data type
2162 '1', // default
2163 xl('Enable Itemization of Standard Clinical Rules Reports')
2166 'report_itemizing_cqm' => array(
2167 xl('Enable CQM Report Itemization'),
2168 'bool', // data type
2169 '1', // default
2170 xl('Enable Itemization of CQM Reports')
2173 'report_itemizing_amc' => array(
2174 xl('Enable AMC Report Itemization'),
2175 'bool', // data type
2176 '1', // default
2177 xl('Enable Itemization of AMC Reports')
2179 'dated_reminders_max_alerts_to_show' => array(
2180 xl('Dated reminders maximum alerts to show'),
2181 'num', // data type
2182 '5', // default
2183 xl('Dated reminders maximum alerts to show')
2185 'patient_birthday_alert' => array(
2186 xl('Alert on patient birthday'),
2187 array(
2188 '0' => xl('No alert'),
2189 '1' => xl('Alert only on birthday'),
2190 '2' => xl('Alert on and after birthday'),
2191 '3' => xl('Alert on and up to 28 days after birthday')
2193 '1', // default
2194 xl('Alert on patient birthday')
2196 'patient_birthday_alert_manual_off' => array(
2197 xl('Patient birthday alert requires turning off'),
2198 'bool', // data type
2199 '0', // default
2200 xl('Patient birthday alert requires turning off')
2204 // Logging
2206 'Logging' => array(
2208 'enable_auditlog' => array(
2209 xl('Enable Audit Logging'),
2210 'bool', // data type
2211 '1', // default
2212 xl('Enable Audit Logging')
2215 'audit_events_patient-record' => array(
2216 xl('Audit Logging Patient Record'),
2217 'bool', // data type
2218 '1', // default
2219 xl('Enable logging of patient record modifications.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2222 'audit_events_scheduling' => array(
2223 xl('Audit Logging Scheduling'),
2224 'bool', // data type
2225 '1', // default
2226 xl('Enable logging of scheduling activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2229 'audit_events_order' => array(
2230 xl('Audit Logging Order'),
2231 'bool', // data type
2232 '1', // default
2233 xl('Enable logging of ordering activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2236 'audit_events_security-administration' => array(
2237 xl('Audit Logging Security Administration'),
2238 'bool', // data type
2239 '1', // default
2240 xl('Enable logging of security and administration activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2243 'audit_events_backup' => array(
2244 xl('Audit Logging Backups'),
2245 'bool', // data type
2246 '1', // default
2247 xl('Enable logging of backup related activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2250 'audit_events_other' => array(
2251 xl('Audit Logging Miscellaneous'),
2252 'bool', // data type
2253 '1', // default
2254 xl('Enable logging of miscellaneous activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2257 'audit_events_query' => array(
2258 xl('Audit Logging SELECT Query'),
2259 'bool', // data type
2260 '0', // default
2261 xl('Enable logging of all SQL SELECT queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2264 'audit_events_cdr' => array(
2265 xl('Audit CDR Engine Queries'),
2266 'bool', // data type
2267 '0', // default
2268 xl('Enable logging of CDR Engine Queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2271 'enable_atna_audit' => array(
2272 xl('Enable ATNA Auditing'),
2273 'bool', // data type
2274 '0', // default
2275 xl('Enable Audit Trail and Node Authentication (ATNA).')
2278 'atna_audit_host' => array(
2279 xl('ATNA audit host'),
2280 'text', // data type
2281 '', // default
2282 xl('The hostname of the ATNA audit repository machine.')
2285 'atna_audit_port' => array(
2286 xl('ATNA audit port'),
2287 'text', // data type
2288 '6514', // default
2289 xl('Listening port of the RFC 5425 TLS syslog server.')
2292 'atna_audit_localcert' => array(
2293 xl('ATNA audit local certificate'),
2294 'text', // data type
2295 '', // default
2296 xl('Certificate to send to RFC 5425 TLS syslog server.')
2299 'atna_audit_cacert' => array(
2300 xl('ATNA audit CA certificate'),
2301 'text', // data type
2302 '', // default
2303 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2306 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
2307 'enable_auditlog_encryption' => array(
2308 xl('Enable Audit Log Encryption'),
2309 'bool', // data type
2310 '0', // default
2311 xl('Enable Audit Log Encryption')
2314 'billing_log_option' => array(
2315 xl('Billing Log Option'),
2316 array(
2317 '1' => xl('Billing Log Append'),
2318 '2' => xl('Billing Log Overwrite')
2320 '1', // default
2321 xl('Billing log setting to append or overwrite the log file.')
2324 'gbl_print_log_option' => array(
2325 xl('Printing Log Option'),
2326 array(
2327 '0' => xl('No logging'),
2328 '1' => xl('Hide print feature'),
2329 '2' => xl('Log entire document'),
2331 '0', // default
2332 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2337 // Miscellaneous Tab
2339 'Miscellaneous' => array(
2341 'mysql_bin_dir' => array(
2342 xl('Path to MySQL Binaries'),
2343 'text', // data type
2344 $mysql_bin_dir, // default
2345 xl('Full path to directory containing MySQL executables.')
2348 'perl_bin_dir' => array(
2349 xl('Path to Perl Binaries'),
2350 'text', // data type
2351 $perl_bin_dir, // default
2352 xl('Full path to directory containing Perl executables.')
2355 'temporary_files_dir' => array(
2356 xl('Path to Temporary Files'),
2357 'text', // data type
2358 $temporary_files_dir, // default
2359 xl('Full path to directory used for temporary files.')
2362 'backup_log_dir' => array(
2363 xl('Path for Event Log Backup'),
2364 'text', // data type
2365 $backup_log_dir, // default
2366 xl('Full path to directory for event log backup.')
2369 'state_data_type' => array(
2370 xl('State Data Type'),
2371 array(
2372 '2' => xl('Text field'),
2373 '1' => xl('Single-selection list'),
2374 '26' => xl('Single-selection list with ability to add to the list'),
2376 '26', // default
2377 xl('Field type to use for employer or subscriber state in demographics.')
2380 'state_list' => array(
2381 xl('State list'),
2382 'text', // data type
2383 'state', // default
2384 xl('List used by above State Data Type option.')
2387 'state_custom_addlist_widget' => array(
2388 xl('State List Widget Custom Fields'),
2389 'bool', // data type
2390 '1', // default
2391 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2394 'country_data_type' => array(
2395 xl('Country Data Type'),
2396 array(
2397 '2' => xl('Text field'),
2398 '1' => xl('Single-selection list'),
2399 '26' => xl('Single-selection list with ability to add to the list'),
2401 '26', // default
2402 xl('Field type to use for employer or subscriber country in demographics.')
2405 'country_list' => array(
2406 xl('Country list'),
2407 'text', // data type
2408 'country', // default
2409 xl('List used by above Country Data Type option.')
2412 'print_command' => array(
2413 xl('Print Command'),
2414 'text', // data type
2415 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2416 xl('Shell command for printing from the server.')
2419 'default_chief_complaint' => array(
2420 xl('Default Reason for Visit'),
2421 'text', // data type
2423 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2426 'default_new_encounter_form' => array(
2427 xl('Default Encounter Form ID'),
2428 'text', // data type
2430 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
2433 'MedicareReferrerIsRenderer' => array(
2434 xl('Medicare Referrer Is Renderer'),
2435 'bool', // data type
2436 '0', // default = true
2437 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2440 'post_to_date_benchmark' => array(
2441 xl('Financial Close Date (yyyy-mm-dd)'),
2442 'text', // data type
2443 date('Y-m-d', time() - (10 * 24 * 60 * 60)), // default
2444 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2447 'enable_hylafax' => array(
2448 xl('Enable Hylafax Support'),
2449 'bool', // data type
2450 '0', // default
2451 xl('Enable Hylafax Support')
2454 'hylafax_server' => array(
2455 xl('Hylafax Server'),
2456 'text', // data type
2457 'localhost', // default
2458 xl('Hylafax server hostname.')
2461 'hylafax_basedir' => array(
2462 xl('Hylafax Directory'),
2463 'text', // data type
2464 '/var/spool/hylafax', // default
2465 xl('Location where Hylafax stores faxes.')
2468 'hylafax_enscript' => array(
2469 xl('Hylafax Enscript Command'),
2470 'text', // data type
2471 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2472 xl('Enscript command used by Hylafax.')
2475 'enable_scanner' => array(
2476 xl('Enable Scanner Support'),
2477 'bool', // data type
2478 '0', // default
2479 xl('Enable Scanner Support')
2482 'scanner_output_directory' => array(
2483 xl('Scanner Directory'),
2484 'text', // data type
2485 '/mnt/scan_docs', // default
2486 xl('Location where scans are stored.')
2490 // Portal Tab
2492 'Portal' => array(
2494 'portal_onsite_two_enable' => array(
2495 xl('Enable Version 2 Onsite Patient Portal'),
2496 'bool', // data type
2497 '0',
2498 xl('Enable Version 2 Onsite Patient Portal')
2501 'portal_onsite_two_address' => array(
2502 xl('Version 2 Onsite Patient Portal Site Address'),
2503 'text', // data type
2504 'https://your_web_site.com/openemr/portal',
2505 xl('Website link for the Version 2 Onsite Patient Portal.')
2508 'portal_onsite_two_basepath' => array(
2509 xl('Portal Uses Server Base Path (internal)'),
2510 'bool',
2511 '0',
2512 xl('Use servers protocol and host in urls (portal internal only).')
2515 'portal_onsite_two_register' => array(
2516 xl('Allow Version 2 Onsite New Patient Registration Widget'),
2517 'bool', // data type
2518 '1',
2519 xl('Enable Version 2 Onsite Patient Portal new patient to self register.')
2522 'portal_two_payments' => array(
2523 xl('Allow Version 2 Onsite Online Payments'),
2524 'bool', // data type
2525 '0',
2526 xl('Allow Version 2 Onsite Patient to make payments online.')
2529 'portal_two_pass_reset' => array(
2530 xl('Allow Version 2 Patients to Reset Credentials'),
2531 'bool', // data type
2532 '0',
2533 xl('Patient may change their logon from portal login dialog.')
2536 'portal_onsite_enable' => array(
2537 xl('Enable Version 1 Onsite Patient Portal'),
2538 'bool', // data type
2539 '0',
2540 xl('Enable Version 1 Onsite Patient Portal')
2543 'portal_onsite_address' => array(
2544 xl('Version 1 Onsite Patient Portal Site Address'),
2545 'text', // data type
2546 'https://your_web_site.com/openemr/patients',
2547 xl('Website link for the Version 1 Onsite Patient Portal.')
2550 'portal_onsite_document_download' => array(
2551 xl('Enable Onsite Patient Portal Document Download'),
2552 'bool', // data type
2553 '1',
2554 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2557 'portal_offsite_enable' => array(
2558 xl('Enable Offsite Patient Portal'),
2559 'bool', // data type
2560 '0',
2561 xl('Enable Offsite Patient Portal.')
2563 'portal_offsite_providerid' => array(
2564 xl('Offsite Patient Portal Provider ID'),
2565 'text', // data type
2567 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2570 'portal_offsite_username' => array(
2571 xl('Offsite Patient Portal Username'),
2572 'text', // data type
2574 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2577 'portal_offsite_password' => array(
2578 xl('Offsite Patient Portal Password'),
2579 'pwd', // data type
2581 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2584 'portal_offsite_address' => array(
2585 xl('Offsite Patient Portal Site Address'),
2586 'text', // data type
2587 'https://ssh.mydocsportal.com/provider.php',
2588 xl('Offsite Https link for the Patient Portal.')
2591 'portal_offsite_address_patient_link' => array(
2592 xl('Offsite Patient Portal Site Address (Patient Link)'),
2593 'text', // data type
2594 'https://ssh.mydocsportal.com',
2595 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2598 // Currently the "CMS Portal" supports WordPress. Other Content Management
2599 // Systems may be supported in the future.
2601 'gbl_portal_cms_enable' => array(
2602 xl('Enable CMS Portal'),
2603 'bool', // data type
2604 '0',
2605 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2608 'gbl_portal_cms_address' => array(
2609 xl('CMS Portal Site Address'),
2610 'text', // data type
2611 'https://your_cms_site.com/',
2612 xl('URL for the WordPress site that supports the portal')
2615 'gbl_portal_cms_username' => array(
2616 xl('CMS Portal Username'),
2617 'text', // data type
2619 xl('Login name of WordPress user for portal access')
2622 'gbl_portal_cms_password' => array(
2623 xl('CMS Portal Password'),
2624 'text', // data type
2626 xl('Password for the above user')
2631 // Connectors Tab
2633 'Connectors' => array(
2635 'fhir_enable' => array(
2636 xl('Enable FHIR Provider Client Service'),
2637 array(
2638 0 => xl('Off: No Service.'),
2639 1 => xl('On: HAPI FHIR.'),
2640 2 => xl('On: Smart on FHIR.'),
2642 '0',
2643 xl('Enable FHIR Provider Client Service')
2646 'fhir_base_url' => array(
2647 xl('FHIR Server Base Address'),
2648 'text',
2649 'https://hapi.fhir.org/baseDstu3/',
2650 xl('Base URL for FHIR Server. Url should end with /')
2653 'medex_enable' => array(
2654 xl('Enable MedEx Communication Service'),
2655 'bool', // data type
2656 '0',
2657 xl('Enable MedEx Communication Service')
2660 'erx_enable' => array(
2661 xl('Enable NewCrop eRx Service'),
2662 'bool',
2663 '0',
2664 xl('Enable NewCrop eRx Service.') . ' ' .
2665 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.')
2668 'erx_newcrop_path' => array(
2669 xl('NewCrop eRx Site Address'),
2670 'text',
2671 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2672 xl('URL for NewCrop eRx Site Address.')
2675 'erx_newcrop_path_soap' => array(
2676 xl('NewCrop eRx Web Service Address'),
2677 'text',
2678 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2679 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2682 'erx_soap_ttl_allergies' => array(
2683 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2684 'num',
2685 '21600',
2686 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2689 'erx_soap_ttl_medications' => array(
2690 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2691 'num',
2692 '21600',
2693 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2696 'erx_account_partner_name' => array(
2697 xl('NewCrop eRx Partner Name'),
2698 'text',
2700 xl('Partner Name issued for NewCrop eRx service.')
2703 'erx_account_name' => array(
2704 xl('NewCrop eRx Name'),
2705 'text',
2707 xl('Account Name issued for NewCrop eRx service.')
2710 'erx_account_password' => array(
2711 xl('NewCrop eRx Password'),
2712 'pass',
2714 xl('Account Password issued for NewCrop eRx service.')
2717 'erx_account_id' => array(
2718 xl('NewCrop eRx Account Id'),
2719 'text',
2720 '1',
2721 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2724 'erx_upload_active' => array(
2725 xl('Only upload active prescriptions'),
2726 'bool',
2727 '0',
2728 xl('Only upload active prescriptions to NewCrop eRx.')
2731 'erx_import_status_message' => array(
2732 xl('Enable NewCrop eRx import status message'),
2733 'bool',
2734 '0',
2735 xl('Enable import status message after visiting NewCrop eRx.')
2738 'erx_medication_display' => array(
2739 xl('Do not display NewCrop eRx Medications uploaded'),
2740 'bool',
2741 '0',
2742 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2745 'erx_allergy_display' => array(
2746 xl('Do not display NewCrop eRx Allergy uploaded'),
2747 'bool',
2748 '0',
2749 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2752 'erx_default_patient_country' => array(
2753 xl('NewCrop eRx Default Patient Country'),
2754 array(
2755 '' => '',
2756 'US' => xl('USA'),
2757 'CA' => xl('Canada'),
2758 'MX' => xl('Mexico'),
2761 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2764 'erx_debug_setting' => array(
2765 xl('NewCrop eRx Debug Setting'),
2766 array(
2767 0 => xl('None'),
2768 1 => xl('Request Only'),
2769 2 => xl('Response Only'),
2770 3 => xl('Request & Response'),
2772 '0',
2773 xl('Log all NewCrop eRx Requests and / or Responses.'),
2776 'weno_rx_enable' => array(
2777 xl('Enable Weno eRx Service'),
2778 'bool',
2779 '0',
2780 xl('Enable Weno eRx Service') . ' ' . xl('Contact Open Med Practice, www.openmedpractice.com for subscribing to the Weno Free eRx service.')
2783 'weno_account_id' => array(
2784 xl('Weno eRx Account Id'),
2785 'text',
2786 '137',
2787 xl('Account Id issued for Weno eRx service.')
2790 'weno_account_pass' => array(
2791 xl('Weno eRx Account Pass'),
2792 'text',
2793 '7C84773D5063B20BC9E41636A091C6F17E9C1E34',
2794 xl('Account Id issued for Weno eRx service.')
2797 'weno_provider_id' => array(
2798 xl('Weno eRx Clinic ID'),
2799 'text',
2800 'C36275',
2801 xl('Account Id issued for Your clinics eRx service.')
2804 'ccda_alt_service_enable' => array(
2805 xl('Enable C-CDA Alternate Service'),
2806 array(
2807 0 => xl('Off'),
2808 1 => xl('Care Coordination Only'),
2809 2 => xl('Portal Only'),
2810 3 => xl('Both'),
2812 '0',
2813 xl('Enable C-CDA Alternate Service')
2816 'phimail_enable' => array(
2817 xl('Enable phiMail Direct Messaging Service'),
2818 'bool', // data type
2819 '0',
2820 xl('Enable phiMail Direct Messaging Service')
2823 'phimail_server_address' => array(
2824 xl('phiMail Server Address'),
2825 'text', // data type
2826 'https://phimail.example.com:32541',
2827 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2830 'phimail_username' => array(
2831 xl('phiMail Username'),
2832 'text', // data type
2834 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2837 'phimail_password' => array(
2838 xl('phiMail Password'),
2839 'pass', // data type
2841 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2844 'phimail_notify' => array(
2845 xl('phiMail notification user'),
2846 'text', // data type
2847 'admin',
2848 xl('This user will receive notification of new incoming Direct messages')
2851 'phimail_interval' => array(
2852 xl('phiMail Message Check Interval (minutes)'),
2853 'num', // data type
2854 '5',
2855 xl('Interval between message checks (set to zero for manual checks only)')
2858 'phimail_ccd_enable' => array(
2859 xl('phiMail Allow CCD Send'),
2860 'bool', // data type
2861 '0',
2862 xl('phiMail Allow CCD Send')
2865 'phimail_ccr_enable' => array(
2866 xl('phiMail Allow CCR Send'),
2867 'bool', // data type
2868 '0',
2869 xl('phiMail Allow CCR Send')
2873 'Rx' => array(
2874 'rx_enable_DEA' => array(
2875 xl('Rx Enable DEA #'),
2876 'bool', // data type
2877 '1',
2878 xl('Rx Enable DEA #')
2880 'rx_show_DEA' => array(
2881 xl('Rx Show DEA #'),
2882 'bool', // data type
2883 '0',
2884 xl('Rx Show DEA #')
2886 'rx_enable_NPI' => array(
2887 xl('Rx Enable NPI'),
2888 'bool', // data type
2889 '0',
2890 xl('Rx Enable NPI')
2892 'rx_show_NPI' => array(
2893 xl('Rx Show NPI'),
2894 'bool', // data type
2895 '0',
2896 xl('Rx Show NPI')
2898 'rx_enable_SLN' => array(
2899 xl('Rx Enable State Lic. #'),
2900 'bool', // data type
2901 '0',
2902 xl('Rx Enable State Lic. #')
2904 'rx_show_SLN' => array(
2905 xl('Rx Show State Lic. #'),
2906 'bool', // data type
2907 '0',
2908 xl('Rx Show State Lic. #')
2910 'rx_show_drug-drug' => array(
2911 xl('Rx NLM Drug-Drug'),
2912 'bool', // data type
2913 '0',
2914 xl('Rx NLM Drug-Drug')
2916 'rx_paper_size' => array(
2917 xl('Rx Paper Size'), // descriptive name
2918 array(
2919 'LETTER' => xl('Letter Paper Size'),
2920 'LEGAL' => xl('Legal Paper Size'),
2921 'FOLIO' => xl('Folio Paper Size'),
2922 'EXECUTIVE' => xl('Executive Paper Size'),
2923 '4A0' => ('4A0' . " " . xl('Paper Size')),
2924 '2A0' => ('2A0' . " " . xl('Paper Size')),
2925 'A0' => ('A0' . " " . xl('Paper Size')),
2926 'A1' => ('A1' . " " . xl('Paper Size')),
2927 'A2' => ('A2' . " " . xl('Paper Size')),
2928 'A3' => ('A3' . " " . xl('Paper Size')),
2929 'A4' => ('A4' . " " . xl('Paper Size')),
2930 'A5' => ('A5' . " " . xl('Paper Size')),
2931 'A6' => ('A6' . " " . xl('Paper Size')),
2932 'A7' => ('A7' . " " . xl('Paper Size')),
2933 'A8' => ('A8' . " " . xl('Paper Size')),
2934 'A9' => ('A9' . " " . xl('Paper Size')),
2935 'A10' => ('A10' . " " . xl('Paper Size')),
2936 'B0' => ('B0' . " " . xl('Paper Size')),
2937 'B1' => ('B1' . " " . xl('Paper Size')),
2938 'B2' => ('B2' . " " . xl('Paper Size')),
2939 'B3' => ('B3' . " " . xl('Paper Size')),
2940 'B4' => ('B4' . " " . xl('Paper Size')),
2941 'B5' => ('B5' . " " . xl('Paper Size')),
2942 'B6' => ('B6' . " " . xl('Paper Size')),
2943 'B7' => ('B7' . " " . xl('Paper Size')),
2944 'B8' => ('B8' . " " . xl('Paper Size')),
2945 'B9' => ('B9' . " " . xl('Paper Size')),
2946 'B10' => ('B10' . " " . xl('Paper Size')),
2947 'C0' => ('C0' . " " . xl('Paper Size')),
2948 'C1' => ('C1' . " " . xl('Paper Size')),
2949 'C2' => ('C2' . " " . xl('Paper Size')),
2950 'C3' => ('C3' . " " . xl('Paper Size')),
2951 'C4' => ('C4' . " " . xl('Paper Size')),
2952 'C5' => ('C5' . " " . xl('Paper Size')),
2953 'C6' => ('C6' . " " . xl('Paper Size')),
2954 'C7' => ('C7' . " " . xl('Paper Size')),
2955 'C8' => ('C8' . " " . xl('Paper Size')),
2956 'C9' => ('C9' . " " . xl('Paper Size')),
2957 'C10' => ('C10' . " " . xl('Paper Size')),
2958 'RA0' => ('RA0' . " " . xl('Paper Size')),
2959 'RA1' => ('RA1' . " " . xl('Paper Size')),
2960 'RA2' => ('RA2' . " " . xl('Paper Size')),
2961 'RA3' => ('RA3' . " " . xl('Paper Size')),
2962 'RA4' => ('RA4' . " " . xl('Paper Size')),
2963 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2964 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2965 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2966 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2967 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2969 'LETTER', // default = tree menu
2970 xl('Rx Paper Size')
2972 'rx_left_margin' => array(
2973 xl('Rx Left Margin (px)'),
2974 'num',
2975 '30',
2976 xl('Rx Left Margin (px)')
2978 'rx_right_margin' => array(
2979 xl('Rx Right Margin (px)'),
2980 'num',
2981 '30',
2982 xl('Rx Right Margin (px)')
2984 'rx_top_margin' => array(
2985 xl('Rx Top Margin (px)'),
2986 'num',
2987 '72',
2988 xl('Rx Top Margin (px)')
2990 'rx_bottom_margin' => array(
2991 xl('Rx Bottom Margin (px)'),
2992 'num',
2993 '30',
2994 xl('Rx Bottom Margin (px)')
2998 'PDF' => array(
2999 'pdf_layout' => array(
3000 xl('Layout'),
3001 array(
3002 'P' => xl('Portrait'),
3003 'L' => xl('Landscape')
3005 'P', //defaut
3006 xl("Choose Layout Direction"),
3008 'pdf_language' => array(
3009 xl('PDF Language'),
3010 array(
3011 'aa' => xl('Afar'),
3012 'af' => xl('Afrikaans'),
3013 'ak' => xl('Akan'),
3014 'sq' => xl('Albanian'),
3015 'am' => xl('Amharic'),
3016 'ar' => xl('Arabic'),
3017 'an' => xl('Aragonese'),
3018 'hy' => xl('Armenian'),
3019 'as' => xl('Assamese'),
3020 'av' => xl('Avaric'),
3021 'ae' => xl('Avestan'),
3022 'ay' => xl('Aymara'),
3023 'az' => xl('Azerbaijani'),
3024 'bm' => xl('Bambara'),
3025 'ba' => xl('Bashkir'),
3026 'eu' => xl('Basque'),
3027 'be' => xl('Belarusian'),
3028 'bn' => xl('Bengali- Bangla'),
3029 'bh' => xl('Bihari'),
3030 'bi' => xl('Bislama'),
3031 'bs' => xl('Bosnian'),
3032 'br' => xl('Breton'),
3033 'bg' => xl('Bulgarian'),
3034 'my' => xl('Burmese'),
3035 'ca' => xl('Catalan- Valencian'),
3036 'ch' => xl('Chamorro'),
3037 'ce' => xl('Chechen'),
3038 'ny' => xl('Chichewa- Chewa- Nyanja'),
3039 'zh' => xl('Chinese'),
3040 'cv' => xl('Chuvash'),
3041 'kw' => xl('Cornish'),
3042 'co' => xl('Corsican'),
3043 'cr' => xl('Cree'),
3044 'hr' => xl('Croatian'),
3045 'cs' => xl('Czech'),
3046 'da' => xl('Danish'),
3047 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
3048 'nl' => xl('Dutch'),
3049 'dz' => xl('Dzongkha'),
3050 'en' => xl('English'),
3051 'eo' => xl('Esperanto'),
3052 'et' => xl('Estonian'),
3053 'ee' => xl('Ewe'),
3054 'fo' => xl('Faroese'),
3055 'fj' => xl('Fijian'),
3056 'fi' => xl('Finnish'),
3057 'fr' => xl('French'),
3058 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
3059 'gl' => xl('Galician'),
3060 'ka' => xl('Georgian'),
3061 'de' => xl('German'),
3062 'el' => xl('Greek, Modern'),
3063 'gn' => xl('Guarani'),
3064 'gu' => xl('Gujarati'),
3065 'ht' => xl('Haitian- Haitian Creole'),
3066 'ha' => xl('Hausa'),
3067 'he' => xl('Hebrew (modern)'),
3068 'hz' => xl('Herero'),
3069 'hi' => xl('Hindi'),
3070 'ho' => xl('Hiri Motu'),
3071 'hu' => xl('Hungarian'),
3072 'ia' => xl('Interlingua'),
3073 'id' => xl('Indonesian'),
3074 'ie' => xl('Interlingue'),
3075 'ga' => xl('Irish'),
3076 'ig' => xl('Igbo'),
3077 'ik' => xl('Inupiaq'),
3078 'io' => xl('Ido'),
3079 'is' => xl('Icelandic'),
3080 'it' => xl('Italian'),
3081 'iu' => xl('Inuktitut'),
3082 'ja' => xl('Japanese'),
3083 'jv' => xl('Javanese'),
3084 'kl' => xl('Kalaallisut, Greenlandic'),
3085 'kn' => xl('Kannada'),
3086 'kr' => xl('Kanuri'),
3087 'ks' => xl('Kashmiri'),
3088 'kk' => xl('Kazakh'),
3089 'km' => xl('Khmer'),
3090 'ki' => xl('Kikuyu, Gikuyu'),
3091 'rw' => xl('Kinyarwanda'),
3092 'ky' => xl('Kyrgyz'),
3093 'kv' => xl('Komi'),
3094 'kg' => xl('Kongo'),
3095 'ko' => xl('Korean'),
3096 'ku' => xl('Kurdish'),
3097 'kj' => xl('Kwanyama, Kuanyama'),
3098 'la' => xl('Latin'),
3099 'lb' => xl('Luxembourgish, Letzeburgesch'),
3100 'lg' => xl('Ganda'),
3101 'li' => xl('Limburgish, Limburgan, Limburger'),
3102 'ln' => xl('Lingala'),
3103 'lo' => xl('Lao'),
3104 'lt' => xl('Lithuanian'),
3105 'lu' => xl('Luba-Katanga'),
3106 'lv' => xl('Latvian'),
3107 'gv' => xl('Manx'),
3108 'mk' => xl('Macedonian'),
3109 'mg' => xl('Malagasy'),
3110 'ms' => xl('Malay'),
3111 'ml' => xl('Malayalam'),
3112 'mt' => xl('Maltese'),
3113 'mi' => xl('Maori'),
3114 'mr' => xl('Marathi (Marathi)'),
3115 'mh' => xl('Marshallese'),
3116 'mn' => xl('Mongolian'),
3117 'na' => xl('Nauru'),
3118 'nv' => xl('Navajo, Navaho'),
3119 'nb' => xl('Norwegian Bokmal'),
3120 'nd' => xl('North Ndebele'),
3121 'ne' => xl('Nepali'),
3122 'ng' => xl('Ndonga'),
3123 'nn' => xl('Norwegian Nynorsk'),
3124 'no' => xl('Norwegian'),
3125 'ii' => xl('Nuosu'),
3126 'nr' => xl('South Ndebele'),
3127 'oc' => xl('Occitan'),
3128 'oj' => xl('Ojibwe, Ojibwa'),
3129 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
3130 'om' => xl('Oromo'),
3131 'or' => xl('Oriya'),
3132 'os' => xl('Ossetian, Ossetic'),
3133 'pa' => xl('Panjabi, Punjabi'),
3134 'pi' => xl('Pali'),
3135 'fa' => xl('Persian (Farsi)'),
3136 'pl' => xl('Polish'),
3137 'ps' => xl('Pashto, Pushto'),
3138 'pt' => xl('Portuguese'),
3139 'qu' => xl('Quechua'),
3140 'rm' => xl('Romansh'),
3141 'rn' => xl('Kirundi'),
3142 'ro' => xl('Romanian'),
3143 'ru' => xl('Russian'),
3144 'sa' => xl('Sanskrit (Samskrta)'),
3145 'sc' => xl('Sardinian'),
3146 'sd' => xl('Sindhi'),
3147 'se' => xl('Northern Sami'),
3148 'sm' => xl('Samoan'),
3149 'sg' => xl('Sango'),
3150 'sr' => xl('Serbian'),
3151 'gd' => xl('Scottish Gaelic- Gaelic'),
3152 'sn' => xl('Shona'),
3153 'si' => xl('Sinhala, Sinhalese'),
3154 'sk' => xl('Slovak'),
3155 'sl' => xl('Slovene'),
3156 'so' => xl('Somali'),
3157 'st' => xl('Southern Sotho'),
3158 'es' => xl('Spanish- Castilian'),
3159 'su' => xl('Sundanese'),
3160 'sw' => xl('Swahili'),
3161 'ss' => xl('Swati'),
3162 'sv' => xl('Swedish'),
3163 'ta' => xl('Tamil'),
3164 'te' => xl('Telugu'),
3165 'tg' => xl('Tajik'),
3166 'th' => xl('Thai'),
3167 'ti' => xl('Tigrinya'),
3168 'bo' => xl('Tibetan Standard, Tibetan, Central'),
3169 'tk' => xl('Turkmen'),
3170 'tl' => xl('Tagalog'),
3171 'tn' => xl('Tswana'),
3172 'to' => xl('Tonga (Tonga Islands)'),
3173 'tr' => xl('Turkish'),
3174 'ts' => xl('Tsonga'),
3175 'tt' => xl('Tatar'),
3176 'tw' => xl('Twi'),
3177 'ty' => xl('Tahitian'),
3178 'ug' => xl('Uyghur, Uighur'),
3179 'uk' => xl('Ukrainian'),
3180 'ur' => xl('Urdu'),
3181 'uz' => xl('Uzbek'),
3182 've' => xl('Venda'),
3183 'vi' => xl('Vietnamese'),
3184 'vo' => xl('Volapuk'),
3185 'wa' => xl('Walloon'),
3186 'cy' => xl('Welsh'),
3187 'wo' => xl('Wolof'),
3188 'fy' => xl('Western Frisian'),
3189 'xh' => xl('Xhosa'),
3190 'yi' => xl('Yiddish'),
3191 'yo' => xl('Yoruba'),
3192 'za' => xl('Zhuang, Chuang'),
3193 'zu' => xl('Zulu'),
3195 'en', // default English
3196 xl('Choose PDF languange Preference'),
3198 'pdf_size' => array(
3199 xl('Paper Size'), // Descriptive Name
3200 array(
3201 'LETTER' => xl('Letter Paper Size'),
3202 'LEGAL' => xl('Legal Paper Size'),
3203 'FOLIO' => xl('Folio Paper Size'),
3204 'EXECUTIVE' => xl('Executive Paper Size'),
3205 '4A0' => ('4A0' . " " . xl('Paper Size')),
3206 '2A0' => ('2A0' . " " . xl('Paper Size')),
3207 'A0' => ('A0' . " " . xl('Paper Size')),
3208 'A1' => ('A1' . " " . xl('Paper Size')),
3209 'A2' => ('A2' . " " . xl('Paper Size')),
3210 'A3' => ('A3' . " " . xl('Paper Size')),
3211 'A4' => ('A4' . " " . xl('Paper Size')),
3212 'A5' => ('A5' . " " . xl('Paper Size')),
3213 'A6' => ('A6' . " " . xl('Paper Size')),
3214 'A7' => ('A7' . " " . xl('Paper Size')),
3215 'A8' => ('A8' . " " . xl('Paper Size')),
3216 'A9' => ('A9' . " " . xl('Paper Size')),
3217 'A10' => ('A10' . " " . xl('Paper Size')),
3218 'B0' => ('B0' . " " . xl('Paper Size')),
3219 'B1' => ('B1' . " " . xl('Paper Size')),
3220 'B2' => ('B2' . " " . xl('Paper Size')),
3221 'B3' => ('B3' . " " . xl('Paper Size')),
3222 'B4' => ('B4' . " " . xl('Paper Size')),
3223 'B5' => ('B5' . " " . xl('Paper Size')),
3224 'B6' => ('B6' . " " . xl('Paper Size')),
3225 'B7' => ('B7' . " " . xl('Paper Size')),
3226 'B8' => ('B8' . " " . xl('Paper Size')),
3227 'B9' => ('B9' . " " . xl('Paper Size')),
3228 'B10' => ('B10' . " " . xl('Paper Size')),
3229 'C0' => ('C0' . " " . xl('Paper Size')),
3230 'C1' => ('C1' . " " . xl('Paper Size')),
3231 'C2' => ('C2' . " " . xl('Paper Size')),
3232 'C3' => ('C3' . " " . xl('Paper Size')),
3233 'C4' => ('C4' . " " . xl('Paper Size')),
3234 'C5' => ('C5' . " " . xl('Paper Size')),
3235 'C6' => ('C6' . " " . xl('Paper Size')),
3236 'C7' => ('C7' . " " . xl('Paper Size')),
3237 'C8' => ('C8' . " " . xl('Paper Size')),
3238 'C9' => ('C9' . " " . xl('Paper Size')),
3239 'C10' => ('C10' . " " . xl('Paper Size')),
3240 'RA0' => ('RA0' . " " . xl('Paper Size')),
3241 'RA1' => ('RA1' . " " . xl('Paper Size')),
3242 'RA2' => ('RA2' . " " . xl('Paper Size')),
3243 'RA3' => ('RA3' . " " . xl('Paper Size')),
3244 'RA4' => ('RA4' . " " . xl('Paper Size')),
3245 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3246 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3247 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3248 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3249 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3251 'LETTER',
3252 xl('Choose Paper Size')
3254 'pdf_left_margin' => array(
3255 xl('Left Margin (mm)'),
3256 'num',
3257 '5',
3258 xl('Left Margin (mm)')
3260 'pdf_right_margin' => array(
3261 xl('Right Margin (mm)'),
3262 'num',
3263 '5',
3264 xl('Right Margin (mm)')
3266 'pdf_top_margin' => array(
3267 xl('Top Margin (mm)'),
3268 'num',
3269 '5',
3270 xl('Top Margin (mm)')
3272 'pdf_bottom_margin' => array(
3273 xl('Bottom Margin (px)'),
3274 'num',
3275 '8',
3276 xl('Bottom Margin (px)')
3278 'pdf_output' => array(
3279 xl('Output Type'),
3280 array(
3281 'D' => xl('Download'),
3282 'I' => xl('Inline')
3284 'D', //defaut
3285 xl("Choose Download or Display Inline"),
3288 'chart_label_type' => array(
3289 xl('Patient Label Type'),
3290 array(
3291 '0' => xl('None'),
3292 '1' => '5160',
3293 '2' => '5161',
3294 '3' => '5162'
3296 '1', // default
3297 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3300 'barcode_label_type' => array(
3301 xl('Barcode Label Type'),
3302 array(
3303 '0' => xl('None'),
3304 '1' => 'std25',
3305 '2' => 'int25',
3306 '3' => 'ean8',
3307 '4' => 'ean13',
3308 '5' => 'upc',
3309 '6' => 'code11',
3310 '7' => 'code39',
3311 '8' => 'code93',
3312 '9' => 'code128',
3313 '10' => 'codabar',
3314 '11' => 'msi',
3315 '12' => 'datamatrix'
3317 '9', // default = None
3318 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3321 'addr_label_type' => array(
3322 xl('Print Patient Address Label'),
3323 'bool', // data type
3324 '1', // default = false
3325 xl('Select to print patient address labels from popups in left nav screen.')
3328 'env_x_width' => array(
3329 xl('Envelope Width in mm'),
3330 'num', // data type
3331 '104.775',
3332 xl('In Portrait mode, determines the width of the envelope along the x-axis in mm')
3335 'env_y_height' => array(
3336 xl('Envelope Height in mm'),
3337 'num', // data type
3338 '241.3',
3339 xl('In Portrait mode, determines the height of the envelope along the y-axis in mm')
3342 'env_font_size' => array(
3343 xl('Font Size in Pt'),
3344 'num', // data type
3345 '14',
3346 xl('Sets the font of the address text on the envelope in mm')
3349 'env_x_dist' => array(
3350 xl('Envelope x-axis starting pt'),
3351 'num', // data type
3352 '65',
3353 xl('Distance from the \'top\' of the envelope in mm')
3356 'env_y_dist' => array(
3357 xl('Envelope y-axis starting pt'),
3358 'num', // data type
3359 '220',
3360 xl('Distance from the right most edge of the envelope in portrait position in mm')