Display fix: width in manila for demographics (#1909)
[openemr.git] / library / globals.inc.php
blob90c62c17acea9474d5b5a6eab9b2c7de0f4e14b1
1 <?php
2 /*
3 * This program sets the global variables.
5 * @package OpenEMR
6 * @author Rod Roark <rod@sunsetsystems.com>
7 * @author Stephen Waite <stephen.waite@cmsvt.com>
8 * @copyright Copyright (c) 2015 Rod Roark <rod@sunsetsystems.com>
9 * @copyright Copyright (c) 2018 Stephen Waite <stephen.waite@cmsvt.com>
10 * @link https://github.com/openemr/openemr/tree/master
11 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
14 // $GLOBALS['print_command'] is the
15 // Print command for spooling to printers, used by statements.inc.php
16 // This is the command to be used for printing (without the filename).
17 // The word following "-P" should be the name of your printer. This
18 // example is designed for 8.5x11-inch paper with 1-inch margins,
19 // 10 CPI, 6 LPI, 65 columns, 54 lines per page.
21 // IF lpr services are installed on Windows this setting will be similar
22 // Otherwise configure it as needed (print /d:PRN) might be an option for Windows parallel printers
24 // Current supported languages: // Allow capture of term for translation:
25 // Albanian // xl('Albanian')
26 // Amharic // xl('Amharic')
27 // Arabic // xl('Arabic')
28 // Armenian // xl('Armenian')
29 // Bahasa Indonesia // xl('Bahasa Indonesia')
30 // Bengali // xl('Bengali')
31 // Bosnian // xl('Bosnian')
32 // Bulgarian // xl('Bulgarian')
33 // Chinese (Simplified) // xl('Chinese (Simplified)')
34 // Chinese (Traditional) // xl('Chinese (Traditional)')
35 // Croatian // xl('Croatian')
36 // Czech // xl('Czech')
37 // Danish // xl('Danish')
38 // Dutch // xl('Dutch')
39 // English (Indian) // xl('English (Indian)')
40 // English (Standard) // xl('English (Standard)')
41 // Estonian // xl('Estonian')
42 // Filipino // xl('Filipino')
43 // Finnish // xl('Finnish')
44 // French // xl('French (Standard)')
45 // French // xl('French (Canadian)')
46 // Georgian // xl('Georgian')
47 // German // xl('German')
48 // Greek // xl('Greek')
49 // Hebrew // xl('Hebrew')
50 // Hindi // xl('Hindi')
51 // Hungarian // xl('Hungarian')
52 // Italian // xl('Italian')
53 // Japanese // xl('Japanese')
54 // Korean // xl('Korean')
55 // Lithuanian // xl('Lithuanian')
56 // Marathi // xl('Marathi')
57 // Mongolian // xl('Mongolian')
58 // Norwegian // xl('Norwegian')
59 // Persian // xl('Persian')
60 // Polish // xl('Polish')
61 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
62 // Portuguese (European) // xl('Portuguese (European)')
63 // Romanian // xl('Romanian')
64 // Russian // xl('Russian')
65 // Serbian // xl('Serbian')
66 // Sinhala // xl('Sinhala')
67 // Slovak // xl('Slovak')
68 // Somali // xl('Somali')
69 // Spanish (Latin American) // xl('Spanish (Latin American)')
70 // Spanish (Spain) // xl('Spanish (Spain)')
71 // Swedish // xl('Swedish')
72 // Tamil // xl('Tamil')
73 // Telugu // xl('Telugu')
74 // Thai // xl('Thai')
75 // Turkish // xl('Turkish')
76 // Ukrainian // xl('Ukrainian')
77 // Urdu // xl('Urdu')
78 // Vietnamese // xl('Vietnamese')
80 // OS-dependent stuff.
81 if (stristr(PHP_OS, 'WIN')) {
82 // MS Windows
83 $mysql_bin_dir = 'C:/xampp/mysql/bin';
84 $perl_bin_dir = 'C:/xampp/perl/bin';
85 $temporary_files_dir = 'C:/windows/temp';
86 $backup_log_dir = 'C:/windows/temp';
87 } else {
88 // Everything else
89 $mysql_bin_dir = '/usr/bin';
90 $perl_bin_dir = '/usr/bin';
91 $temporary_files_dir = '/tmp';
92 $backup_log_dir = '/tmp';
95 // Language constant declarations:
96 // xl('Appearance')
97 // xl('Locale')
98 // xl('Features')
99 // xl('Calendar')
100 // xl('Security')
101 // xl('Notifications')
102 // xl('Miscellaneous')
104 // List of user specific tabs and globals
105 $USER_SPECIFIC_TABS = array('Appearance',
106 'Locale',
107 'Features',
108 'Report',
109 'Calendar',
110 'CDR',
111 'Connectors');
112 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
113 'default_second_tab',
114 'new_tabs_layout',
115 'theme_tabs_layout',
116 'css_header',
117 'menu_styling_vertical',
118 'default_encounter_view',
119 'gbl_pt_list_page_size',
120 'gbl_pt_list_new_window',
121 'units_of_measurement',
122 'us_weight_format',
123 'date_display_format',
124 'time_display_format',
125 'enable_help',
126 'messages_due_date',
127 'expand_form',
128 'ledger_begin_date',
129 'print_next_appointment_on_ledger',
130 'calendar_view_type',
131 'event_color',
132 'pat_trkr_timer',
133 'ptkr_visit_reason',
134 'ptkr_date_range',
135 'ptkr_start_date',
136 'ptkr_end_date',
137 'checkout_roll_off',
138 'patient_birthday_alert',
139 'patient_birthday_alert_manual_off',
140 'erx_import_status_message');
142 // Gets array of time zones supported by PHP.
144 function gblTimeZones()
146 $zones = timezone_identifiers_list();
147 $arr = array('' => xl('Unassigned'));
148 foreach ($zones as $zone) {
149 $arr[$zone] = str_replace('_', ' ', $zone);
152 return $arr;
155 $GLOBALS_METADATA = array(
157 // Appearance Tab
159 'Appearance' => array(
161 'default_top_pane' => array(
162 xl('Main Top Pane Screen(Or Default First Tab)'), // descriptive name
163 array(
164 'main_info.php' => xl('Calendar Screen'),
165 '../new/new.php' => xl('Patient Search/Add Screen'),
166 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
167 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
168 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen')
170 'main_info.php', // default = calendar
171 xl('Main Top Pane Screen(Or Default First Tab)')
174 'default_second_tab' => array(
175 xl('Default Second Tab'), // descriptive name
176 array(
177 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen'),
178 'main_info.php' => xl('Calendar Screen'),
179 '../new/new.php' => xl('Patient Search/Add Screen'),
180 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
181 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
183 '../../interface/main/messages/messages.php?form_active=1', // default = messages
184 xl('Default Second Tab')
187 'new_tabs_layout' => array(
188 xl('Layout (need to logout/login after change this setting)'),
189 array(
190 '0' => xl('Frame'),
191 '1' => xl('Tabs'),
193 '1',
194 xl('Choose the layout (need to logout and then login to see this new setting).')
197 'theme_tabs_layout' => array(
198 xl('Tabs Layout Theme (need to logout/login after change this setting)'),
199 'tabs_css',
200 'tabs_style_full.css',
201 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.')
204 'css_header' => array(
205 xl('General Theme (need to logout/login after change this setting)'),
206 'css',
207 'style_light.css',
208 xl('Pick a general theme (need to logout/login after change this setting).')
211 'font-family' => array(
212 xl('Default font (need to logout/login after change this setting)'),
213 array(
214 '__default__' => 'Use Theme Font',
215 'Arial, Helvetica, sans-serif' => "Arial",
216 '"Arial Black", Gadget, sans-serif' => "Arial Black",
217 'Impact, Charcoal, sans-serif' => "Impact",
218 '"Lucida Sans Unicode", "Lucida Grande", sans-serif' => "Lucida Sans",
219 'Tahoma, Geneva, sans-serif' => "Tahoma",
220 '"Trebuchet MS", Helvetica, sans-serif' => "Trebuchet MS",
221 'Verdana, Geneva, sans-serif' => "Verdana",
222 'lato' => "Lato",
224 '__default__',
225 xl('Select the default font'),
228 'font-size' => array(
229 xl('Default font size (need to logout/login after change this setting)'),
230 array(
231 '__default__' => 'Use Theme Font Size',
232 '10px' => '10px',
233 '12px' => '12px',
234 '14px' => '14px',
235 '16px' => '16px',
236 '18px' => '18px',
238 '__default__',
239 xl("Select the default font size"),
242 'menu_styling_vertical' => array(
243 xl('Vertical Menu Style'),
244 array(
245 '0' => xl('Tree'),
246 '1' => xl('Sliding'),
248 '1',
249 xl('Vertical Menu Style')
252 'default_encounter_view' => array(
253 xl('Default Encounter View'), // descriptive name
254 array(
255 '0' => xl('Clinical View'),
256 '1' => xl('Billing View'),
258 '0', // default = tree menu
259 xl('Choose your default encounter view')
262 'gbl_nav_area_width' => array(
263 xl('Navigation Area Width'),
264 'num',
265 '175',
266 xl('Width in pixels of the left navigation frame.')
269 'openemr_name' => array(
270 xl('Application Title'),
271 'text',
272 'OpenEMR',
273 xl('Application name for login page and main window title.')
276 'enable_group_therapy' => array(
277 xl('Enable Group Therapy'),
278 'bool', // data type
279 '0', // default = false
280 xl('Enables groups module in system.')
283 'full_new_patient_form' => array(
284 xl('New Patient Form'),
286 array(
287 '0' => xl('Old-style static form without search or duplication check'),
288 '1' => xl('All demographics fields, with search and duplication check'),
289 '2' => xl('Mandatory or specified fields only, search and dup check'),
290 '3' => xl('Mandatory or specified fields only, dup check, no search'),
291 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
293 '1', // default
294 xl('Style of form used for adding new patients')
297 'gbl_edit_patient_form' => array(
298 xl('Modify Patient Form'),
300 array(
301 '0' => xl('Standard check'),
302 '1' => xl('Zend Module check in addition to standard check')
304 '0', // default
305 xl('Validation mechanism for when modifying patient demographics.')
308 'patient_search_results_style' => array(
309 xl('Patient Search Results Style'),
310 array(
311 '0' => xl('Encounter statistics'),
312 '1' => xl('Mandatory and specified fields'),
314 '0', // default
315 xl('Type of columns displayed for patient search results')
318 'gbl_tall_nav_area' => array(
319 xl('Tall Navigation Area'),
320 'bool', // data type
321 '0', // default = false
322 xl('Navigation area uses full height of frameset')
325 'gbl_nav_visit_forms' => array(
326 xl('Navigation Area Visit Forms'),
327 'bool', // data type
328 '1', // default = true
329 xl('Navigation area includes encounter forms')
332 'simplified_demographics' => array(
333 xl('Simplified Demographics'),
334 'bool', // data type
335 '0', // default = false
336 xl('Omit insurance and some other things from the demographics form')
339 'simplified_prescriptions' => array(
340 xl('Simplified Prescriptions'),
341 'bool', // data type
342 '0', // default = false
343 xl('Omit form, route and interval which then become part of dosage')
346 'simplified_copay' => array(
347 xl('Simplified Co-Pay'),
348 'bool', // data type
349 '0', // default = false
350 xl('Omit method of payment from the co-pay panel')
353 'use_charges_panel' => array(
354 xl('Use Charges Panel'),
355 'bool', // data type
356 '0', // default = false
357 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
360 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
361 'enable_fees_in_left_menu' => array(
362 xl('Enable Fees Submenu'),
363 'bool', // data type
364 '1', // default = true
365 xl('Enable Fees Submenu')
367 'enable_batch_payment' => array(
368 xl('Enable Batch Payment'),
369 'bool', // data type
370 '1', // default = true
371 xl('Enable Batch Payment')
373 'enable_posting' => array(
374 xl('Enable Posting'),
375 'bool', // data type
376 '1', // default = true
377 xl('Enable Posting')
379 // EDI history 2012-09-13
380 'enable_edihistory_in_left_menu' => array(
381 xl('Enable EDI History'),
382 'bool', // data type
383 '1', // default = true
384 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
387 'online_support_link' => array(
388 xl('Online Support Link'),
389 'text', // data type
390 'http://open-emr.org/',
391 xl('URL for OpenEMR support.')
394 'support_phone_number' => array(
395 xl('Support Phone Number'),
396 'text',
398 xl('Phone Number for Vendor Support that Appears on the About Page.')
401 'encounter_page_size' => array(
402 xl('Encounter Page Size'),
403 array(
404 '0' => xl('Show All'),
405 '5' => '5',
406 '10' => '10',
407 '15' => '15',
408 '20' => '20',
409 '25' => '25',
410 '50' => '50',
412 '20',
413 xl('Number of encounters to display per page.')
416 'gbl_pt_list_page_size' => array(
417 xl('Patient List Page Size'),
418 array(
419 '10' => '10',
420 '25' => '25',
421 '50' => '50',
422 '100' => '100',
424 '10',
425 xl('Number of patients to display per page in the patient list.')
428 'gbl_pt_list_new_window' => array(
429 xl('Patient List New Window'),
430 'bool', // data type
431 '0', // default = false
432 xl('Default state of New Window checkbox in the patient list.')
435 'num_of_messages_displayed' => array(
436 xl('Number of Messages Displayed in Patient Summary'),
437 'num',
438 '3',
439 xl('This is the number of messages that will be displayed in the messages widget in the patient summary screen.')
442 'gbl_vitals_options' => array(
443 xl('Vitals Form Options'),
444 array(
445 '0' => xl('Standard'),
446 '1' => xl('Omit circumferences'),
448 '0', // default
449 xl('Special treatment for the Vitals form')
452 'insurance_information' => array(
453 xl('Show Additional Insurance Information'), // descriptive name
454 array(
455 '0' => xl('None'),
456 '1' => xl('Address Only'),
457 '2' => xl('Address and Postal Code'),
458 '3' => xl('Address and State'),
459 '4' => xl('Address, State and Postal Code'),
460 '5' => xl('Address, City, State and Postal Code'),
461 '6' => xl('Postal Code and Box Number')
463 '5', // default
464 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
467 'gb_how_sort_list' => array(
468 xl('How to sort a drop-lists'),
469 array(
470 '0' => xl('Sort by seq'),
471 '1' => xl('Sort alphabetically')
473 '0',
474 xl('What kind of sorting will be in the drop lists.')
477 'show_label_login' => array(
478 xl('Show Title on Login'),
479 'bool', // data type
480 '0', // default = false
481 xl('Show Title on Login')
484 'extra_logo_login' => array(
485 xl('Show Extra Logo on Login'),
486 'bool', // data type
487 '0', // default = false
488 xl('Show Extra Logo on Login')
491 'tiny_logo_1' => array(
492 xl('Show Mini Logo 1'),
493 'bool', // data type
494 '0', // default = false
495 xl('Show Mini Logo 1')
498 'tiny_logo_2' => array(
499 xl('Show Mini Logo 2'),
500 'bool', // data type
501 '0', // default = false
502 xl('Show Mini Logo 2')
507 // Locale Tab
509 'Locale' => array(
511 'language_default' => array(
512 xl('Default Language'),
513 'lang', // data type
514 'English (Standard)', // default = english
515 xl('Default language if no other is allowed or chosen.')
518 'language_menu_showall' => array(
519 xl('All Languages Allowed'),
520 'bool', // data type
521 '1', // default = true
522 xl('Allow all available languages as choices on menu at login.')
525 'language_menu_other' => array(
526 xl('Allowed Languages'),
527 'm_lang', // data type
528 '', // default = none
529 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
532 'allow_debug_language' => array(
533 xl('Allow Debugging Language'),
534 'bool', // data type
535 '1', // default = true during development and false for production releases
536 xl('This will allow selection of the debugging (\'dummy\') language.')
539 'translate_no_safe_apostrophe' => array(
540 xl('Do Not Use Safe Apostrophe'),
541 'bool', // data type
542 '0', // default = false
543 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)')
546 'translate_layout' => array(
547 xl('Translate Layouts'),
548 'bool', // data type
549 '1', // default = true
550 xl('Is text from form layouts to be translated?')
553 'translate_lists' => array(
554 xl('Translate Lists'),
555 'bool', // data type
556 '1', // default = true
557 xl('Is text from lists to be translated?')
560 'translate_gacl_groups' => array(
561 xl('Translate Access Control Groups'),
562 'bool', // data type
563 '1', // default = true
564 xl('Are access control group names to be translated?')
567 'translate_form_titles' => array(
568 xl('Translate Patient Note Titles'),
569 'bool', // data type
570 '1', // default = true
571 xl('Are patient note titles to be translated?')
574 'translate_document_categories' => array(
575 xl('Translate Document Categories'),
576 'bool', // data type
577 '1', // default = true
578 xl('Are document category names to be translated?')
581 'translate_appt_categories' => array(
582 xl('Translate Appointment Categories'),
583 'bool', // data type
584 '1', // default = true
585 xl('Are appointment category names to be translated?')
588 'units_of_measurement' => array(
589 xl('Units for Visit Forms'),
590 array(
591 '1' => xl('Show both US and metric (main unit is US)'),
592 '2' => xl('Show both US and metric (main unit is metric)'),
593 '3' => xl('Show US only'),
594 '4' => xl('Show metric only'),
596 '1', // default = Both/US
597 xl('Applies to the Vitals form and Growth Chart')
600 'us_weight_format' => array(
601 xl('Display Format for US Weights'),
602 array(
603 '1' => xl('Show pounds as decimal value'),
604 '2' => xl('Show pounds and ounces')
606 '1',
607 xl('Applies to Vitals form')
610 'phone_country_code' => array(
611 xl('Telephone Country Code'),
612 'num',
613 '1', // default = North America
614 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
617 'date_display_format' => array(
618 xl('Date Display Format'),
619 array(
620 '0' => xl('YYYY-MM-DD'),
621 '1' => xl('MM/DD/YYYY'),
622 '2' => xl('DD/MM/YYYY'),
624 '0',
625 xl('Format used to display most dates.')
628 'time_display_format' => array(
629 xl('Time Display Format'),
630 array(
631 '0' => xl('24 hr'),
632 '1' => xl('12 hr'),
634 '0',
635 xl('Format used to display most times.')
638 'gbl_time_zone' => array(
639 xl('Time Zone'),
640 gblTimeZones(),
642 xl('If unassigned will default to php.ini setting for date.timezone.')
645 'currency_decimals' => array(
646 xl('Currency Decimal Places'),
647 array(
648 '0' => xl('0'),
649 '1' => xl('1'),
650 '2' => xl('2'),
652 '2',
653 xl('Number of digits after decimal point for currency, usually 0 or 2.')
656 'currency_dec_point' => array(
657 xl('Currency Decimal Point Symbol'),
658 array(
659 '.' => xl('Period'),
660 ',' => xl('Comma'),
662 '.',
663 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
666 'currency_thousands_sep' => array(
667 xl('Currency Thousands Separator'),
668 array(
669 ',' => xl('Comma'),
670 '.' => xl('Period'),
671 ' ' => xl('Space'),
672 '' => xl('None'),
674 ',',
675 xl('Symbol used to separate thousands for currency.')
678 'gbl_currency_symbol' => array(
679 xl('Currency Designator'),
680 'text', // data type
681 '$', // default
682 xl('Code or symbol to indicate currency')
684 'age_display_format' => array(xl('Age Display Format'),
685 array(
686 '0' => xl('Years or months'),
687 '1' => xl('Years, months and days')
689 '0',
690 xl('Format for age display')
692 'age_display_limit' => array(
693 xl('Age in Years for Display Format Change'),
694 'num',
695 '3',
696 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
698 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
699 'weekend_days' => array(
700 xl('Your weekend days'),
701 array(
702 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
703 '0' => xl('Sunday'),
704 '5' => xl('Friday'),
705 '6' => xl('Saturday'),
706 '5,6' => xl('Friday') . ' - ' . xl('Saturday'),
708 '6,0'
709 , xl('which days are your weekend days?')
714 // Features Tab
716 'Features' => array(
718 'specific_application' => array(
719 xl('Specific Application'),
720 array(
721 '0' => xl('None'),
722 '2' => xl('IPPF'),
723 '3' => xl('Weight loss clinic'),
725 '0', // default
726 xl('Indicator for specialized usage')
729 'inhouse_pharmacy' => array(
730 xl('Drugs and Products'),
731 array(
732 '0' => xl('Do not inventory and sell any products'),
733 '1' => xl('Inventory and sell drugs only'),
734 '2' => xl('Inventory and sell both drugs and non-drug products'),
735 '3' => xl('Products but no prescription drugs and no templates'),
737 '0', // default
738 xl('Option to support inventory and sales of products')
741 'default_visit_category' => array(
742 xl('Default Visit Category'),
743 'default_visit_category',
744 '_blank',
745 xl('Define a default visit category'),
748 'disable_chart_tracker' => array(
749 xl('Disable Chart Tracker'),
750 'bool', // data type
751 '0', // default = false
752 xl('Removes the Chart Tracker feature')
755 'disable_immunizations' => array(
756 xl('Disable Immunizations'),
757 'bool', // data type
758 '0', // default = false
759 xl('Removes support for immunizations')
762 'disable_prescriptions' => array(
763 xl('Disable Prescriptions'),
764 'bool', // data type
765 '0', // default = false
766 xl('Removes support for prescriptions')
769 'omit_employers' => array(
770 xl('Omit Employers'),
771 'bool', // data type
772 '0', // default = false
773 xl('Omit employer information in patient demographics')
776 'select_multi_providers' => array(
777 xl('Support Multi-Provider Events'),
778 'bool', // data type
779 '0', // default = false
780 xl('Support calendar events that apply to multiple providers')
783 'disable_non_default_groups' => array(
784 xl('Disable User Groups'),
785 'bool', // data type
786 '1', // default = true
787 xl('Normally this should be checked. Not related to access control.')
790 'ignore_pnotes_authorization' => array(
791 xl('Skip Authorization of Patient Notes'),
792 'bool', // data type
793 '1', // default = true
794 xl('Do not require patient notes to be authorized')
797 'support_encounter_claims' => array(
798 xl('Allow Encounter Claims'),
799 'bool', // data type
800 '0', // default = false
801 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
804 'advance_directives_warning' => array(
805 xl('Advance Directives Warning'),
806 'bool', // data type
807 '0', // default = false
808 xl('Display advance directives in the demographics page.')
811 'configuration_import_export' => array(
812 xl('Configuration Export/Import'),
813 'bool', // data type
814 '0', // default = false
815 xl('Support export/import of configuration data via the Backup page.')
818 'restrict_user_facility' => array(
819 xl('Restrict Users to Facilities'),
820 'bool', // data type
821 '0', // default
822 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
825 'set_facility_cookie' => array(
826 xl('Remember Selected Facility'),
827 'bool', // data type
828 '0', // default
829 xl('Set a facility cookie to remember the selected facility between logins.')
832 'receipts_by_provider' => array(
833 xl('Print Receipts by Provider'),
834 'bool',
835 '0', // default
836 xl('Causes Receipts to Print Encounter/Primary Provider Info')
839 'discount_by_money' => array(
840 xl('Discounts as Monetary Amounts'),
841 'bool', // data type
842 '1', // default = true
843 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
846 'gbl_visit_referral_source' => array(
847 xl('Referral Source for Encounters'),
848 'bool', // data type
849 '0', // default = false
850 xl('A referral source may be specified for each visit.')
853 'gbl_mask_patient_id' => array(
854 xl('Mask for Patient IDs'),
855 'text', // data type
856 '', // default
857 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
860 'gbl_mask_invoice_number' => array(
861 xl('Mask for Invoice Numbers'),
862 'text', // data type
863 '', // default
864 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
867 'gbl_mask_product_id' => array(
868 xl('Mask for Product IDs'),
869 'text', // data type
870 '', // default
871 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
874 'hide_billing_widget' => array(
875 xl('Hide Billing Widget'),
876 'bool', // data type
877 '0', // default = false
878 xl('This will hide the Billing Widget in the Patient Summary screen')
881 'force_billing_widget_open' => array(
882 xl('Force Billing Widget Open'),
883 'bool', // data type
884 '0', // default = false
885 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
888 'activate_ccr_ccd_report' => array(
889 xl('Activate CCR/CCD Reporting'),
890 'bool', // data type
891 '1', // default = true
892 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
895 'hide_document_encryption' => array(
896 xl('Hide Encryption/Decryption Options In Document Management'),
897 'bool', // data type
898 '1', // default = true
899 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
902 'use_custom_immun_list' => array(
903 xl('Use Custom Immunization List'),
904 'bool', // data type
905 '0', // default = true
906 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
909 'amendments' => array(
910 xl('Amendments'),
911 'bool', // data type
912 '1', // default = true
913 xl('Enable amendments feature')
916 'allow_pat_delete' => array(
917 xl('Allow Administrators to Delete Patients'),
918 'bool', // data type
919 '0', // default = false
920 xl('Allow Administrators to Delete Patients')
924 'observation_results_immunization' => array(
925 xl('Immunization Observation Results'),
926 'bool', // data type
927 '1', // default
928 xl('Observation Results in Immunization')
931 'enable_help' => array(
932 xl('Enable Help Modal'),
933 array(
934 '0' => xl('Hide Help Modal'),
935 '1' => xl('Show Help Modal'),
936 '2' => xl('Disable Help Modal'),
937 ), // data type
938 '1', // default = Print End of Day Report 1
939 xl('This will allow the display of help modal on help enabled pages')
941 'messages_due_date' => array(
942 xl('Messages - due date'),
943 'bool', // data type
944 '0', // default false
945 xl('Enables choose due date to message')
948 'expand_form' => array(
949 xl('Expand Form'),
950 'bool', // data type
951 '0', // default false
952 xl('Open all expandable forms in expanded state')
955 // Report Tab
957 'Report' => array(
959 'use_custom_daysheet' => array(
960 xl('Use Custom End of Day Report'),
961 array(
962 '0' => xl('None'),
963 '1' => xl('Print End of Day Report 1'),
964 '2' => xl('Print End of Day Report 2'),
965 '3' => xl('Print End of Day Report 3'),
966 ), // data type
967 '1', // default = Print End of Day Report 1
968 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
971 'daysheet_provider_totals' => array(
972 xl('End of Day by Provider or allow Totals Only'),
973 array(
974 '0' => xl('Provider'),
975 '1' => xl('Totals Only'),
977 '1', // default
978 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
981 'ledger_begin_date' => array(
982 xl('Beginning Date for Ledger Report'),
983 array(
984 'Y1' => xl('One Year Ago'),
985 'Y2' => xl('Two Years Ago'),
986 'M6' => xl('Six Months Ago'),
987 'M3' => xl('Three Months Ago'),
988 'M1' => xl('One Month Ago'),
989 'D1' => xl('One Day Ago'),
991 'Y1', // default = One Year
992 xl('This is the Beginning date for the Ledger Report.')
995 'print_next_appointment_on_ledger' => array(
996 xl('Print the Next Appointment on the Bottom of the Ledger'),
997 'bool', // data type
998 '1', // default = true
999 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
1002 'sales_report_invoice' => array(
1003 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
1004 array(
1005 '0' => xl('Invoice Number'),
1006 '1' => xl('Patient Name and ID'),
1007 '2' => xl('Patient Name and Invoice'),
1009 '2', // default = 2
1010 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
1013 'cash_receipts_report_invoice' => array(
1014 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
1015 array(
1016 '0' => xl('Invoice Number'),
1017 '1' => xl('Patient Name'),
1019 '0', // default = 0
1020 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
1025 // Billing Tab
1027 'Billing' => array(
1029 'ub04_support' => array(
1030 xl('Activate UB04/837I Claim Support'),
1031 'bool', // data type
1032 '0', // default = false
1033 xl('Allow institutional claims support.')
1036 'top_ubmargin_default' => array(
1037 xl('Default top print margin for UB04'),
1038 'num', // data type
1039 '14', // default
1040 xl('This is the default top print margin for UB04. It will adjust the final printed output up or down.')
1043 'left_ubmargin_default' => array(
1044 xl('Default left print margin for UB04'),
1045 'num', // data type
1046 '11', // default
1047 xl('This is the default left print margin for UB04. It will adjust the final printed output left or right.')
1050 'cms_top_margin_default' => array(
1051 xl('Default top print margin for CMS 1500'),
1052 'num', // data type
1053 '24', // default
1054 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
1057 'cms_left_margin_default' => array(
1058 xl('Default left print margin for CMS 1500'),
1059 'num', // data type
1060 '20', // default
1061 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
1064 'preprinted_cms_1500' => array(
1065 xl('Prints the CMS 1500 on the Preprinted form'),
1066 'bool', // data type
1067 '0', // default = false
1068 xl('Overlay CMS 1500 on the Preprinted form')
1071 'cms_1500_box_31_format' => array(
1072 xl('CMS 1500: Box 31 Format'),
1073 array(
1074 '0' => xl('Signature on File'),
1075 '1' => xl('Firstname Lastname'),
1076 '2' => xl('None'),
1078 '0', // default
1079 xl('This specifies whether to include date in Box 31.')
1082 'cms_1500_box_31_date' => array(
1083 xl('CMS 1500: Date in Box 31 (Signature)'),
1084 array(
1085 '0' => xl('None'),
1086 '1' => xl('Date of Service'),
1087 '2' => xl('Today'),
1089 '0', // default
1090 xl('This specifies whether to include date in Box 31.')
1093 'default_search_code_type' => array(
1094 xl('Default Search Code Type'),
1095 'all_code_types', // data type
1096 'ICD10', // default
1097 xl('The default code type to search for in the Fee Sheet.')
1100 'default_rendering_provider' => array(
1101 xl('Default Rendering Provider in Fee Sheet'),
1102 array(
1103 '0' => xl('Please Select'),
1104 '1' => xl('Current Provider'),
1105 '2' => xl('Current Logged in User'),
1107 '1',
1108 xl('Default selection for rendering provider in fee sheet.')
1111 'show_payment_history' => array(
1112 xl('Show all payment history in Patient Ledger'),
1113 'bool', // data type
1114 '1', // default = true
1115 xl('Turn on to show all payment history in Patient Ledger')
1118 'support_fee_sheet_line_item_provider' => array(
1119 xl('Support provider in line item in fee sheet'),
1120 'bool', // data type
1121 '0', // default = false
1122 xl('This Enables provider in line item in the fee sheet')
1125 'default_fee_sheet_line_item_provider' => array(
1126 xl('Default to a provider for line item in the fee sheet'),
1127 'bool', // data type
1128 '0', // default = false
1129 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1132 'replicate_justification' => array(
1133 xl('Automatically replicate justification codes in Fee Sheet'),
1134 'bool', // data type
1135 '0', // default = false
1136 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1139 'display_units_in_billing' => array(
1140 xl('Display the Units Column on the Billing Screen'),
1141 'bool', // data type
1142 '0', // default = false
1143 xl('Display the Units Column on the Billing Screen')
1146 'notes_to_display_in_Billing' => array(
1147 xl('Which notes are to be displayed in the Billing Screen'),
1148 array(
1149 '0' => xl('None'),
1150 '1' => xl('Encounter Billing Note'),
1151 '2' => xl('Patient Billing Note'),
1152 '3' => xl('All'),
1154 '3',
1155 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1158 'set_pos_code_encounter' => array(
1159 xl('Set POS code in encounter'),
1160 'bool', // data type
1161 '0', // default = false
1162 xl('This feature will allow the default POS facility code to be overriden from the encounter.')
1165 'use_custom_statement' => array(
1166 xl('Use Custom Statement'),
1167 'bool', // data type
1168 '0', // default = false
1169 xl('This will use the custom Statment showing the description instead of the codes.')
1172 'statement_appearance' => array(
1173 xl('Statement Appearance'),
1174 array(
1175 '0' => xl('Plain Text'),
1176 '1' => xl('Modern/images')
1177 ), // data type
1178 '1', // default = true
1179 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1182 'billing_phone_number' => array(
1183 xl('Custom Billing Phone Number'),
1184 'text', // data type
1186 xl('Phone number for billing inquiries')
1189 'show_aging_on_custom_statement' => array(
1190 xl('Show Aging on Custom Statement'),
1191 'bool', // data type
1192 '0', // default = false
1193 xl('This will Show Aging on the custom Statement.')
1196 'use_statement_print_exclusion' => array(
1197 xl('Allow Statement Exclusions from Printing'),
1198 'bool', // data type
1199 '0', // default = false
1200 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1203 'minimum_amount_to_print' => array(
1204 xl('Total Minimum Amount of Statement to Allow Printing'),
1205 'num', // data type
1206 '1.00',
1207 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1210 'statement_bill_note_print' => array(
1211 xl('Print Patient Billing Note'),
1212 'bool', // data type
1213 '0', // default = false
1214 xl('This will allow printing of the Patient Billing Note on the statements.')
1217 'number_appointments_on_statement' => array(
1218 xl('Number of Appointments on Statement'),
1219 'num', // data type
1220 '0', // default = 0
1221 xl('The Number of Future Appointments to Display on the Statement.')
1224 'statement_message_to_patient' => array(
1225 xl('Print Custom Message'),
1226 'bool', // data type
1227 '0', // default = false
1228 xl('This will allow printing of a custom Message on the statements.')
1231 'statement_msg_text' => array(
1232 xl('Custom Statement message'),
1233 'text', // data type
1235 xl('Text for Custom statement message.')
1238 'use_dunning_message' => array(
1239 xl('Use Custom Dunning Messages'),
1240 'bool', // data type
1241 '0', // default = false
1242 xl('This will allow use of the custom Dunning Messages on the statements.')
1245 'first_dun_msg_set' => array(
1246 xl('Number of days before showing first account message'),
1247 'num', // data type
1248 '30',
1249 xl('Number of days before showing first account message.')
1252 'first_dun_msg_text' => array(
1253 xl('First account message'),
1254 'text', // data type
1256 xl('Text for first account message.')
1259 'second_dun_msg_set' => array(
1260 xl('Number of days before showing second account message'),
1261 'num', // data type
1262 '60',
1263 xl('Number of days before showing second account message')
1266 'second_dun_msg_text' => array(
1267 xl('Second account message'),
1268 'text', // data type
1270 xl('Text for second account message.')
1273 'third_dun_msg_set' => array(
1274 xl('Number of days before showing third account message'),
1275 'num', // data type
1276 '90',
1277 xl('Number of days before showing third account message')
1280 'third_dun_msg_text' => array(
1281 xl('Third account message'),
1282 'text', // data type
1284 xl('Text for third account message.')
1287 'fourth_dun_msg_set' => array(
1288 xl('Number of days before showing fourth account message'),
1289 'num', // data type
1290 '120',
1291 xl('Number of days before showing fourth account message')
1294 'fourth_dun_msg_text' => array(
1295 xl('Fourth account message'),
1296 'text', // data type
1298 xl('Text for fourth account message.')
1301 'fifth_dun_msg_set' => array(
1302 xl('Number of days before showing fifth account message'),
1303 'num', // data type
1304 '150',
1305 xl('Number of days before showing fifth account message')
1308 'fifth_dun_msg_text' => array(
1309 xl('Fifth account message'),
1310 'text', // data type
1312 xl('Text for fifth account message.')
1314 'save_codes_history' => array(
1315 xl('Save codes history'),
1316 'bool', // data type
1317 '1', // default
1318 xl('Save codes history')
1322 // E-Sign Tab
1324 'E-Sign' => array(
1326 'esign_all' => array(
1327 xl('Allows E-Sign on the entire encounter'),
1328 'bool', // data type
1329 '0', // default = false
1330 xl('This will enable signing an entire encounter, rather than individual forms')
1333 'lock_esign_all' => array(
1334 xl('Lock e-signed encounters and their forms'),
1335 'bool', // data type
1336 '0', // default = false
1337 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1340 'esign_individual' => array(
1341 xl('Allows E-Signing Individual Forms'),
1342 'bool', // data type
1343 '1', // default = false
1344 xl('This will enable signing individual forms separately')
1347 'lock_esign_individual' => array(
1348 xl('Lock an e-signed form individually'),
1349 'bool', // data type
1350 '1', // default = false
1351 xl('This will disable the Edit button on any form that is e-signed')
1354 'esign_lock_toggle' => array(
1355 xl('Enable lock toggle'),
1356 'bool', // data type
1357 '0', // default = false
1358 xl('This will give the user the option to lock (separate locking and signing)')
1361 'esign_report_hide_empty_sig' => array(
1362 xl('Hide Empty E-Sign Logs On Report'),
1363 'bool', // data type
1364 '1', // default = false
1365 xl('This will hide empty e-sign logs on the patient report')
1369 //Documents Tab
1370 'Documents' => array(
1372 'document_storage_method' => array(
1373 xl('Document Storage Method'),
1374 array(
1375 '0' => xl('Hard Disk'),
1376 '1' => xl('CouchDB')
1378 '0', // default
1379 xl('Option to save method of document storage.')
1382 'couchdb_host' => array(
1383 xl('CouchDB HostName'),
1384 'text',
1385 'localhost',
1386 xl('CouchDB host'),
1388 'couchdb_user' => array(
1389 xl('CouchDB UserName'),
1390 'text',
1392 xl('Username to connect to CouchDB'),
1394 'couchdb_pass' => array(
1395 xl('CouchDB Password'),
1396 'text',
1398 xl('Password to connect to CouchDB'),
1400 'couchdb_port' => array(
1401 xl('CouchDB Port'),
1402 'text',
1403 '5984',
1404 xl('CouchDB port'),
1406 'couchdb_dbase' => array(
1407 xl('CouchDB Database'),
1408 'text',
1410 xl('CouchDB database name'),
1412 'couchdb_log' => array(
1413 xl('CouchDB Log Enable'),
1414 'bool',
1415 '0',
1416 xl('Enable log for document uploads/downloads to CouchDB'),
1419 'expand_document_tree' => array(
1420 xl('Expand All Document Categories'),
1421 'bool', // data type
1422 '0', // default = false
1423 xl('Expand All Document Categories by Default')
1426 'patient_id_category_name' => array(
1427 xl('Patient ID Category Name'),
1428 'text', // data type
1429 'Patient ID card', // default
1430 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1433 'patient_photo_category_name' => array(
1434 xl('Patient Photo Category Name'),
1435 'text', // data type
1436 'Patient Photograph', // default
1437 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1440 'lab_results_category_name' => array(
1441 xl('Lab Results Category Name'),
1442 'text', // data type
1443 'Lab Report', // default
1444 xl('Document category name for storage of electronically received lab results.')
1447 'gbl_mdm_category_name' => array(
1448 xl('MDM Document Category Name'),
1449 'text', // data type
1450 'Lab Report', // default
1451 xl('Document category name for storage of electronically received MDM documents.')
1453 'generate_doc_thumb' => array(
1454 xl('Generate thumbnail'),
1455 'bool',
1456 '0',
1457 xl('Generate thumbnail images'),
1459 'thumb_doc_max_size' => array(
1460 xl('Thumbnail size'),
1461 'text', // data type
1462 '100', // default
1463 xl('Maximum size of thumbnail file')
1467 // Calendar Tab
1469 'Calendar' => array(
1471 'disable_calendar' => array(
1472 xl('Disable Calendar'),
1473 'bool', // data type
1474 '0', // default
1475 xl('Do not display the calendar.')
1478 'schedule_start' => array(
1479 xl('Calendar Starting Hour'),
1480 'hour',
1481 '8', // default
1482 xl('Beginning hour of day for calendar events.')
1485 'schedule_end' => array(
1486 xl('Calendar Ending Hour'),
1487 'hour',
1488 '17', // default
1489 xl('Ending hour of day for calendar events.')
1492 'calendar_interval' => array(
1493 xl('Calendar Interval'),
1494 array(
1495 '5' => '5',
1496 '10' => '10',
1497 '15' => '15',
1498 '20' => '20',
1499 '30' => '30',
1500 '60' => '60',
1502 '15', // default
1503 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1506 'calendar_view_type' => array(
1507 xl('Default Calendar View'),
1508 array(
1509 'day' => xl('Day'),
1510 'week' => xl('Week'),
1511 'month' => xl('Month'),
1513 'day', // default
1514 xl('This sets the Default Calendar View, Default is Day.')
1516 'first_day_week' => array(
1517 xl('First day in the week'),
1518 array(
1519 '1' => xl('Monday'),
1520 '0' => xl('Sunday'),
1521 '6' => xl('Saturday')
1523 '1',
1524 xl('Your first day of the week.')
1526 'calendar_appt_style' => array(
1527 xl('Appointment Display Style'),
1528 array(
1529 '1' => xl('Last name'),
1530 '2' => xl('Last name, first name'),
1531 '3' => xl('Last name, first name (title)'),
1532 '4' => xl('Last name, first name (title: comments)'),
1534 '2', // default
1535 xl('This determines how appointments display on the calendar.')
1538 'event_color' => array(
1539 xl('Appointment/Event Color'),
1540 array(
1541 '1' => xl('Category Color Schema'),
1542 '2' => xl('Facility Color Schema'),
1543 ), // data type
1544 '1', // default
1545 xl('This determines which color schema used for appointment')
1548 'number_of_appts_to_show' => array(
1549 xl('Appointments - Patient Summary - Number to Display'),
1550 'num',
1551 '10',
1552 xl('Number of Appointments to display in the Patient Summary')
1555 'number_of_group_appts_to_show' => array(
1556 xl('Appointments - Group Summary - Number to Display'),
1557 'num',
1558 '10',
1559 xl('Number of Appointments to display in the Group Summary')
1561 'number_of_ex_appts_to_show' => array(
1562 xl('Excluded Appointments - Tooltip - Number to Display'),
1563 'num',
1564 '15',
1565 xl('Number of Excluded Appointments to display in the Tooltip')
1569 'patient_portal_appt_display_num' => array(
1570 xl('Appointments - Onsite Patient Portal - Number to Display'),
1571 'num',
1572 '20',
1573 xl('Number of Appointments to display in the Onsite Patient Portal')
1576 'appt_display_sets_option' => array(
1577 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1578 'bool', // data type
1579 '1', // default
1580 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1583 'appt_display_sets_color_1' => array(
1584 xl('Appointment Display Sets - Color 1'),
1585 'color_code',
1586 '#FFFFFF',
1587 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).')
1590 'appt_display_sets_color_2' => array(
1591 xl('Appointment Display Sets - Color 2'),
1592 'color_code',
1593 '#E6E6FF',
1594 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).')
1597 'appt_display_sets_color_3' => array(
1598 xl('Appointment Display Sets - Color 3'),
1599 'color_code',
1600 '#E6FFE6',
1601 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1604 'appt_display_sets_color_4' => array(
1605 xl('Appointment Display Sets - Color 4'),
1606 'color_code',
1607 '#FFE6FF',
1608 xl('Color for the last set when not all member appointments are displayed.')
1611 'appt_recurrences_widget' => array(
1612 xl('Recurrent Appointment Display Widget'),
1613 'bool', // data type
1614 '1', // default
1615 xl('Display the recurrent appointment widget in the patient summary.')
1618 'num_past_appointments_to_show' => array(
1619 xl('Past Appointment Display Widget'),
1620 'num', // data type
1621 '0', // default = false
1622 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)')
1625 'docs_see_entire_calendar' => array(
1626 xl('Providers See Entire Calendar'),
1627 'bool', // data type
1628 '0', // default
1629 xl('Check this if you want providers to see all appointments by default and not just their own.')
1632 'auto_create_new_encounters' => array(
1633 xl('Auto-Create New Encounters'),
1634 'bool', // data type
1635 '1', // default
1636 xl('Automatically create a new encounter when an appointment check in status is selected.')
1639 'allow_early_check_in' => array(
1640 xl('Allow Early Check In'),
1641 'bool', // data type
1642 '1', // default
1643 xl("Allow Check In before the appointment's time.")
1646 'submit_changes_for_all_appts_at_once' => array(
1647 xl('Submit Changes For All Appts At Once'),
1648 'bool', // data type
1649 '1', // default
1650 xl('Enables to submit changes for all appointments of a recurrence at once.')
1653 'disable_pat_trkr' => array(
1654 xl('Flow Board: Disable'),
1655 'bool', // data type
1656 '0', // default
1657 xl('Completely remove the ability to display the Patient Flow Board.')
1660 'ptkr_visit_reason' => array(
1661 xl('Flow Board: Show Visit Reason'),
1662 'bool', // data type
1663 '0', // default = false
1664 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1667 'ptkr_show_pid' => array(
1668 xl('Flow Board: Show Patient ID'),
1669 'bool', // data type
1670 '1', // default = true
1671 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1674 'ptkr_show_encounter' => array(
1675 xl('Flow Board: Show Encounter Number'),
1676 'bool', // data type
1677 '1', // default = true
1678 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1681 'ptkr_show_staff' => array(
1682 xl('Flow Board: Show Staff Action'),
1683 'bool', // data type
1684 '1', // default = true
1685 xl('When Checked, Last Staff to Update Board Will Show in Patient Flow Board.')
1688 'ptkr_date_range' => array(
1689 xl('Flow Board: Allow Date Range'),
1690 'bool', // data type
1691 '1', // default = true
1692 xl('This Allows a Date Range to be Selected in Patient Flow Board.')
1695 'ptkr_start_date'=> array(
1696 xl('Flow Board: Default Starting Date'),
1697 array(
1698 'D0' => xl('Current Day'),
1699 'B0' => xl('Beginning of Current Work Week'),
1701 'D0', // default = Current Day
1702 xl('This is the default Beginning date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1705 'ptkr_end_date' => array(
1706 xl('Flow Board: Default Ending Date'),
1707 array(
1708 'Y1' => xl('One Year Ahead'),
1709 'Y2' => xl('Two Years Ahead'),
1710 'M6' => xl('Six Months Ahead'),
1711 'M3' => xl('Three Months Ahead'),
1712 'M1' => xl('One Month Ahead'),
1713 'D7' => xl('One Week Ahead'),
1714 'D1' => xl('One Day Ahead'),
1715 'D0' => xl('Current Day'),
1717 'D0', // default = One Day Ahead
1718 xl('This is the default Ending date for the Patient Flow Board. (only applicable if Allow Date Range in option above is Enabled)')
1721 'pat_trkr_timer' => array(
1722 xl('Flow Board: Timer Refresh Interval'),
1723 array(
1724 '0' => xl('No automatic refresh'),
1725 '0:10' => '10',
1726 '0:20' => '20',
1727 '0:30' => '30',
1728 '0:40' => '40',
1729 '0:50' => '50',
1730 '0:59' => '60',
1732 '0:20', // default
1733 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1736 'checkout_roll_off' => array(
1737 xl('Flow Board: display completed checkouts (minutes)'),
1738 'num',
1739 '0', // default
1740 xl('Flow Board will only display completed checkouts for this many minutes. Zero is continuous display.')
1743 'drug_screen' => array(
1744 xl('Flow Board: Enable Random Drug Testing'),
1745 'bool', // data type
1746 '0', // default
1747 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1750 'drug_testing_percentage' => array(
1751 xl('Flow Board: Percentage of Patients to Drug Test'),
1752 'num',
1753 '33', // default
1754 xl('Percentage of Patients to select for Random Drug Testing.')
1757 'maximum_drug_test_yearly' => array(
1758 xl('Flow Board: Max tests per Patient per year'),
1759 'num',
1760 '0', // default
1761 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1764 'disable_rcb' => array(
1765 xl('Recall Board: Disable'),
1766 'bool', // data type
1767 '0', // default
1768 xl('Do not display the Recall Board.')
1776 // Security Tab
1778 'Security' => array(
1779 'sql_string_no_show_screen' => array(
1780 xl('Mode - Do Not Show SQL Queries'),
1781 'bool', // data type
1782 '0', // default
1783 xl('Do not allow SQL queries to be outputted to screen.')
1785 'timeout' => array(
1786 xl('Idle Session Timeout Seconds'),
1787 'num', // data type
1788 '7200', // default
1789 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1791 'secure_upload' => array(
1792 xl('Secure Upload Files with White List'),
1793 'bool', // data type
1794 '0', // default
1795 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1797 'secure_password' => array(
1798 xl('Require Strong Passwords'),
1799 'bool', // data type
1800 '0', // default
1801 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1803 'password_history' => array(
1804 xl('Require Unique Passwords'),
1805 'bool', // data type
1806 '0', // default
1807 xl('Means none of last three passwords are allowed when changing a password.')
1809 'password_compatibility' => array(
1810 xl('Permit unsalted passwords'),
1811 'bool', // data type
1812 '1', // default
1813 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')
1816 'password_expiration_days' => array(
1817 xl('Default Password Expiration Days'),
1818 'num', // data type
1819 '0', // default
1820 xl('Default password expiration period in days. 0 means this feature is disabled.')
1823 'password_grace_time' => array(
1824 xl('Password Expiration Grace Period'),
1825 'num', // data type
1826 '0', // default
1827 xl('Period in days where a user may login with an expired password.')
1830 'is_client_ssl_enabled' => array(
1831 xl('Enable Client SSL'),
1832 'bool', // data type
1833 '0', // default
1834 xl('Enable client SSL certificate authentication.')
1837 'certificate_authority_crt' => array(
1838 xl('Path to CA Certificate File'),
1839 'text', // data type
1840 '', // default
1841 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1844 'certificate_authority_key' => array(
1845 xl('Path to CA Key File'),
1846 'text', // data type
1847 '', // default
1848 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1851 'client_certificate_valid_in_days' => array(
1852 xl('Client Certificate Expiration Days'),
1853 'num', // data type
1854 '365', // default
1855 xl('Number of days that the client certificate is valid.')
1858 'Emergency_Login_email_id' => array(
1859 xl('Emergency Login Email Address'),
1860 'text', // data type
1861 '', // default
1862 xl('Email address, if any, to receive emergency login user activation messages.')
1865 'new_validate' => array(
1866 xl('New form validation'),
1867 'bool',
1868 '1',
1869 xl('New form validation')
1872 'allow_multiple_databases' => array(
1873 xl('Allow multiple databases'),
1874 'bool',
1875 '0',
1876 xl('Allow to use with multiple database')
1879 'safe_key_database' => array(
1880 xl('Safe key database'),
1881 'text', // data type
1882 '', // default
1883 xl('Key for multiple database credentials encryption')
1886 'use_active_directory' => array(
1887 xl('Use Active Directory'),
1888 'bool',
1889 '0',
1890 xl('If enabled, uses the specified active directory for login and authentication.')
1893 'account_suffix' => array(
1894 xl('Active Directory - Suffix Of Account'),
1895 'text',
1897 xl('The suffix of the account.')
1900 'base_dn' => array(
1901 xl('Active Directory - Domains Base'),
1902 'text',
1904 xl('Users is the standard windows CN, replace the DC stuff with your domain.')
1907 'domain_controllers' => array(
1908 xl('Active Directory - Domains Controllers'),
1909 'text',
1911 xl('The IP address of your domain controller(s).')
1916 // Notifications Tab
1918 'Notifications' => array(
1920 'patient_reminder_sender_name' => array(
1921 xl('Patient Reminder Sender Name'),
1922 'text', // data type
1923 '', // default
1924 xl('Name of the sender for patient reminders.')
1927 'patient_reminder_sender_email' => array(
1928 xl('Patient Reminder Sender Email'),
1929 'text', // data type
1930 '', // default
1931 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.')
1934 'practice_return_email_path' => array(
1935 xl('Notification Email Address'),
1936 'text', // data type
1937 '', // default
1938 xl('Email address, if any, to receive administrative notifications.')
1941 'EMAIL_METHOD' => array(
1942 xl('Email Transport Method'),
1943 array(
1944 'PHPMAIL' => 'PHPMAIL',
1945 'SENDMAIL' => 'SENDMAIL',
1946 'SMTP' => 'SMTP',
1948 'SMTP', // default
1949 xl('Method for sending outgoing email.')
1952 'SMTP_HOST' => array(
1953 xl('SMTP Server Hostname'),
1954 'text', // data type
1955 'localhost', // default
1956 xl('If SMTP is used, the server`s hostname or IP address.')
1959 'SMTP_PORT' => array(
1960 xl('SMTP Server Port Number'),
1961 'num', // data type
1962 '25', // default
1963 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1966 'SMTP_USER' => array(
1967 xl('SMTP User for Authentication'),
1968 'text', // data type
1969 '', // default
1970 xl('Must be empty if SMTP authentication is not used.')
1973 'SMTP_PASS' => array(
1974 xl('SMTP Password for Authentication'),
1975 'text', // data type
1976 '', // default
1977 xl('Must be empty if SMTP authentication is not used.')
1980 'SMTP_SECURE' => array(
1981 xl('SMTP Security Protocol'),
1982 array(
1983 '' => xl('None'),
1984 'ssl' => 'SSL',
1985 'tls' => 'TLS'
1988 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1991 'EMAIL_NOTIFICATION_HOUR' => array(
1992 xl('Email Notification Hours'),
1993 'num', // data type
1994 '50', // default
1995 xl('Number of hours in advance to send email notifications.')
1998 'SMS_NOTIFICATION_HOUR' => array(
1999 xl('SMS Notification Hours'),
2000 'num', // data type
2001 '50', // default
2002 xl('Number of hours in advance to send SMS notifications.')
2005 'SMS_GATEWAY_USENAME' => array(
2006 xl('SMS Gateway Username'),
2007 'text', // data type
2008 '', // default
2009 xl('Username for SMS Gateway.')
2012 'SMS_GATEWAY_PASSWORD' => array(
2013 xl('SMS Gateway Password'),
2014 'text', // data type
2015 '', // default
2016 xl('Password for SMS Gateway.')
2019 'SMS_GATEWAY_APIKEY' => array(
2020 xl('SMS Gateway API Key'),
2021 'text', // data type
2022 '', // default
2023 xl('API key for SMS Gateway.')
2026 'phone_notification_hour' => array(
2027 xl('Phone Notification Hour'),
2028 'num', // data type
2029 '50', // default
2030 xl('Number of hours in advance to send Phone notification.')
2033 'phone_gateway_username' => array(
2034 xl('Phone Gateway Username'),
2035 'text', // data type
2036 '', // default
2037 xl('Username for Phone Gateway.')
2040 'phone_gateway_password' => array(
2041 xl('Phone Gateway Password'),
2042 'text', // data type
2043 '', // default
2044 xl('Password for Phone Gateway.')
2047 'phone_gateway_url' => array(
2048 xl('Phone Gateway URL'),
2049 'text', // data type
2050 '', // default
2051 xl('URL for Phone Gateway.')
2056 // CDR (Clinical Decision Rules)
2058 'CDR' => array(
2060 'enable_cdr' => array(
2061 xl('Enable Clinical Decisions Rules (CDR)'),
2062 'bool', // data type
2063 '1', // default
2064 xl('Enable Clinical Decisions Rules (CDR)')
2067 'enable_allergy_check' => array(
2068 xl('Enable Allergy Check'),
2069 'bool', // data type
2070 '1', // default
2071 xl('Enable Allergy Check Against Medications and Prescriptions')
2074 'enable_alert_log' => array(
2075 xl('Enable Alert Log'),
2076 'bool', // data type
2077 '1', // default
2078 xl('Enable Alert Logging')
2081 'enable_cdr_new_crp' => array(
2082 xl('Enable Clinical Passive New Reminder(s) Popup'),
2083 'bool', // data type
2084 '1', // default
2085 xl('Enable Clinical Passive New Reminder(s) Popup')
2088 'enable_cdr_crw' => array(
2089 xl('Enable Clinical Passive Reminder Widget'),
2090 'bool', // data type
2091 '1', // default
2092 xl('Enable Clinical Passive Reminder Widget')
2095 'enable_cdr_crp' => array(
2096 xl('Enable Clinical Active Reminder Popup'),
2097 'bool', // data type
2098 '1', // default
2099 xl('Enable Clinical Active Reminder Popup')
2102 'enable_cdr_prw' => array(
2103 xl('Enable Patient Reminder Widget'),
2104 'bool', // data type
2105 '1', // default
2106 xl('Enable Patient Reminder Widget')
2109 'enable_cqm' => array(
2110 xl('Enable CQM Reporting'),
2111 'bool', // data type
2112 '1', // default
2113 xl('Enable Clinical Quality Measure (CQM) Reporting')
2116 'pqri_registry_name' => array(
2117 xl('PQRI Registry Name'),
2118 'text', // data type
2119 'Model Registry', // default
2120 xl('PQRI Registry Name')
2123 'pqri_registry_id' => array(
2124 xl('PQRI Registry ID'),
2125 'text', // data type
2126 '125789123', // default
2127 xl('PQRI Registry ID')
2130 'enable_amc' => array(
2131 xl('Enable AMC Reporting'),
2132 'bool', // data type
2133 '1', // default
2134 xl('Enable Automated Measure Calculations (AMC) Reporting')
2137 'enable_amc_prompting' => array(
2138 xl('Enable AMC Prompting'),
2139 'bool', // data type
2140 '1', // default
2141 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
2144 'enable_amc_tracking' => array(
2145 xl('Enable AMC Tracking'),
2146 'bool', // data type
2147 '1', // default
2148 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
2151 'cdr_report_nice' => array(
2152 xl('CDR Reports Processing Priority'),
2153 array(
2154 '' => xl('Default Priority'),
2155 '5' => xl('Moderate Priority'),
2156 '10' => xl('Moderate/Low Priority'),
2157 '15' => xl('Low Priority'),
2158 '20' => xl('Lowest Priority')
2160 '', // default
2161 xl('Set processing priority for CDR engine based reports.')
2164 'pat_rem_clin_nice' => array(
2165 xl('Patient Reminder Creation Processing Priority'),
2166 array(
2167 '' => xl('Default Priority'),
2168 '5' => xl('Moderate Priority'),
2169 '10' => xl('Moderate/Low Priority'),
2170 '15' => xl('Low Priority'),
2171 '20' => xl('Lowest Priority')
2173 '', // default
2174 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2177 'report_itemizing_standard' => array(
2178 xl('Enable Standard Report Itemization'),
2179 'bool', // data type
2180 '1', // default
2181 xl('Enable Itemization of Standard Clinical Rules Reports')
2184 'report_itemizing_cqm' => array(
2185 xl('Enable CQM Report Itemization'),
2186 'bool', // data type
2187 '1', // default
2188 xl('Enable Itemization of CQM Reports')
2191 'report_itemizing_amc' => array(
2192 xl('Enable AMC Report Itemization'),
2193 'bool', // data type
2194 '1', // default
2195 xl('Enable Itemization of AMC Reports')
2197 'dated_reminders_max_alerts_to_show' => array(
2198 xl('Dated reminders maximum alerts to show'),
2199 'num', // data type
2200 '5', // default
2201 xl('Dated reminders maximum alerts to show')
2203 'patient_birthday_alert' => array(
2204 xl('Alert on patient birthday'),
2205 array(
2206 '0' => xl('No alert'),
2207 '1' => xl('Alert only on birthday'),
2208 '2' => xl('Alert on and after birthday'),
2209 '3' => xl('Alert on and up to 28 days after birthday')
2211 '1', // default
2212 xl('Alert on patient birthday')
2214 'patient_birthday_alert_manual_off' => array(
2215 xl('Patient birthday alert requires turning off'),
2216 'bool', // data type
2217 '0', // default
2218 xl('Patient birthday alert requires turning off')
2222 // Logging
2224 'Logging' => array(
2226 'enable_auditlog' => array(
2227 xl('Enable Audit Logging'),
2228 'bool', // data type
2229 '1', // default
2230 xl('Enable Audit Logging')
2233 'audit_events_patient-record' => array(
2234 xl('Audit Logging Patient Record'),
2235 'bool', // data type
2236 '1', // default
2237 xl('Enable logging of patient record modifications.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2240 'audit_events_scheduling' => array(
2241 xl('Audit Logging Scheduling'),
2242 'bool', // data type
2243 '1', // default
2244 xl('Enable logging of scheduling activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2247 'audit_events_order' => array(
2248 xl('Audit Logging Order'),
2249 'bool', // data type
2250 '1', // default
2251 xl('Enable logging of ordering activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2254 'audit_events_security-administration' => array(
2255 xl('Audit Logging Security Administration'),
2256 'bool', // data type
2257 '1', // default
2258 xl('Enable logging of security and administration activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2261 'audit_events_backup' => array(
2262 xl('Audit Logging Backups'),
2263 'bool', // data type
2264 '1', // default
2265 xl('Enable logging of backup related activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2268 'audit_events_other' => array(
2269 xl('Audit Logging Miscellaneous'),
2270 'bool', // data type
2271 '1', // default
2272 xl('Enable logging of miscellaneous activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2275 'audit_events_query' => array(
2276 xl('Audit Logging SELECT Query'),
2277 'bool', // data type
2278 '0', // default
2279 xl('Enable logging of all SQL SELECT queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2282 'audit_events_cdr' => array(
2283 xl('Audit CDR Engine Queries'),
2284 'bool', // data type
2285 '0', // default
2286 xl('Enable logging of CDR Engine Queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2289 'enable_atna_audit' => array(
2290 xl('Enable ATNA Auditing'),
2291 'bool', // data type
2292 '0', // default
2293 xl('Enable Audit Trail and Node Authentication (ATNA).')
2296 'atna_audit_host' => array(
2297 xl('ATNA audit host'),
2298 'text', // data type
2299 '', // default
2300 xl('The hostname of the ATNA audit repository machine.')
2303 'atna_audit_port' => array(
2304 xl('ATNA audit port'),
2305 'text', // data type
2306 '6514', // default
2307 xl('Listening port of the RFC 5425 TLS syslog server.')
2310 'atna_audit_localcert' => array(
2311 xl('ATNA audit local certificate'),
2312 'text', // data type
2313 '', // default
2314 xl('Certificate to send to RFC 5425 TLS syslog server.')
2317 'atna_audit_cacert' => array(
2318 xl('ATNA audit CA certificate'),
2319 'text', // data type
2320 '', // default
2321 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2324 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
2325 'enable_auditlog_encryption' => array(
2326 xl('Enable Audit Log Encryption'),
2327 'bool', // data type
2328 '0', // default
2329 xl('Enable Audit Log Encryption')
2332 'billing_log_option' => array(
2333 xl('Billing Log Option'),
2334 array(
2335 '1' => xl('Billing Log Append'),
2336 '2' => xl('Billing Log Overwrite')
2338 '1', // default
2339 xl('Billing log setting to append or overwrite the log file.')
2342 'gbl_print_log_option' => array(
2343 xl('Printing Log Option'),
2344 array(
2345 '0' => xl('No logging'),
2346 '1' => xl('Hide print feature'),
2347 '2' => xl('Log entire document'),
2349 '0', // default
2350 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2355 // Miscellaneous Tab
2357 'Miscellaneous' => array(
2359 'mysql_bin_dir' => array(
2360 xl('Path to MySQL Binaries'),
2361 'text', // data type
2362 $mysql_bin_dir, // default
2363 xl('Full path to directory containing MySQL executables.')
2366 'perl_bin_dir' => array(
2367 xl('Path to Perl Binaries'),
2368 'text', // data type
2369 $perl_bin_dir, // default
2370 xl('Full path to directory containing Perl executables.')
2373 'temporary_files_dir' => array(
2374 xl('Path to Temporary Files'),
2375 'text', // data type
2376 $temporary_files_dir, // default
2377 xl('Full path to directory used for temporary files.')
2380 'backup_log_dir' => array(
2381 xl('Path for Event Log Backup'),
2382 'text', // data type
2383 $backup_log_dir, // default
2384 xl('Full path to directory for event log backup.')
2387 'state_data_type' => array(
2388 xl('State Data Type'),
2389 array(
2390 '2' => xl('Text field'),
2391 '1' => xl('Single-selection list'),
2392 '26' => xl('Single-selection list with ability to add to the list'),
2394 '26', // default
2395 xl('Field type to use for employer or subscriber state in demographics.')
2398 'state_list' => array(
2399 xl('State list'),
2400 'text', // data type
2401 'state', // default
2402 xl('List used by above State Data Type option.')
2405 'state_custom_addlist_widget' => array(
2406 xl('State List Widget Custom Fields'),
2407 'bool', // data type
2408 '1', // default
2409 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2412 'country_data_type' => array(
2413 xl('Country Data Type'),
2414 array(
2415 '2' => xl('Text field'),
2416 '1' => xl('Single-selection list'),
2417 '26' => xl('Single-selection list with ability to add to the list'),
2419 '26', // default
2420 xl('Field type to use for employer or subscriber country in demographics.')
2423 'country_list' => array(
2424 xl('Country list'),
2425 'text', // data type
2426 'country', // default
2427 xl('List used by above Country Data Type option.')
2430 'print_command' => array(
2431 xl('Print Command'),
2432 'text', // data type
2433 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2434 xl('Shell command for printing from the server.')
2437 'default_chief_complaint' => array(
2438 xl('Default Reason for Visit'),
2439 'text', // data type
2441 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2444 'default_new_encounter_form' => array(
2445 xl('Default Encounter Form ID'),
2446 'text', // data type
2448 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
2451 'MedicareReferrerIsRenderer' => array(
2452 xl('Medicare Referrer Is Renderer'),
2453 'bool', // data type
2454 '0', // default = true
2455 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2458 'post_to_date_benchmark' => array(
2459 xl('Financial Close Date (yyyy-mm-dd)'),
2460 'text', // data type
2461 date('Y-m-d', time() - (10 * 24 * 60 * 60)), // default
2462 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2465 'enable_hylafax' => array(
2466 xl('Enable Hylafax Support'),
2467 'bool', // data type
2468 '0', // default
2469 xl('Enable Hylafax Support')
2472 'hylafax_server' => array(
2473 xl('Hylafax Server'),
2474 'text', // data type
2475 'localhost', // default
2476 xl('Hylafax server hostname.')
2479 'hylafax_basedir' => array(
2480 xl('Hylafax Directory'),
2481 'text', // data type
2482 '/var/spool/hylafax', // default
2483 xl('Location where Hylafax stores faxes.')
2486 'hylafax_enscript' => array(
2487 xl('Hylafax Enscript Command'),
2488 'text', // data type
2489 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2490 xl('Enscript command used by Hylafax.')
2493 'enable_scanner' => array(
2494 xl('Enable Scanner Support'),
2495 'bool', // data type
2496 '0', // default
2497 xl('Enable Scanner Support')
2500 'scanner_output_directory' => array(
2501 xl('Scanner Directory'),
2502 'text', // data type
2503 '/mnt/scan_docs', // default
2504 xl('Location where scans are stored.')
2508 // Portal Tab
2510 'Portal' => array(
2512 'portal_onsite_two_enable' => array(
2513 xl('Enable Version 2 Onsite Patient Portal'),
2514 'bool', // data type
2515 '0',
2516 xl('Enable Version 2 Onsite Patient Portal')
2519 'portal_onsite_two_address' => array(
2520 xl('Version 2 Onsite Patient Portal Site Address'),
2521 'text', // data type
2522 'https://your_web_site.com/openemr/portal',
2523 xl('Website link for the Version 2 Onsite Patient Portal.')
2526 'portal_onsite_two_basepath' => array(
2527 xl('Portal Uses Server Base Path (internal)'),
2528 'bool',
2529 '0',
2530 xl('Use servers protocol and host in urls (portal internal only).')
2533 'portal_onsite_two_register' => array(
2534 xl('Allow Version 2 Onsite New Patient Registration Widget'),
2535 'bool', // data type
2536 '1',
2537 xl('Enable Version 2 Onsite Patient Portal new patient to self register.')
2540 'allow_portal_appointments' => array(
2541 xl('Allow Version 2 Onsite Online Appointments'),
2542 'bool', // data type
2543 '1',
2544 xl('Allow Version 2 Onsite Patient to make and view appointments online.')
2547 'allow_portal_chat' => array(
2548 xl('Allow Version 2 Onsite Online Secure Chat'),
2549 'bool', // data type
2550 '1',
2551 xl('Allow Version 2 Onsite Patient to use Secure Chat Application.')
2554 'portal_two_payments' => array(
2555 xl('Allow Version 2 Onsite Online Payments'),
2556 'bool', // data type
2557 '0',
2558 xl('Allow Version 2 Onsite Patient to make payments online.')
2561 'portal_two_pass_reset' => array(
2562 xl('Allow Version 2 Patients to Reset Credentials'),
2563 'bool', // data type
2564 '0',
2565 xl('Patient may change their logon from portal login dialog.')
2568 'portal_onsite_enable' => array(
2569 xl('Enable Version 1 Onsite Patient Portal'),
2570 'bool', // data type
2571 '0',
2572 xl('Enable Version 1 Onsite Patient Portal')
2575 'portal_onsite_address' => array(
2576 xl('Version 1 Onsite Patient Portal Site Address'),
2577 'text', // data type
2578 'https://your_web_site.com/openemr/patients',
2579 xl('Website link for the Version 1 Onsite Patient Portal.')
2582 'portal_onsite_document_download' => array(
2583 xl('Enable Onsite Patient Portal Document Download'),
2584 'bool', // data type
2585 '1',
2586 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2589 'portal_offsite_enable' => array(
2590 xl('Enable Offsite Patient Portal'),
2591 'bool', // data type
2592 '0',
2593 xl('Enable Offsite Patient Portal.')
2595 'portal_offsite_providerid' => array(
2596 xl('Offsite Patient Portal Provider ID'),
2597 'text', // data type
2599 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2602 'portal_offsite_username' => array(
2603 xl('Offsite Patient Portal Username'),
2604 'text', // data type
2606 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2609 'portal_offsite_password' => array(
2610 xl('Offsite Patient Portal Password'),
2611 'pwd', // data type
2613 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2616 'portal_offsite_address' => array(
2617 xl('Offsite Patient Portal Site Address'),
2618 'text', // data type
2619 'https://ssh.mydocsportal.com/provider.php',
2620 xl('Offsite Https link for the Patient Portal.')
2623 'portal_offsite_address_patient_link' => array(
2624 xl('Offsite Patient Portal Site Address (Patient Link)'),
2625 'text', // data type
2626 'https://ssh.mydocsportal.com',
2627 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2630 // Currently the "CMS Portal" supports WordPress. Other Content Management
2631 // Systems may be supported in the future.
2633 'gbl_portal_cms_enable' => array(
2634 xl('Enable CMS Portal'),
2635 'bool', // data type
2636 '0',
2637 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2640 'gbl_portal_cms_address' => array(
2641 xl('CMS Portal Site Address'),
2642 'text', // data type
2643 'https://your_cms_site.com/',
2644 xl('URL for the WordPress site that supports the portal')
2647 'gbl_portal_cms_username' => array(
2648 xl('CMS Portal Username'),
2649 'text', // data type
2651 xl('Login name of WordPress user for portal access')
2654 'gbl_portal_cms_password' => array(
2655 xl('CMS Portal Password'),
2656 'text', // data type
2658 xl('Password for the above user')
2663 // Connectors Tab
2665 'Connectors' => array(
2667 'fhir_enable' => array(
2668 xl('Enable FHIR Provider Client Service'),
2669 array(
2670 0 => xl('Off: No Service.'),
2671 1 => xl('On: HAPI FHIR.'),
2672 2 => xl('On: Smart on FHIR.'),
2674 '0',
2675 xl('Enable FHIR Provider Client Service')
2678 'fhir_base_url' => array(
2679 xl('FHIR Server Base Address'),
2680 'text',
2681 'https://hapi.fhir.org/baseDstu3/',
2682 xl('Base URL for FHIR Server. Url should end with /')
2685 'medex_enable' => array(
2686 xl('Enable MedEx Communication Service'),
2687 'bool', // data type
2688 '0',
2689 xl('Enable MedEx Communication Service')
2692 'erx_enable' => array(
2693 xl('Enable NewCrop eRx Service'),
2694 'bool',
2695 '0',
2696 xl('Enable NewCrop eRx Service.') . ' ' .
2697 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.')
2700 'erx_newcrop_path' => array(
2701 xl('NewCrop eRx Site Address'),
2702 'text',
2703 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2704 xl('URL for NewCrop eRx Site Address.')
2707 'erx_newcrop_path_soap' => array(
2708 xl('NewCrop eRx Web Service Address'),
2709 'text',
2710 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2711 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2714 'erx_soap_ttl_allergies' => array(
2715 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2716 'num',
2717 '21600',
2718 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2721 'erx_soap_ttl_medications' => array(
2722 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2723 'num',
2724 '21600',
2725 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2728 'erx_account_partner_name' => array(
2729 xl('NewCrop eRx Partner Name'),
2730 'text',
2732 xl('Partner Name issued for NewCrop eRx service.')
2735 'erx_account_name' => array(
2736 xl('NewCrop eRx Name'),
2737 'text',
2739 xl('Account Name issued for NewCrop eRx service.')
2742 'erx_account_password' => array(
2743 xl('NewCrop eRx Password'),
2744 'pass',
2746 xl('Account Password issued for NewCrop eRx service.')
2749 'erx_account_id' => array(
2750 xl('NewCrop eRx Account Id'),
2751 'text',
2752 '1',
2753 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2756 'erx_upload_active' => array(
2757 xl('Only upload active prescriptions'),
2758 'bool',
2759 '0',
2760 xl('Only upload active prescriptions to NewCrop eRx.')
2763 'erx_import_status_message' => array(
2764 xl('Enable NewCrop eRx import status message'),
2765 'bool',
2766 '0',
2767 xl('Enable import status message after visiting NewCrop eRx.')
2770 'erx_medication_display' => array(
2771 xl('Do not display NewCrop eRx Medications uploaded'),
2772 'bool',
2773 '0',
2774 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2777 'erx_allergy_display' => array(
2778 xl('Do not display NewCrop eRx Allergy uploaded'),
2779 'bool',
2780 '0',
2781 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2784 'erx_default_patient_country' => array(
2785 xl('NewCrop eRx Default Patient Country'),
2786 array(
2787 '' => '',
2788 'US' => xl('USA'),
2789 'CA' => xl('Canada'),
2790 'MX' => xl('Mexico'),
2793 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2796 'erx_debug_setting' => array(
2797 xl('NewCrop eRx Debug Setting'),
2798 array(
2799 0 => xl('None'),
2800 1 => xl('Request Only'),
2801 2 => xl('Response Only'),
2802 3 => xl('Request & Response'),
2804 '0',
2805 xl('Log all NewCrop eRx Requests and / or Responses.'),
2808 'weno_rx_enable' => array(
2809 xl('Enable Weno eRx Service'),
2810 'bool',
2811 '0',
2812 xl('Enable Weno eRx Service') . ' ' . xl('Contact Open Med Practice, www.openmedpractice.com for subscribing to the Weno Free eRx service.')
2815 'weno_account_id' => array(
2816 xl('Weno eRx Account Id'),
2817 'text',
2818 '137',
2819 xl('Account Id issued for Weno eRx service.')
2822 'weno_account_pass' => array(
2823 xl('Weno eRx Account Pass'),
2824 'text',
2825 '7C84773D5063B20BC9E41636A091C6F17E9C1E34',
2826 xl('Account Id issued for Weno eRx service.')
2829 'weno_provider_id' => array(
2830 xl('Weno eRx Clinic ID'),
2831 'text',
2832 'C36275',
2833 xl('Account Id issued for Your clinics eRx service.')
2836 'ccda_alt_service_enable' => array(
2837 xl('Enable C-CDA Alternate Service'),
2838 array(
2839 0 => xl('Off'),
2840 1 => xl('Care Coordination Only'),
2841 2 => xl('Portal Only'),
2842 3 => xl('Both'),
2844 '0',
2845 xl('Enable C-CDA Alternate Service')
2848 'phimail_enable' => array(
2849 xl('Enable phiMail Direct Messaging Service'),
2850 'bool', // data type
2851 '0',
2852 xl('Enable phiMail Direct Messaging Service')
2855 'phimail_server_address' => array(
2856 xl('phiMail Server Address'),
2857 'text', // data type
2858 'https://phimail.example.com:32541',
2859 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2862 'phimail_username' => array(
2863 xl('phiMail Username'),
2864 'text', // data type
2866 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2869 'phimail_password' => array(
2870 xl('phiMail Password'),
2871 'pass', // data type
2873 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2876 'phimail_notify' => array(
2877 xl('phiMail notification user'),
2878 'text', // data type
2879 'admin',
2880 xl('This user will receive notification of new incoming Direct messages')
2883 'phimail_interval' => array(
2884 xl('phiMail Message Check Interval (minutes)'),
2885 'num', // data type
2886 '5',
2887 xl('Interval between message checks (set to zero for manual checks only)')
2890 'phimail_ccd_enable' => array(
2891 xl('phiMail Allow CCD Send'),
2892 'bool', // data type
2893 '0',
2894 xl('phiMail Allow CCD Send')
2897 'phimail_ccr_enable' => array(
2898 xl('phiMail Allow CCR Send'),
2899 'bool', // data type
2900 '0',
2901 xl('phiMail Allow CCR Send')
2905 'Rx' => array(
2906 'rx_enable_DEA' => array(
2907 xl('Rx Enable DEA #'),
2908 'bool', // data type
2909 '1',
2910 xl('Rx Enable DEA #')
2912 'rx_show_DEA' => array(
2913 xl('Rx Show DEA #'),
2914 'bool', // data type
2915 '0',
2916 xl('Rx Show DEA #')
2918 'rx_enable_NPI' => array(
2919 xl('Rx Enable NPI'),
2920 'bool', // data type
2921 '0',
2922 xl('Rx Enable NPI')
2924 'rx_show_NPI' => array(
2925 xl('Rx Show NPI'),
2926 'bool', // data type
2927 '0',
2928 xl('Rx Show NPI')
2930 'rx_enable_SLN' => array(
2931 xl('Rx Enable State Lic. #'),
2932 'bool', // data type
2933 '0',
2934 xl('Rx Enable State Lic. #')
2936 'rx_show_SLN' => array(
2937 xl('Rx Show State Lic. #'),
2938 'bool', // data type
2939 '0',
2940 xl('Rx Show State Lic. #')
2942 'rx_show_drug-drug' => array(
2943 xl('Rx NLM Drug-Drug'),
2944 'bool', // data type
2945 '0',
2946 xl('Rx NLM Drug-Drug')
2948 'rx_paper_size' => array(
2949 xl('Rx Paper Size'), // descriptive name
2950 array(
2951 'LETTER' => xl('Letter Paper Size'),
2952 'LEGAL' => xl('Legal Paper Size'),
2953 'FOLIO' => xl('Folio Paper Size'),
2954 'EXECUTIVE' => xl('Executive Paper Size'),
2955 '4A0' => ('4A0' . " " . xl('Paper Size')),
2956 '2A0' => ('2A0' . " " . xl('Paper Size')),
2957 'A0' => ('A0' . " " . xl('Paper Size')),
2958 'A1' => ('A1' . " " . xl('Paper Size')),
2959 'A2' => ('A2' . " " . xl('Paper Size')),
2960 'A3' => ('A3' . " " . xl('Paper Size')),
2961 'A4' => ('A4' . " " . xl('Paper Size')),
2962 'A5' => ('A5' . " " . xl('Paper Size')),
2963 'A6' => ('A6' . " " . xl('Paper Size')),
2964 'A7' => ('A7' . " " . xl('Paper Size')),
2965 'A8' => ('A8' . " " . xl('Paper Size')),
2966 'A9' => ('A9' . " " . xl('Paper Size')),
2967 'A10' => ('A10' . " " . xl('Paper Size')),
2968 'B0' => ('B0' . " " . xl('Paper Size')),
2969 'B1' => ('B1' . " " . xl('Paper Size')),
2970 'B2' => ('B2' . " " . xl('Paper Size')),
2971 'B3' => ('B3' . " " . xl('Paper Size')),
2972 'B4' => ('B4' . " " . xl('Paper Size')),
2973 'B5' => ('B5' . " " . xl('Paper Size')),
2974 'B6' => ('B6' . " " . xl('Paper Size')),
2975 'B7' => ('B7' . " " . xl('Paper Size')),
2976 'B8' => ('B8' . " " . xl('Paper Size')),
2977 'B9' => ('B9' . " " . xl('Paper Size')),
2978 'B10' => ('B10' . " " . xl('Paper Size')),
2979 'C0' => ('C0' . " " . xl('Paper Size')),
2980 'C1' => ('C1' . " " . xl('Paper Size')),
2981 'C2' => ('C2' . " " . xl('Paper Size')),
2982 'C3' => ('C3' . " " . xl('Paper Size')),
2983 'C4' => ('C4' . " " . xl('Paper Size')),
2984 'C5' => ('C5' . " " . xl('Paper Size')),
2985 'C6' => ('C6' . " " . xl('Paper Size')),
2986 'C7' => ('C7' . " " . xl('Paper Size')),
2987 'C8' => ('C8' . " " . xl('Paper Size')),
2988 'C9' => ('C9' . " " . xl('Paper Size')),
2989 'C10' => ('C10' . " " . xl('Paper Size')),
2990 'RA0' => ('RA0' . " " . xl('Paper Size')),
2991 'RA1' => ('RA1' . " " . xl('Paper Size')),
2992 'RA2' => ('RA2' . " " . xl('Paper Size')),
2993 'RA3' => ('RA3' . " " . xl('Paper Size')),
2994 'RA4' => ('RA4' . " " . xl('Paper Size')),
2995 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2996 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2997 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2998 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2999 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3001 'LETTER', // default = tree menu
3002 xl('Rx Paper Size')
3004 'rx_left_margin' => array(
3005 xl('Rx Left Margin (px)'),
3006 'num',
3007 '30',
3008 xl('Rx Left Margin (px)')
3010 'rx_right_margin' => array(
3011 xl('Rx Right Margin (px)'),
3012 'num',
3013 '30',
3014 xl('Rx Right Margin (px)')
3016 'rx_top_margin' => array(
3017 xl('Rx Top Margin (px)'),
3018 'num',
3019 '72',
3020 xl('Rx Top Margin (px)')
3022 'rx_bottom_margin' => array(
3023 xl('Rx Bottom Margin (px)'),
3024 'num',
3025 '30',
3026 xl('Rx Bottom Margin (px)')
3028 'rx_use_fax_template' => array(
3029 xl('Show button for download fax template'),
3030 'bool', // data type
3031 '1', // default = true
3032 xl('Show button in the prescription list for download fax template')
3034 'rx_zend_html_template' => array(
3035 xl('Rx html print - zend module'),
3036 'bool', // data type
3037 '0', // default = false
3038 xl('Use an html template from zend module')
3040 'rx_zend_html_action' => array(
3041 xl('Name of zend template for html print'),
3042 'text', // data type
3043 'default',
3044 xl('Name of zend template for html print, possible to add custom template in the PrescriptionTemplate module')
3046 'rx_zend_pdf_template' => array(
3047 xl('Rx pdf - zend template'),
3048 'bool', // data type
3049 '0', // default = false
3050 xl('Use a pdf template from zend module')
3052 'rx_zend_pdf_action' => array(
3053 xl('Name of zend template for pdf export'),
3054 'text', // data type
3055 'default',
3056 xl('Name of zend template for pdf export, possible to add custom template in the PrescriptionTemplate module')
3059 'PDF' => array(
3060 'pdf_layout' => array(
3061 xl('Layout'),
3062 array(
3063 'P' => xl('Portrait'),
3064 'L' => xl('Landscape')
3066 'P', //defaut
3067 xl("Choose Layout Direction"),
3069 'pdf_language' => array(
3070 xl('PDF Language'),
3071 array(
3072 'aa' => xl('Afar'),
3073 'af' => xl('Afrikaans'),
3074 'ak' => xl('Akan'),
3075 'sq' => xl('Albanian'),
3076 'am' => xl('Amharic'),
3077 'ar' => xl('Arabic'),
3078 'an' => xl('Aragonese'),
3079 'hy' => xl('Armenian'),
3080 'as' => xl('Assamese'),
3081 'av' => xl('Avaric'),
3082 'ae' => xl('Avestan'),
3083 'ay' => xl('Aymara'),
3084 'az' => xl('Azerbaijani'),
3085 'bm' => xl('Bambara'),
3086 'ba' => xl('Bashkir'),
3087 'eu' => xl('Basque'),
3088 'be' => xl('Belarusian'),
3089 'bn' => xl('Bengali- Bangla'),
3090 'bh' => xl('Bihari'),
3091 'bi' => xl('Bislama'),
3092 'bs' => xl('Bosnian'),
3093 'br' => xl('Breton'),
3094 'bg' => xl('Bulgarian'),
3095 'my' => xl('Burmese'),
3096 'ca' => xl('Catalan- Valencian'),
3097 'ch' => xl('Chamorro'),
3098 'ce' => xl('Chechen'),
3099 'ny' => xl('Chichewa- Chewa- Nyanja'),
3100 'zh' => xl('Chinese'),
3101 'cv' => xl('Chuvash'),
3102 'kw' => xl('Cornish'),
3103 'co' => xl('Corsican'),
3104 'cr' => xl('Cree'),
3105 'hr' => xl('Croatian'),
3106 'cs' => xl('Czech'),
3107 'da' => xl('Danish'),
3108 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
3109 'nl' => xl('Dutch'),
3110 'dz' => xl('Dzongkha'),
3111 'en' => xl('English'),
3112 'eo' => xl('Esperanto'),
3113 'et' => xl('Estonian'),
3114 'ee' => xl('Ewe'),
3115 'fo' => xl('Faroese'),
3116 'fj' => xl('Fijian'),
3117 'fi' => xl('Finnish'),
3118 'fr' => xl('French'),
3119 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
3120 'gl' => xl('Galician'),
3121 'ka' => xl('Georgian'),
3122 'de' => xl('German'),
3123 'el' => xl('Greek, Modern'),
3124 'gn' => xl('Guarani'),
3125 'gu' => xl('Gujarati'),
3126 'ht' => xl('Haitian- Haitian Creole'),
3127 'ha' => xl('Hausa'),
3128 'he' => xl('Hebrew (modern)'),
3129 'hz' => xl('Herero'),
3130 'hi' => xl('Hindi'),
3131 'ho' => xl('Hiri Motu'),
3132 'hu' => xl('Hungarian'),
3133 'ia' => xl('Interlingua'),
3134 'id' => xl('Indonesian'),
3135 'ie' => xl('Interlingue'),
3136 'ga' => xl('Irish'),
3137 'ig' => xl('Igbo'),
3138 'ik' => xl('Inupiaq'),
3139 'io' => xl('Ido'),
3140 'is' => xl('Icelandic'),
3141 'it' => xl('Italian'),
3142 'iu' => xl('Inuktitut'),
3143 'ja' => xl('Japanese'),
3144 'jv' => xl('Javanese'),
3145 'kl' => xl('Kalaallisut, Greenlandic'),
3146 'kn' => xl('Kannada'),
3147 'kr' => xl('Kanuri'),
3148 'ks' => xl('Kashmiri'),
3149 'kk' => xl('Kazakh'),
3150 'km' => xl('Khmer'),
3151 'ki' => xl('Kikuyu, Gikuyu'),
3152 'rw' => xl('Kinyarwanda'),
3153 'ky' => xl('Kyrgyz'),
3154 'kv' => xl('Komi'),
3155 'kg' => xl('Kongo'),
3156 'ko' => xl('Korean'),
3157 'ku' => xl('Kurdish'),
3158 'kj' => xl('Kwanyama, Kuanyama'),
3159 'la' => xl('Latin'),
3160 'lb' => xl('Luxembourgish, Letzeburgesch'),
3161 'lg' => xl('Ganda'),
3162 'li' => xl('Limburgish, Limburgan, Limburger'),
3163 'ln' => xl('Lingala'),
3164 'lo' => xl('Lao'),
3165 'lt' => xl('Lithuanian'),
3166 'lu' => xl('Luba-Katanga'),
3167 'lv' => xl('Latvian'),
3168 'gv' => xl('Manx'),
3169 'mk' => xl('Macedonian'),
3170 'mg' => xl('Malagasy'),
3171 'ms' => xl('Malay'),
3172 'ml' => xl('Malayalam'),
3173 'mt' => xl('Maltese'),
3174 'mi' => xl('Maori'),
3175 'mr' => xl('Marathi (Marathi)'),
3176 'mh' => xl('Marshallese'),
3177 'mn' => xl('Mongolian'),
3178 'na' => xl('Nauru'),
3179 'nv' => xl('Navajo, Navaho'),
3180 'nb' => xl('Norwegian Bokmal'),
3181 'nd' => xl('North Ndebele'),
3182 'ne' => xl('Nepali'),
3183 'ng' => xl('Ndonga'),
3184 'nn' => xl('Norwegian Nynorsk'),
3185 'no' => xl('Norwegian'),
3186 'ii' => xl('Nuosu'),
3187 'nr' => xl('South Ndebele'),
3188 'oc' => xl('Occitan'),
3189 'oj' => xl('Ojibwe, Ojibwa'),
3190 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
3191 'om' => xl('Oromo'),
3192 'or' => xl('Oriya'),
3193 'os' => xl('Ossetian, Ossetic'),
3194 'pa' => xl('Panjabi, Punjabi'),
3195 'pi' => xl('Pali'),
3196 'fa' => xl('Persian (Farsi)'),
3197 'pl' => xl('Polish'),
3198 'ps' => xl('Pashto, Pushto'),
3199 'pt' => xl('Portuguese'),
3200 'qu' => xl('Quechua'),
3201 'rm' => xl('Romansh'),
3202 'rn' => xl('Kirundi'),
3203 'ro' => xl('Romanian'),
3204 'ru' => xl('Russian'),
3205 'sa' => xl('Sanskrit (Samskrta)'),
3206 'sc' => xl('Sardinian'),
3207 'sd' => xl('Sindhi'),
3208 'se' => xl('Northern Sami'),
3209 'sm' => xl('Samoan'),
3210 'sg' => xl('Sango'),
3211 'sr' => xl('Serbian'),
3212 'gd' => xl('Scottish Gaelic- Gaelic'),
3213 'sn' => xl('Shona'),
3214 'si' => xl('Sinhala, Sinhalese'),
3215 'sk' => xl('Slovak'),
3216 'sl' => xl('Slovene'),
3217 'so' => xl('Somali'),
3218 'st' => xl('Southern Sotho'),
3219 'es' => xl('Spanish- Castilian'),
3220 'su' => xl('Sundanese'),
3221 'sw' => xl('Swahili'),
3222 'ss' => xl('Swati'),
3223 'sv' => xl('Swedish'),
3224 'ta' => xl('Tamil'),
3225 'te' => xl('Telugu'),
3226 'tg' => xl('Tajik'),
3227 'th' => xl('Thai'),
3228 'ti' => xl('Tigrinya'),
3229 'bo' => xl('Tibetan Standard, Tibetan, Central'),
3230 'tk' => xl('Turkmen'),
3231 'tl' => xl('Tagalog'),
3232 'tn' => xl('Tswana'),
3233 'to' => xl('Tonga (Tonga Islands)'),
3234 'tr' => xl('Turkish'),
3235 'ts' => xl('Tsonga'),
3236 'tt' => xl('Tatar'),
3237 'tw' => xl('Twi'),
3238 'ty' => xl('Tahitian'),
3239 'ug' => xl('Uyghur, Uighur'),
3240 'uk' => xl('Ukrainian'),
3241 'ur' => xl('Urdu'),
3242 'uz' => xl('Uzbek'),
3243 've' => xl('Venda'),
3244 'vi' => xl('Vietnamese'),
3245 'vo' => xl('Volapuk'),
3246 'wa' => xl('Walloon'),
3247 'cy' => xl('Welsh'),
3248 'wo' => xl('Wolof'),
3249 'fy' => xl('Western Frisian'),
3250 'xh' => xl('Xhosa'),
3251 'yi' => xl('Yiddish'),
3252 'yo' => xl('Yoruba'),
3253 'za' => xl('Zhuang, Chuang'),
3254 'zu' => xl('Zulu'),
3256 'en', // default English
3257 xl('Choose PDF languange Preference'),
3259 'pdf_size' => array(
3260 xl('Paper Size'), // Descriptive Name
3261 array(
3262 'LETTER' => xl('Letter Paper Size'),
3263 'LEGAL' => xl('Legal Paper Size'),
3264 'FOLIO' => xl('Folio Paper Size'),
3265 'EXECUTIVE' => xl('Executive Paper Size'),
3266 '4A0' => ('4A0' . " " . xl('Paper Size')),
3267 '2A0' => ('2A0' . " " . xl('Paper Size')),
3268 'A0' => ('A0' . " " . xl('Paper Size')),
3269 'A1' => ('A1' . " " . xl('Paper Size')),
3270 'A2' => ('A2' . " " . xl('Paper Size')),
3271 'A3' => ('A3' . " " . xl('Paper Size')),
3272 'A4' => ('A4' . " " . xl('Paper Size')),
3273 'A5' => ('A5' . " " . xl('Paper Size')),
3274 'A6' => ('A6' . " " . xl('Paper Size')),
3275 'A7' => ('A7' . " " . xl('Paper Size')),
3276 'A8' => ('A8' . " " . xl('Paper Size')),
3277 'A9' => ('A9' . " " . xl('Paper Size')),
3278 'A10' => ('A10' . " " . xl('Paper Size')),
3279 'B0' => ('B0' . " " . xl('Paper Size')),
3280 'B1' => ('B1' . " " . xl('Paper Size')),
3281 'B2' => ('B2' . " " . xl('Paper Size')),
3282 'B3' => ('B3' . " " . xl('Paper Size')),
3283 'B4' => ('B4' . " " . xl('Paper Size')),
3284 'B5' => ('B5' . " " . xl('Paper Size')),
3285 'B6' => ('B6' . " " . xl('Paper Size')),
3286 'B7' => ('B7' . " " . xl('Paper Size')),
3287 'B8' => ('B8' . " " . xl('Paper Size')),
3288 'B9' => ('B9' . " " . xl('Paper Size')),
3289 'B10' => ('B10' . " " . xl('Paper Size')),
3290 'C0' => ('C0' . " " . xl('Paper Size')),
3291 'C1' => ('C1' . " " . xl('Paper Size')),
3292 'C2' => ('C2' . " " . xl('Paper Size')),
3293 'C3' => ('C3' . " " . xl('Paper Size')),
3294 'C4' => ('C4' . " " . xl('Paper Size')),
3295 'C5' => ('C5' . " " . xl('Paper Size')),
3296 'C6' => ('C6' . " " . xl('Paper Size')),
3297 'C7' => ('C7' . " " . xl('Paper Size')),
3298 'C8' => ('C8' . " " . xl('Paper Size')),
3299 'C9' => ('C9' . " " . xl('Paper Size')),
3300 'C10' => ('C10' . " " . xl('Paper Size')),
3301 'RA0' => ('RA0' . " " . xl('Paper Size')),
3302 'RA1' => ('RA1' . " " . xl('Paper Size')),
3303 'RA2' => ('RA2' . " " . xl('Paper Size')),
3304 'RA3' => ('RA3' . " " . xl('Paper Size')),
3305 'RA4' => ('RA4' . " " . xl('Paper Size')),
3306 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3307 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3308 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3309 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3310 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3312 'LETTER',
3313 xl('Choose Paper Size')
3315 'pdf_left_margin' => array(
3316 xl('Left Margin (mm)'),
3317 'num',
3318 '5',
3319 xl('Left Margin (mm)')
3321 'pdf_right_margin' => array(
3322 xl('Right Margin (mm)'),
3323 'num',
3324 '5',
3325 xl('Right Margin (mm)')
3327 'pdf_top_margin' => array(
3328 xl('Top Margin (mm)'),
3329 'num',
3330 '5',
3331 xl('Top Margin (mm)')
3333 'pdf_bottom_margin' => array(
3334 xl('Bottom Margin (px)'),
3335 'num',
3336 '8',
3337 xl('Bottom Margin (px)')
3339 'pdf_output' => array(
3340 xl('Output Type'),
3341 array(
3342 'D' => xl('Download'),
3343 'I' => xl('Inline')
3345 'D', //defaut
3346 xl("Choose Download or Display Inline"),
3349 'chart_label_type' => array(
3350 xl('Patient Label Type'),
3351 array(
3352 '0' => xl('None'),
3353 '1' => '5160',
3354 '2' => '5161',
3355 '3' => '5162'
3357 '1', // default
3358 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3361 'barcode_label_type' => array(
3362 xl('Barcode Label Type'),
3363 array(
3364 '0' => xl('None'),
3365 '1' => 'std25',
3366 '2' => 'int25',
3367 '3' => 'ean8',
3368 '4' => 'ean13',
3369 '5' => 'upc',
3370 '6' => 'code11',
3371 '7' => 'code39',
3372 '8' => 'code93',
3373 '9' => 'code128',
3374 '10' => 'codabar',
3375 '11' => 'msi',
3376 '12' => 'datamatrix'
3378 '9', // default = None
3379 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3382 'addr_label_type' => array(
3383 xl('Print Patient Address Label'),
3384 'bool', // data type
3385 '1', // default = false
3386 xl('Select to print patient address labels from popups in left nav screen.')
3389 'env_x_width' => array(
3390 xl('Envelope Width in mm'),
3391 'num', // data type
3392 '104.775',
3393 xl('In Portrait mode, determines the width of the envelope along the x-axis in mm')
3396 'env_y_height' => array(
3397 xl('Envelope Height in mm'),
3398 'num', // data type
3399 '241.3',
3400 xl('In Portrait mode, determines the height of the envelope along the y-axis in mm')
3403 'env_font_size' => array(
3404 xl('Font Size in Pt'),
3405 'num', // data type
3406 '14',
3407 xl('Sets the font of the address text on the envelope in mm')
3410 'env_x_dist' => array(
3411 xl('Envelope x-axis starting pt'),
3412 'num', // data type
3413 '65',
3414 xl('Distance from the \'top\' of the envelope in mm')
3417 'env_y_dist' => array(
3418 xl('Envelope y-axis starting pt'),
3419 'num', // data type
3420 '220',
3421 xl('Distance from the right most edge of the envelope in portrait position in mm')