Highway to PSR2
[openemr.git] / library / globals.inc.php
blob0ab938a6378a4886b7c186a43d1c4a9eb3d3d6f6
1 <?php
2 // Copyright (C) 2010-2015 Rod Roark <rod@sunsetsystems.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 // $GLOBALS['print_command'] is the
10 // Print command for spooling to printers, used by statements.inc.php
11 // This is the command to be used for printing (without the filename).
12 // The word following "-P" should be the name of your printer. This
13 // example is designed for 8.5x11-inch paper with 1-inch margins,
14 // 10 CPI, 6 LPI, 65 columns, 54 lines per page.
16 // IF lpr services are installed on Windows this setting will be similar
17 // Otherwise configure it as needed (print /d:PRN) might be an option for Windows parallel printers
19 // Current supported languages: // Allow capture of term for translation:
20 // Albanian // xl('Albanian')
21 // Amharic // xl('Amharic')
22 // Arabic // xl('Arabic')
23 // Armenian // xl('Armenian')
24 // Bahasa Indonesia // xl('Bahasa Indonesia')
25 // Bengali // xl('Bengali')
26 // Bosnian // xl('Bosnian')
27 // Chinese (Simplified) // xl('Chinese (Simplified)')
28 // Chinese (Traditional) // xl('Chinese (Traditional)')
29 // Croatian // xl('Croatian')
30 // Czech // xl('Czech')
31 // Danish // xl('Danish')
32 // Dutch // xl('Dutch')
33 // English (Indian) // xl('English (Indian)')
34 // English (Standard) // xl('English (Standard)')
35 // Estonian // xl('Estonian')
36 // Finnish // xl('Finnish')
37 // French // xl('French (Standard)')
38 // French // xl('French (Canadian)')
39 // Georgian // xl('Georgian')
40 // German // xl('German')
41 // Greek // xl('Greek')
42 // Hebrew // xl('Hebrew')
43 // Hindi // xl('Hindi')
44 // Hungarian // xl('Hungarian')
45 // Italian // xl('Italian')
46 // Japanese // xl('Japanese')
47 // Korean // xl('Korean')
48 // Lithuanian // xl('Lithuanian')
49 // Marathi // xl('Marathi')
50 // Mongolian // xl('Mongolian')
51 // Norwegian // xl('Norwegian')
52 // Persian // xl('Persian')
53 // Polish // xl('Polish')
54 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
55 // Portuguese (European) // xl('Portuguese (European)')
56 // Romanian // xl('Romanian')
57 // Russian // xl('Russian')
58 // Serbian // xl('Serbian')
59 // Sinhala // xl('Sinhala')
60 // Slovak // xl('Slovak')
61 // Somali // xl('Somali')
62 // Spanish (Latin American) // xl('Spanish (Latin American)')
63 // Spanish (Spain) // xl('Spanish (Spain)')
64 // Swedish // xl('Swedish')
65 // Tamil // xl('Tamil')
66 // Turkish // xl('Turkish')
67 // Ukrainian // xl('Ukrainian')
68 // Urdu // xl('Urdu')
69 // Vietnamese // xl('Vietnamese')
71 // OS-dependent stuff.
72 if (stristr(PHP_OS, 'WIN')) {
73 // MS Windows
74 $mysql_bin_dir = 'C:/xampp/mysql/bin';
75 $perl_bin_dir = 'C:/xampp/perl/bin';
76 $temporary_files_dir = 'C:/windows/temp';
77 $backup_log_dir = 'C:/windows/temp';
78 } else {
79 // Everything else
80 $mysql_bin_dir = '/usr/bin';
81 $perl_bin_dir = '/usr/bin';
82 $temporary_files_dir = '/tmp';
83 $backup_log_dir = '/tmp';
86 // Language constant declarations:
87 // xl('Appearance')
88 // xl('Locale')
89 // xl('Features')
90 // xl('Calendar')
91 // xl('Security')
92 // xl('Notifications')
93 // xl('Miscellaneous')
95 // List of user specific tabs and globals
96 $USER_SPECIFIC_TABS = array('Appearance',
97 'Locale',
98 'Report',
99 'Calendar',
100 'Connectors');
101 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
102 'new_tabs_layout',
103 'theme_tabs_layout',
104 'css_header',
105 'menu_styling_vertical',
106 'gbl_pt_list_page_size',
107 'gbl_pt_list_new_window',
108 'units_of_measurement',
109 'us_weight_format',
110 'date_display_format',
111 'time_display_format',
112 'ledger_begin_date',
113 'print_next_appointment_on_ledger',
114 'calendar_view_type',
115 'event_color',
116 'pat_trkr_timer',
117 'ptkr_visit_reason',
118 'checkout_roll_off',
119 'erx_import_status_message');
121 // Gets array of time zones supported by PHP.
123 function gblTimeZones()
125 $zones = timezone_identifiers_list();
126 $arr = array('' => xl('Unassigned'));
127 foreach ($zones as $zone) {
128 $arr[$zone] = str_replace('_', ' ', $zone);
131 return $arr;
134 $GLOBALS_METADATA = array(
136 // Appearance Tab
138 'Appearance' => array(
140 'default_top_pane' => array(
141 xl('Main Top Pane Screen'), // descriptive name
142 array(
143 'main_info.php' => xl('Calendar Screen'),
144 '../new/new.php' => xl('Patient Search/Add Screen'),
145 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
146 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
148 'main_info.php', // default = calendar
149 xl('Type of screen layout')
152 'new_tabs_layout' => array(
153 xl('Layout (need to logout/login after change this setting)'),
154 array(
155 '0' => xl('Frame'),
156 '1' => xl('Tabs'),
158 '1',
159 xl('Choose the layout (need to logout and then login to see this new setting).')
162 'theme_tabs_layout' => array(
163 xl('Tabs Layout Theme (need to logout/login after change this setting)'),
164 'tabs_css',
165 'tabs_style_full.css',
166 xl('Theme of the tabs layout (need to logout and then login to see this new setting).')
169 'css_header' => array(
170 xl('General Theme (need to logout/login after change this setting)'),
171 'css',
172 'style_light.css',
173 xl('Pick a general theme (need to logout/login after change this setting).')
176 'font-family' => [
177 xl('Default font (need to logout/login after change this setting)'),
179 '__default__' => 'Use Theme Font',
180 'Arial, Helvetica, sans-serif' => "Arial",
181 '"Arial Black", Gadget, sans-serif' => "Arial Black",
182 'Impact, Charcoal, sans-serif' => "Impact",
183 '"Lucida Sans Unicode", "Lucida Grande", sans-serif' => "Lucida Sans",
184 'Tahoma, Geneva, sans-serif' => "Tahoma",
185 '"Trebuchet MS", Helvetica, sans-serif' => "Trebuchet MS",
186 'Verdana, Geneva, sans-serif' => "Verdana",
187 'lato' => "Lato",
189 '__default__',
190 xl('Select the default font'),
193 'font-size' => [
194 xl('Default font size (need to logout/login after change this setting)'),
196 '__default__' => 'Use Theme Font Size',
197 '10px' => '10px',
198 '12px' => '12px',
199 '14px' => '14px',
200 '16px' => '16px',
201 '18px' => '18px',
203 '__default__',
204 xl("Select the default font size"),
207 'menu_styling_vertical' => array(
208 xl('Vertical Menu Style'),
209 array(
210 '0' => xl('Tree'),
211 '1' => xl('Sliding'),
213 '1',
214 xl('Vertical Menu Style')
217 'default_encounter_view' => array(
218 xl('Default Encounter View'), // descriptive name
219 array(
220 '0' => xl('Clinical View'),
221 '1' => xl('Billing View'),
223 '0', // default = tree menu
224 xl('Choose your default encounter view')
227 'gbl_nav_area_width' => array(
228 xl('Navigation Area Width'),
229 'num',
230 '150',
231 xl('Width in pixels of the left navigation frame.')
234 'openemr_name' => array(
235 xl('Application Title'),
236 'text',
237 'OpenEMR',
238 xl('Application name for login page and main window title.')
241 'enable_group_therapy' => array(
242 xl('Enable Group Therapy'),
243 'bool', // data type
244 '0', // default = false
245 xl('Enables groups module in system.')
248 'full_new_patient_form' => array(
249 xl('New Patient Form'),
251 array(
252 '0' => xl('Old-style static form without search or duplication check'),
253 '1' => xl('All demographics fields, with search and duplication check'),
254 '2' => xl('Mandatory or specified fields only, search and dup check'),
255 '3' => xl('Mandatory or specified fields only, dup check, no search'),
256 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
258 '1', // default
259 xl('Style of form used for adding new patients')
262 'gbl_edit_patient_form' => array(
263 xl('Modify Patient Form'),
265 array(
266 '0' => xl('Standard check'),
267 '1' => xl('Zend Module check in addition to standard check')
269 '0', // default
270 xl('Validation mechanism for when modifying patient demographics.')
273 'patient_search_results_style' => array(
274 xl('Patient Search Results Style'),
275 array(
276 '0' => xl('Encounter statistics'),
277 '1' => xl('Mandatory and specified fields'),
279 '0', // default
280 xl('Type of columns displayed for patient search results')
283 'gbl_tall_nav_area' => array(
284 xl('Tall Navigation Area'),
285 'bool', // data type
286 '0', // default = false
287 xl('Navigation area uses full height of frameset')
290 'gbl_nav_visit_forms' => array(
291 xl('Navigation Area Visit Forms'),
292 'bool', // data type
293 '1', // default = true
294 xl('Navigation area includes encounter forms')
297 'simplified_demographics' => array(
298 xl('Simplified Demographics'),
299 'bool', // data type
300 '0', // default = false
301 xl('Omit insurance and some other things from the demographics form')
304 'simplified_prescriptions' => array(
305 xl('Simplified Prescriptions'),
306 'bool', // data type
307 '0', // default = false
308 xl('Omit form, route and interval which then become part of dosage')
311 'simplified_copay' => array(
312 xl('Simplified Co-Pay'),
313 'bool', // data type
314 '0', // default = false
315 xl('Omit method of payment from the co-pay panel')
318 'use_charges_panel' => array(
319 xl('Use Charges Panel'),
320 'bool', // data type
321 '0', // default = false
322 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
325 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
326 'enable_fees_in_left_menu' => array(
327 xl('Enable Fees Submenu'),
328 'bool', // data type
329 '1', // default = true
330 xl('Enable Fees Submenu')
332 'enable_batch_payment' => array(
333 xl('Enable Batch Payment'),
334 'bool', // data type
335 '1', // default = true
336 xl('Enable Batch Payment')
338 'enable_posting' => array(
339 xl('Enable Posting'),
340 'bool', // data type
341 '1', // default = true
342 xl('Enable Posting')
344 // EDI history 2012-09-13
345 'enable_edihistory_in_left_menu' => array(
346 xl('Enable EDI History'),
347 'bool', // data type
348 '1', // default = true
349 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
352 'online_support_link' => array(
353 xl('Online Support Link'),
354 'text', // data type
355 'http://open-emr.org/',
356 xl('URL for OpenEMR support.')
359 'support_phone_number' => array(
360 xl('Support Phone Number'),
361 'text',
363 xl('Phone Number for Vendor Support that Appears on the About Page.')
366 'encounter_page_size' => array(
367 xl('Encounter Page Size'),
368 array(
369 '0' => xl('Show All'),
370 '5' => '5',
371 '10' => '10',
372 '15' => '15',
373 '20' => '20',
374 '25' => '25',
375 '50' => '50',
377 '20',
378 xl('Number of encounters to display per page.')
381 'gbl_pt_list_page_size' => array(
382 xl('Patient List Page Size'),
383 array(
384 '10' => '10',
385 '25' => '25',
386 '50' => '50',
387 '100' => '100',
389 '10',
390 xl('Number of patients to display per page in the patient list.')
393 'gbl_pt_list_new_window' => array(
394 xl('Patient List New Window'),
395 'bool', // data type
396 '0', // default = false
397 xl('Default state of New Window checkbox in the patient list.')
400 'gbl_vitals_options' => array(
401 xl('Vitals Form Options'),
402 array(
403 '0' => xl('Standard'),
404 '1' => xl('Omit circumferences'),
406 '0', // default
407 xl('Special treatment for the Vitals form')
410 'insurance_information' => array(
411 xl('Show Additional Insurance Information'), // descriptive name
412 array(
413 '0' => xl('None'),
414 '1' => xl('Address Only'),
415 '2' => xl('Address and Postal Code'),
416 '3' => xl('Address and State'),
417 '4' => xl('Address, State and Postal Code'),
418 '5' => xl('Address, City, State and Postal Code'),
419 '6' => xl('Postal Code and Box Number')
421 '5', // default
422 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
425 'gb_how_sort_list' => array(
426 xl('How to sort a drop-lists'),
427 array(
428 '0' => xl('Sort by seq'),
429 '1' => xl('Sort alphabetically')
431 '0',
432 xl('What kind of sorting will be in the drop lists.')
435 'show_label_login' => array(
436 xl('Show Title on Login'),
437 'bool', // data type
438 '0', // default = false
439 xl('Show Title on Login')
442 'extra_logo_login' => array(
443 xl('Show Extra Logo on Login'),
444 'bool', // data type
445 '0', // default = false
446 xl('Show Extra Logo on Login')
449 'tiny_logo_1' => array(
450 xl('Show Mini Logo 1'),
451 'bool', // data type
452 '0', // default = false
453 xl('Show Mini Logo 1')
456 'tiny_logo_2' => array(
457 xl('Show Mini Logo 2'),
458 'bool', // data type
459 '0', // default = false
460 xl('Show Mini Logo 2')
465 // Locale Tab
467 'Locale' => array(
469 'language_default' => array(
470 xl('Default Language'),
471 'lang', // data type
472 'English (Standard)', // default = english
473 xl('Default language if no other is allowed or chosen.')
476 'language_menu_showall' => array(
477 xl('All Languages Allowed'),
478 'bool', // data type
479 '1', // default = true
480 xl('Allow all available languages as choices on menu at login.')
483 'language_menu_other' => array(
484 xl('Allowed Languages'),
485 'm_lang', // data type
486 '', // default = none
487 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
490 'allow_debug_language' => array(
491 xl('Allow Debugging Language'),
492 'bool', // data type
493 '1', // default = true during development and false for production releases
494 xl('This will allow selection of the debugging (\'dummy\') language.')
497 'translate_no_safe_apostrophe' => array(
498 xl('Do Not Use Safe Apostrophe'),
499 'bool', // data type
500 '0', // default = false
501 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)')
504 'translate_layout' => array(
505 xl('Translate Layouts'),
506 'bool', // data type
507 '1', // default = true
508 xl('Is text from form layouts to be translated?')
511 'translate_lists' => array(
512 xl('Translate Lists'),
513 'bool', // data type
514 '1', // default = true
515 xl('Is text from lists to be translated?')
518 'translate_gacl_groups' => array(
519 xl('Translate Access Control Groups'),
520 'bool', // data type
521 '1', // default = true
522 xl('Are access control group names to be translated?')
525 'translate_form_titles' => array(
526 xl('Translate Patient Note Titles'),
527 'bool', // data type
528 '1', // default = true
529 xl('Are patient note titles to be translated?')
532 'translate_document_categories' => array(
533 xl('Translate Document Categories'),
534 'bool', // data type
535 '1', // default = true
536 xl('Are document category names to be translated?')
539 'translate_appt_categories' => array(
540 xl('Translate Appointment Categories'),
541 'bool', // data type
542 '1', // default = true
543 xl('Are appointment category names to be translated?')
546 'units_of_measurement' => array(
547 xl('Units for Visit Forms'),
548 array(
549 '1' => xl('Show both US and metric (main unit is US)'),
550 '2' => xl('Show both US and metric (main unit is metric)'),
551 '3' => xl('Show US only'),
552 '4' => xl('Show metric only'),
554 '1', // default = Both/US
555 xl('Applies to the Vitals form and Growth Chart')
558 'us_weight_format' => array(
559 xl('Display Format for US Weights'),
560 array(
561 '1' => xl('Show pounds as decimal value'),
562 '2' => xl('Show pounds and ounces')
564 '1',
565 xl('Applies to Vitals form')
568 'phone_country_code' => array(
569 xl('Telephone Country Code'),
570 'num',
571 '1', // default = North America
572 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
575 'date_display_format' => array(
576 xl('Date Display Format'),
577 array(
578 '0' => xl('YYYY-MM-DD'),
579 '1' => xl('MM/DD/YYYY'),
580 '2' => xl('DD/MM/YYYY'),
582 '0',
583 xl('Format used to display most dates.')
586 'time_display_format' => array(
587 xl('Time Display Format'),
588 array(
589 '0' => xl('24 hr'),
590 '1' => xl('12 hr'),
592 '0',
593 xl('Format used to display most times.')
596 'gbl_time_zone' => array(
597 xl('Time Zone'),
598 gblTimeZones(),
600 xl('If unassigned will default to php.ini setting for date.timezone.')
603 'currency_decimals' => array(
604 xl('Currency Decimal Places'),
605 array(
606 '0' => xl('0'),
607 '1' => xl('1'),
608 '2' => xl('2'),
610 '2',
611 xl('Number of digits after decimal point for currency, usually 0 or 2.')
614 'currency_dec_point' => array(
615 xl('Currency Decimal Point Symbol'),
616 array(
617 '.' => xl('Period'),
618 ',' => xl('Comma'),
620 '.',
621 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
624 'currency_thousands_sep' => array(
625 xl('Currency Thousands Separator'),
626 array(
627 ',' => xl('Comma'),
628 '.' => xl('Period'),
629 ' ' => xl('Space'),
630 '' => xl('None'),
632 ',',
633 xl('Symbol used to separate thousands for currency.')
636 'gbl_currency_symbol' => array(
637 xl('Currency Designator'),
638 'text', // data type
639 '$', // default
640 xl('Code or symbol to indicate currency')
642 'age_display_format' => array(xl('Age Display Format'),
643 array(
644 '0' => xl('Years or months'),
645 '1' => xl('Years, months and days')
647 '0',
648 xl('Format for age display')
650 'age_display_limit' => array(
651 xl('Age in Years for Display Format Change'),
652 'num',
653 '3',
654 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
656 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
657 'weekend_days' => array(
658 xl('Your weekend days'),
659 array(
660 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
661 '0' => xl('Sunday'),
662 '5' => xl('Friday'),
663 '6' => xl('Saturday'),
664 '5,6' => xl('Friday') . ' - ' . xl('Saturday'),
666 '6,0'
667 , xl('which days are your weekend days?')
672 // Features Tab
674 'Features' => array(
676 'specific_application' => array(
677 xl('Specific Application'),
678 array(
679 '0' => xl('None'),
680 '2' => xl('IPPF'),
681 '3' => xl('Weight loss clinic'),
683 '0', // default
684 xl('Indicator for specialized usage')
687 'inhouse_pharmacy' => array(
688 xl('Drugs and Products'),
689 array(
690 '0' => xl('Do not inventory and sell any products'),
691 '1' => xl('Inventory and sell drugs only'),
692 '2' => xl('Inventory and sell both drugs and non-drug products'),
693 '3' => xl('Products but no prescription drugs and no templates'),
695 '0', // default
696 xl('Option to support inventory and sales of products')
699 'default_visit_category' => [
700 xl('Default Visit Category'),
701 'default_visit_category',
702 '_blank',
703 xl('Define a default visit category'),
706 'disable_chart_tracker' => array(
707 xl('Disable Chart Tracker'),
708 'bool', // data type
709 '0', // default = false
710 xl('Removes the Chart Tracker feature')
713 'disable_immunizations' => array(
714 xl('Disable Immunizations'),
715 'bool', // data type
716 '0', // default = false
717 xl('Removes support for immunizations')
720 'disable_prescriptions' => array(
721 xl('Disable Prescriptions'),
722 'bool', // data type
723 '0', // default = false
724 xl('Removes support for prescriptions')
727 'omit_employers' => array(
728 xl('Omit Employers'),
729 'bool', // data type
730 '0', // default = false
731 xl('Omit employer information in patient demographics')
734 'select_multi_providers' => array(
735 xl('Support Multi-Provider Events'),
736 'bool', // data type
737 '0', // default = false
738 xl('Support calendar events that apply to multiple providers')
741 'disable_non_default_groups' => array(
742 xl('Disable User Groups'),
743 'bool', // data type
744 '1', // default = true
745 xl('Normally this should be checked. Not related to access control.')
748 'ignore_pnotes_authorization' => array(
749 xl('Skip Authorization of Patient Notes'),
750 'bool', // data type
751 '1', // default = true
752 xl('Do not require patient notes to be authorized')
755 'support_encounter_claims' => array(
756 xl('Allow Encounter Claims'),
757 'bool', // data type
758 '0', // default = false
759 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
762 'advance_directives_warning' => array(
763 xl('Advance Directives Warning'),
764 'bool', // data type
765 '0', // default = false
766 xl('Display advance directives in the demographics page.')
769 'configuration_import_export' => array(
770 xl('Configuration Export/Import'),
771 'bool', // data type
772 '0', // default = false
773 xl('Support export/import of configuration data via the Backup page.')
776 'restrict_user_facility' => array(
777 xl('Restrict Users to Facilities'),
778 'bool', // data type
779 '0', // default
780 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
783 'set_facility_cookie' => array(
784 xl('Remember Selected Facility'),
785 'bool', // data type
786 '0', // default
787 xl('Set a facility cookie to remember the selected facility between logins.')
790 'receipts_by_provider' => array(
791 xl('Print Receipts by Provider'),
792 'bool',
793 '0', // default
794 xl('Causes Receipts to Print Encounter/Primary Provider Info')
797 'discount_by_money' => array(
798 xl('Discounts as Monetary Amounts'),
799 'bool', // data type
800 '1', // default = true
801 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
804 'gbl_visit_referral_source' => array(
805 xl('Referral Source for Encounters'),
806 'bool', // data type
807 '0', // default = false
808 xl('A referral source may be specified for each visit.')
811 'gbl_mask_patient_id' => array(
812 xl('Mask for Patient IDs'),
813 'text', // data type
814 '', // default
815 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
818 'gbl_mask_invoice_number' => array(
819 xl('Mask for Invoice Numbers'),
820 'text', // data type
821 '', // default
822 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
825 'gbl_mask_product_id' => array(
826 xl('Mask for Product IDs'),
827 'text', // data type
828 '', // default
829 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
832 'hide_billing_widget' => array(
833 xl('Hide Billing Widget'),
834 'bool', // data type
835 '0', // default = false
836 xl('This will hide the Billing Widget in the Patient Summary screen')
839 'force_billing_widget_open' => array(
840 xl('Force Billing Widget Open'),
841 'bool', // data type
842 '0', // default = false
843 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
846 'activate_ccr_ccd_report' => array(
847 xl('Activate CCR/CCD Reporting'),
848 'bool', // data type
849 '1', // default = true
850 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
853 'hide_document_encryption' => array(
854 xl('Hide Encryption/Decryption Options In Document Management'),
855 'bool', // data type
856 '1', // default = true
857 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
860 'use_custom_immun_list' => array(
861 xl('Use Custom Immunization List'),
862 'bool', // data type
863 '0', // default = true
864 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
867 'preprinted_cms_1500' => array(
868 xl('Prints the CMS 1500 on the Preprinted form'),
869 'bool', // data type
870 '0', // default = false
871 xl('Prints the CMS 1500 on the Preprinted form')
874 'cms_top_margin_default' => array(
875 xl('Default top print margin for CMS 1500'),
876 'num', // data type
877 '24', // default
878 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
881 'cms_left_margin_default' => array(
882 xl('Default left print margin for CMS 1500'),
883 'num', // data type
884 '20', // default
885 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
888 'cms_1500' => array(
889 xl('CMS 1500 Paper Form Format'),
890 array(
891 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
892 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
894 '1', // default
895 xl('This specifies which revision of the form the billing module should generate')
898 'cms_1500_box_31_format' => array(
899 xl('CMS 1500: Box 31 Format'),
900 array(
901 '0' => xl('Signature on File'),
902 '1' => xl('Firstname Lastname'),
903 '2' => xl('None'),
905 '0', // default
906 xl('This specifies whether to include date in Box 31.')
909 'cms_1500_box_31_date' => array(
910 xl('CMS 1500: Date in Box 31 (Signature)'),
911 array(
912 '0' => xl('None'),
913 '1' => xl('Date of Service'),
914 '2' => xl('Today'),
916 '0', // default
917 xl('This specifies whether to include date in Box 31.')
920 'amendments' => array(
921 xl('Amendments'),
922 'bool', // data type
923 '1', // default = true
924 xl('Enable amendments feature')
927 'allow_pat_delete' => array(
928 xl('Allow Administrators to Delete Patients'),
929 'bool', // data type
930 '0', // default = false
931 xl('Allow Administrators to Delete Patients')
935 'observation_results_immunization' => array(
936 xl('Immunization Observation Results'),
937 'bool', // data type
938 '1', // default
939 xl('Observation Results in Immunization')
943 // Report Tab
945 'Report' => array(
947 'use_custom_daysheet' => array(
948 xl('Use Custom End of Day Report'),
949 array(
950 '0' => xl('None'),
951 '1' => xl('Print End of Day Report 1'),
952 '2' => xl('Print End of Day Report 2'),
953 '3' => xl('Print End of Day Report 3'),
954 ), // data type
955 '1', // default = Print End of Day Report 1
956 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
959 'daysheet_provider_totals' => array(
960 xl('End of Day by Provider or allow Totals Only'),
961 array(
962 '0' => xl('Provider'),
963 '1' => xl('Totals Only'),
965 '1', // default
966 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
969 'ledger_begin_date' => array(
970 xl('Beginning Date for Ledger Report'),
971 array(
972 'Y1' => xl('One Year Ago'),
973 'Y2' => xl('Two Years Ago'),
974 'M6' => xl('Six Months Ago'),
975 'M3' => xl('Three Months Ago'),
976 'M1' => xl('One Month Ago'),
977 'D1' => xl('One Day Ago'),
979 'Y1', // default = One Year
980 xl('This is the Beginning date for the Ledger Report.')
983 'print_next_appointment_on_ledger' => array(
984 xl('Print the Next Appointment on the Bottom of the Ledger'),
985 'bool', // data type
986 '1', // default = true
987 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
990 'sales_report_invoice' => array(
991 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
992 array(
993 '0' => xl('Invoice Number'),
994 '1' => xl('Patient Name and ID'),
995 '2' => xl('Patient Name and Invoice'),
997 '2', // default = 2
998 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
1001 'cash_receipts_report_invoice' => array(
1002 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
1003 array(
1004 '0' => xl('Invoice Number'),
1005 '1' => xl('Patient Name'),
1007 '0', // default = 0
1008 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
1013 // Billing Tab
1015 'Billing' => array(
1017 'default_search_code_type' => array(
1018 xl('Default Search Code Type'),
1019 'all_code_types', // data type
1020 'ICD10', // default
1021 xl('The default code type to search for in the Fee Sheet.')
1024 'support_fee_sheet_line_item_provider' => array(
1025 xl('Support provider in line item in fee sheet'),
1026 'bool', // data type
1027 '0', // default = false
1028 xl('This Enables provider in line item in the fee sheet')
1031 'default_fee_sheet_line_item_provider' => array(
1032 xl('Default to a provider for line item in the fee sheet'),
1033 'bool', // data type
1034 '0', // default = false
1035 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1038 'replicate_justification' => array(
1039 xl('Automatically replicate justification codes in Fee Sheet'),
1040 'bool', // data type
1041 '0', // default = false
1042 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1045 'display_units_in_billing' => array(
1046 xl('Display the Units Column on the Billing Screen'),
1047 'bool', // data type
1048 '0', // default = false
1049 xl('Display the Units Column on the Billing Screen')
1052 'notes_to_display_in_Billing' => array(
1053 xl('Which notes are to be displayed in the Billing Screen'),
1054 array(
1055 '0' => xl('None'),
1056 '1' => xl('Encounter Billing Note'),
1057 '2' => xl('Patient Billing Note'),
1058 '3' => xl('All'),
1060 '3',
1061 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1064 'set_pos_code_encounter' => array(
1065 xl('Set POS code in encounter'),
1066 'bool', // data type
1067 '0', // default = false
1068 xl('This feature will allow the default POS facility code to be overriden from the encounter.')
1071 'use_custom_statement' => array(
1072 xl('Use Custom Statement'),
1073 'bool', // data type
1074 '0', // default = false
1075 xl('This will use the custom Statment showing the description instead of the codes.')
1078 'statement_appearance' => array(
1079 xl('Statement Appearance'),
1080 array(
1081 '0' => xl('Plain Text'),
1082 '1' => xl('Modern/images')
1083 ), // data type
1084 '1', // default = true
1085 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1088 'billing_phone_number' => array(
1089 xl('Custom Billing Phone Number'),
1090 'text', // data type
1092 xl('Phone number for billing inquiries')
1095 'show_aging_on_custom_statement' => array(
1096 xl('Show Aging on Custom Statement'),
1097 'bool', // data type
1098 '0', // default = false
1099 xl('This will Show Aging on the custom Statement.')
1102 'use_statement_print_exclusion' => array(
1103 xl('Allow Statement Exclusions from Printing'),
1104 'bool', // data type
1105 '0', // default = false
1106 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1109 'minimum_amount_to_print' => array(
1110 xl('Total Minimum Amount of Statement to Allow Printing'),
1111 'num', // data type
1112 '1.00',
1113 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1116 'statement_bill_note_print' => array(
1117 xl('Print Patient Billing Note'),
1118 'bool', // data type
1119 '0', // default = false
1120 xl('This will allow printing of the Patient Billing Note on the statements.')
1123 'number_appointments_on_statement' => array(
1124 xl('Number of Appointments on Statement'),
1125 'num', // data type
1126 '0', // default = 0
1127 xl('The Number of Future Appointments to Display on the Statement.')
1130 'statement_message_to_patient' => array(
1131 xl('Print Custom Message'),
1132 'bool', // data type
1133 '0', // default = false
1134 xl('This will allow printing of a custom Message on the statements.')
1137 'statement_msg_text' => array(
1138 xl('Custom Statement message'),
1139 'text', // data type
1141 xl('Text for Custom statement message.')
1144 'use_dunning_message' => array(
1145 xl('Use Custom Dunning Messages'),
1146 'bool', // data type
1147 '0', // default = false
1148 xl('This will allow use of the custom Dunning Messages on the statements.')
1151 'first_dun_msg_set' => array(
1152 xl('Number of days before showing first account message'),
1153 'num', // data type
1154 '30',
1155 xl('Number of days before showing first account message.')
1158 'first_dun_msg_text' => array(
1159 xl('First account message'),
1160 'text', // data type
1162 xl('Text for first account message.')
1165 'second_dun_msg_set' => array(
1166 xl('Number of days before showing second account message'),
1167 'num', // data type
1168 '60',
1169 xl('Number of days before showing second account message')
1172 'second_dun_msg_text' => array(
1173 xl('Second account message'),
1174 'text', // data type
1176 xl('Text for second account message.')
1179 'third_dun_msg_set' => array(
1180 xl('Number of days before showing third account message'),
1181 'num', // data type
1182 '90',
1183 xl('Number of days before showing third account message')
1186 'third_dun_msg_text' => array(
1187 xl('Third account message'),
1188 'text', // data type
1190 xl('Text for third account message.')
1193 'fourth_dun_msg_set' => array(
1194 xl('Number of days before showing fourth account message'),
1195 'num', // data type
1196 '120',
1197 xl('Number of days before showing fourth account message')
1200 'fourth_dun_msg_text' => array(
1201 xl('Fourth account message'),
1202 'text', // data type
1204 xl('Text for fourth account message.')
1207 'fifth_dun_msg_set' => array(
1208 xl('Number of days before showing fifth account message'),
1209 'num', // data type
1210 '150',
1211 xl('Number of days before showing fifth account message')
1214 'fifth_dun_msg_text' => array(
1215 xl('Fifth account message'),
1216 'text', // data type
1218 xl('Text for fifth account message.')
1220 'save_codes_history' => array(
1221 xl('Save codes history'),
1222 'bool', // data type
1223 '1', // default
1224 xl('Save codes history')
1228 // E-Sign Tab
1230 'E-Sign' => array(
1232 'esign_all' => array(
1233 xl('Allows E-Sign on the entire encounter'),
1234 'bool', // data type
1235 '0', // default = false
1236 xl('This will enable signing an entire encounter, rather than individual forms')
1239 'lock_esign_all' => array(
1240 xl('Lock e-signed encounters and their forms'),
1241 'bool', // data type
1242 '0', // default = false
1243 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1246 'esign_individual' => array(
1247 xl('Allows E-Signing Individual Forms'),
1248 'bool', // data type
1249 '1', // default = false
1250 xl('This will enable signing individual forms separately')
1253 'lock_esign_individual' => array(
1254 xl('Lock an e-signed form individually'),
1255 'bool', // data type
1256 '1', // default = false
1257 xl('This will disable the Edit button on any form that is e-signed')
1260 'esign_lock_toggle' => array(
1261 xl('Enable lock toggle'),
1262 'bool', // data type
1263 '0', // default = false
1264 xl('This will give the user the option to lock (separate locking and signing)')
1267 'esign_report_hide_empty_sig' => array(
1268 xl('Hide Empty E-Sign Logs On Report'),
1269 'bool', // data type
1270 '1', // default = false
1271 xl('This will hide empty e-sign logs on the patient report')
1275 //Documents Tab
1276 'Documents' => array(
1278 'document_storage_method' => array(
1279 xl('Document Storage Method'),
1280 array(
1281 '0' => xl('Hard Disk'),
1282 '1' => xl('CouchDB')
1284 '0', // default
1285 xl('Option to save method of document storage.')
1288 'couchdb_host' => array(
1289 xl('CouchDB HostName'),
1290 'text',
1291 'localhost',
1292 xl('CouchDB host'),
1294 'couchdb_user' => array(
1295 xl('CouchDB UserName'),
1296 'text',
1298 xl('Username to connect to CouchDB'),
1300 'couchdb_pass' => array(
1301 xl('CouchDB Password'),
1302 'text',
1304 xl('Password to connect to CouchDB'),
1306 'couchdb_port' => array(
1307 xl('CouchDB Port'),
1308 'text',
1309 '5984',
1310 xl('CouchDB port'),
1312 'couchdb_dbase' => array(
1313 xl('CouchDB Database'),
1314 'text',
1316 xl('CouchDB database name'),
1318 'couchdb_log' => array(
1319 xl('CouchDB Log Enable'),
1320 'bool',
1321 '0',
1322 xl('Enable log for document uploads/downloads to CouchDB'),
1325 'expand_document_tree' => array(
1326 xl('Expand All Document Categories'),
1327 'bool', // data type
1328 '0', // default = false
1329 xl('Expand All Document Categories by Default')
1332 'patient_id_category_name' => array(
1333 xl('Patient ID Category Name'),
1334 'text', // data type
1335 'Patient ID card', // default
1336 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1339 'patient_photo_category_name' => array(
1340 xl('Patient Photo Category Name'),
1341 'text', // data type
1342 'Patient Photograph', // default
1343 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1346 'lab_results_category_name' => array(
1347 xl('Lab Results Category Name'),
1348 'text', // data type
1349 'Lab Report', // default
1350 xl('Document category name for storage of electronically received lab results.')
1353 'gbl_mdm_category_name' => array(
1354 xl('MDM Document Category Name'),
1355 'text', // data type
1356 'Lab Report', // default
1357 xl('Document category name for storage of electronically received MDM documents.')
1359 'generate_doc_thumb' => array(
1360 xl('Generate thumbnail'),
1361 'bool',
1362 '0',
1363 xl('Generate thumbnail images'),
1365 'thumb_doc_max_size' => array(
1366 xl('Thumbnail size'),
1367 'text', // data type
1368 '100', // default
1369 xl('Maximum size of thumbnail file')
1373 // Calendar Tab
1375 'Calendar' => array(
1377 'disable_calendar' => array(
1378 xl('Disable Calendar'),
1379 'bool', // data type
1380 '0', // default
1381 xl('Do not display the calendar.')
1384 'schedule_start' => array(
1385 xl('Calendar Starting Hour'),
1386 'hour',
1387 '8', // default
1388 xl('Beginning hour of day for calendar events.')
1391 'schedule_end' => array(
1392 xl('Calendar Ending Hour'),
1393 'hour',
1394 '17', // default
1395 xl('Ending hour of day for calendar events.')
1398 'calendar_interval' => array(
1399 xl('Calendar Interval'),
1400 array(
1401 '5' => '5',
1402 '10' => '10',
1403 '15' => '15',
1404 '20' => '20',
1405 '30' => '30',
1406 '60' => '60',
1408 '15', // default
1409 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1412 'calendar_view_type' => array(
1413 xl('Default Calendar View'),
1414 array(
1415 'day' => xl('Day'),
1416 'week' => xl('Week'),
1417 'month' => xl('Month'),
1419 'day', // default
1420 xl('This sets the Default Calendar View, Default is Day.')
1422 'first_day_week' => array(
1423 xl('First day in the week'),
1424 array(
1425 '1' => xl('Monday'),
1426 '0' => xl('Sunday'),
1427 '6' => xl('Saturday')
1429 '1',
1430 xl('Your first day of the week.')
1432 'calendar_appt_style' => array(
1433 xl('Appointment Display Style'),
1434 array(
1435 '1' => xl('Last name'),
1436 '2' => xl('Last name, first name'),
1437 '3' => xl('Last name, first name (title)'),
1438 '4' => xl('Last name, first name (title: comments)'),
1440 '2', // default
1441 xl('This determines how appointments display on the calendar.')
1444 'event_color' => array(
1445 xl('Appointment/Event Color'),
1446 array(
1447 '1' => xl('Category Color Schema'),
1448 '2' => xl('Facility Color Schema'),
1449 ), // data type
1450 '1', // default
1451 xl('This determines which color schema used for appointment')
1454 'number_of_appts_to_show' => array(
1455 xl('Appointments - Patient Summary - Number to Display'),
1456 'num',
1457 '10',
1458 xl('Number of Appointments to display in the Patient Summary')
1461 'number_of_group_appts_to_show' => array(
1462 xl('Appointments - Group Summary - Number to Display'),
1463 'num',
1464 '10',
1465 xl('Number of Appointments to display in the Group Summary')
1467 'number_of_ex_appts_to_show' => array(
1468 xl('Excluded Appointments - Tooltip - Number to Display'),
1469 'num',
1470 '15',
1471 xl('Number of Excluded Appointments to display in the Tooltip')
1475 'patient_portal_appt_display_num' => array(
1476 xl('Appointments - Onsite Patient Portal - Number to Display'),
1477 'num',
1478 '20',
1479 xl('Number of Appointments to display in the Onsite Patient Portal')
1482 'appt_display_sets_option' => array(
1483 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1484 'bool', // data type
1485 '1', // default
1486 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1489 'appt_display_sets_color_1' => array(
1490 xl('Appointment Display Sets - Color 1'),
1491 'color_code',
1492 '#FFFFFF',
1493 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).')
1496 'appt_display_sets_color_2' => array(
1497 xl('Appointment Display Sets - Color 2'),
1498 'color_code',
1499 '#E6E6FF',
1500 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).')
1503 'appt_display_sets_color_3' => array(
1504 xl('Appointment Display Sets - Color 3'),
1505 'color_code',
1506 '#E6FFE6',
1507 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1510 'appt_display_sets_color_4' => array(
1511 xl('Appointment Display Sets - Color 4'),
1512 'color_code',
1513 '#FFE6FF',
1514 xl('Color for the last set when not all member appointments are displayed.')
1517 'appt_recurrences_widget' => array(
1518 xl('Recurrent Appointment Display Widget'),
1519 'bool', // data type
1520 '1', // default
1521 xl('Display the recurrent appointment widget in the patient summary.')
1524 'num_past_appointments_to_show' => array(
1525 xl('Past Appointment Display Widget'),
1526 'num', // data type
1527 '0', // default = false
1528 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)')
1531 'docs_see_entire_calendar' => array(
1532 xl('Providers See Entire Calendar'),
1533 'bool', // data type
1534 '0', // default
1535 xl('Check this if you want providers to see all appointments by default and not just their own.')
1538 'auto_create_new_encounters' => array(
1539 xl('Auto-Create New Encounters'),
1540 'bool', // data type
1541 '1', // default
1542 xl('Automatically create a new encounter when an appointment check in status is selected.')
1544 'allow_early_check_in' => array(
1545 xl('Allow Early Check In'),
1546 'bool', // data type
1547 '1', // default
1548 xl("Allow Check In before the appointment's time.")
1550 'disable_pat_trkr' => array(
1551 xl('Disable Patient Flow Board'),
1552 'bool', // data type
1553 '0', // default
1554 xl('Do not display the patient flow board.')
1557 'ptkr_visit_reason' => array(
1558 xl('Show Visit Reason in Patient Flow Board'),
1559 'bool', // data type
1560 '0', // default = false
1561 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1564 'ptkr_show_pid' => array(
1565 xl('Show Patient ID in Patient Flow Board'),
1566 'bool', // data type
1567 '1', // default = true
1568 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1571 'ptkr_show_encounter' => array(
1572 xl('Show Patient Encounter Number in Patient Flow Board'),
1573 'bool', // data type
1574 '1', // default = true
1575 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1578 'pat_trkr_timer' => array(
1579 xl('Patient Flow Board Timer Interval'),
1580 array(
1581 '0' => xl('No automatic refresh'),
1582 '0:10' => '10',
1583 '0:20' => '20',
1584 '0:30' => '30',
1585 '0:40' => '40',
1586 '0:50' => '50',
1587 '0:59' => '60',
1589 '0:20', // default
1590 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1593 'checkout_roll_off' => array(
1594 xl('Number of Minutes to display completed checkouts'),
1595 'num',
1596 '0', // default
1597 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1600 'drug_screen' => array(
1601 xl('Enable Random Drug Testing'),
1602 'bool', // data type
1603 '0', // default
1604 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1607 'drug_testing_percentage' => array(
1608 xl('Percentage of Patients to Drug Test'),
1609 'num',
1610 '33', // default
1611 xl('Percentage of Patients to select for Random Drug Testing.')
1614 'maximum_drug_test_yearly' => array(
1615 xl('Maximum number of times a Patient can be tested in a year'),
1616 'num',
1617 '0', // default
1618 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1621 'submit_changes_for_all_appts_at_once' => array(
1622 xl('Submit Changes For All Appts At Once'),
1623 'bool', // data type
1624 '1', // default
1625 xl('Enables to submit changes for all appointments of a recurrence at once.')
1631 // Security Tab
1633 'Security' => array(
1634 'sql_string_no_show_screen' => array(
1635 xl('Mode - Do Not Show SQL Queries'),
1636 'bool', // data type
1637 '0', // default
1638 xl('Do not allow SQL queries to be outputted to screen.')
1640 'timeout' => array(
1641 xl('Idle Session Timeout Seconds'),
1642 'num', // data type
1643 '7200', // default
1644 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1646 'secure_upload' => array(
1647 xl('Secure Upload Files with White List'),
1648 'bool', // data type
1649 '0', // default
1650 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1652 'secure_password' => array(
1653 xl('Require Strong Passwords'),
1654 'bool', // data type
1655 '0', // default
1656 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1658 'password_history' => array(
1659 xl('Require Unique Passwords'),
1660 'bool', // data type
1661 '0', // default
1662 xl('Means none of last three passwords are allowed when changing a password.')
1664 'password_compatibility' => array(
1665 xl('Permit unsalted passwords'),
1666 'bool', // data type
1667 '1', // default
1668 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')
1671 'password_expiration_days' => array(
1672 xl('Default Password Expiration Days'),
1673 'num', // data type
1674 '0', // default
1675 xl('Default password expiration period in days. 0 means this feature is disabled.')
1678 'password_grace_time' => array(
1679 xl('Password Expiration Grace Period'),
1680 'num', // data type
1681 '0', // default
1682 xl('Period in days where a user may login with an expired password.')
1685 'is_client_ssl_enabled' => array(
1686 xl('Enable Client SSL'),
1687 'bool', // data type
1688 '0', // default
1689 xl('Enable client SSL certificate authentication.')
1692 'certificate_authority_crt' => array(
1693 xl('Path to CA Certificate File'),
1694 'text', // data type
1695 '', // default
1696 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1699 'certificate_authority_key' => array(
1700 xl('Path to CA Key File'),
1701 'text', // data type
1702 '', // default
1703 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1706 'client_certificate_valid_in_days' => array(
1707 xl('Client Certificate Expiration Days'),
1708 'num', // data type
1709 '365', // default
1710 xl('Number of days that the client certificate is valid.')
1713 'Emergency_Login_email_id' => array(
1714 xl('Emergency Login Email Address'),
1715 'text', // data type
1716 '', // default
1717 xl('Email address, if any, to receive emergency login user activation messages.')
1720 'new_validate' => array(
1721 xl('New form validation'),
1722 'bool',
1723 '1',
1724 xl('New form validation')
1727 'allow_multiple_databases' => array(
1728 xl('Allow multiple databases'),
1729 'bool',
1730 '0',
1731 xl('Allow to use with multiple database')
1734 'safe_key_database' => array(
1735 xl('Safe key database'),
1736 'text', // data type
1737 '', // default
1738 xl('Key for multiple database credentials encryption')
1741 'use_active_directory' => array(
1742 xl('Use Active Directory'),
1743 'bool',
1744 '0',
1745 xl('If enabled, uses the specified active directory for login and authentication.')
1748 'account_suffix' => array(
1749 xl('Active Directory - Suffix Of Account'),
1750 'text',
1752 xl('The suffix of the account.')
1755 'base_dn' => array(
1756 xl('Active Directory - Domains Base'),
1757 'text',
1759 xl('Users is the standard windows CN, replace the DC stuff with your domain.')
1762 'domain_controllers' => array(
1763 xl('Active Directory - Domains Controllers'),
1764 'text',
1766 xl('The IP address of your domain controller(s).')
1771 // Notifications Tab
1773 'Notifications' => array(
1775 'patient_reminder_sender_name' => array(
1776 xl('Patient Reminder Sender Name'),
1777 'text', // data type
1778 '', // default
1779 xl('Name of the sender for patient reminders.')
1782 'patient_reminder_sender_email' => array(
1783 xl('Patient Reminder Sender Email'),
1784 'text', // data type
1785 '', // default
1786 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.')
1789 'practice_return_email_path' => array(
1790 xl('Notification Email Address'),
1791 'text', // data type
1792 '', // default
1793 xl('Email address, if any, to receive administrative notifications.')
1796 'EMAIL_METHOD' => array(
1797 xl('Email Transport Method'),
1798 array(
1799 'PHPMAIL' => 'PHPMAIL',
1800 'SENDMAIL' => 'SENDMAIL',
1801 'SMTP' => 'SMTP',
1803 'SMTP', // default
1804 xl('Method for sending outgoing email.')
1807 'SMTP_HOST' => array(
1808 xl('SMTP Server Hostname'),
1809 'text', // data type
1810 'localhost', // default
1811 xl('If SMTP is used, the server`s hostname or IP address.')
1814 'SMTP_PORT' => array(
1815 xl('SMTP Server Port Number'),
1816 'num', // data type
1817 '25', // default
1818 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1821 'SMTP_USER' => array(
1822 xl('SMTP User for Authentication'),
1823 'text', // data type
1824 '', // default
1825 xl('Must be empty if SMTP authentication is not used.')
1828 'SMTP_PASS' => array(
1829 xl('SMTP Password for Authentication'),
1830 'text', // data type
1831 '', // default
1832 xl('Must be empty if SMTP authentication is not used.')
1835 'SMTP_SECURE' => array(
1836 xl('SMTP Security Protocol'),
1837 array(
1838 '' => xl('None'),
1839 'ssl' => 'SSL',
1840 'tls' => 'TLS'
1843 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1846 'EMAIL_NOTIFICATION_HOUR' => array(
1847 xl('Email Notification Hours'),
1848 'num', // data type
1849 '50', // default
1850 xl('Number of hours in advance to send email notifications.')
1853 'SMS_NOTIFICATION_HOUR' => array(
1854 xl('SMS Notification Hours'),
1855 'num', // data type
1856 '50', // default
1857 xl('Number of hours in advance to send SMS notifications.')
1860 'SMS_GATEWAY_USENAME' => array(
1861 xl('SMS Gateway Username'),
1862 'text', // data type
1863 '', // default
1864 xl('Username for SMS Gateway.')
1867 'SMS_GATEWAY_PASSWORD' => array(
1868 xl('SMS Gateway Password'),
1869 'text', // data type
1870 '', // default
1871 xl('Password for SMS Gateway.')
1874 'SMS_GATEWAY_APIKEY' => array(
1875 xl('SMS Gateway API Key'),
1876 'text', // data type
1877 '', // default
1878 xl('API key for SMS Gateway.')
1881 'phone_notification_hour' => array(
1882 xl('Phone Notification Hour'),
1883 'num', // data type
1884 '50', // default
1885 xl('Number of hours in advance to send Phone notification.')
1888 'phone_gateway_username' => array(
1889 xl('Phone Gateway Username'),
1890 'text', // data type
1891 '', // default
1892 xl('Username for Phone Gateway.')
1895 'phone_gateway_password' => array(
1896 xl('Phone Gateway Password'),
1897 'text', // data type
1898 '', // default
1899 xl('Password for Phone Gateway.')
1902 'phone_gateway_url' => array(
1903 xl('Phone Gateway URL'),
1904 'text', // data type
1905 '', // default
1906 xl('URL for Phone Gateway.')
1911 // CDR (Clinical Decision Rules)
1913 'CDR' => array(
1915 'enable_cdr' => array(
1916 xl('Enable Clinical Decisions Rules (CDR)'),
1917 'bool', // data type
1918 '1', // default
1919 xl('Enable Clinical Decisions Rules (CDR)')
1922 'enable_allergy_check' => array(
1923 xl('Enable Allergy Check'),
1924 'bool', // data type
1925 '1', // default
1926 xl('Enable Allergy Check Against Medications and Prescriptions')
1929 'enable_alert_log' => array(
1930 xl('Enable Alert Log'),
1931 'bool', // data type
1932 '1', // default
1933 xl('Enable Alert Logging')
1936 'enable_cdr_new_crp' => array(
1937 xl('Enable Clinical Passive New Reminder(s) Popup'),
1938 'bool', // data type
1939 '1', // default
1940 xl('Enable Clinical Passive New Reminder(s) Popup')
1943 'enable_cdr_crw' => array(
1944 xl('Enable Clinical Passive Reminder Widget'),
1945 'bool', // data type
1946 '1', // default
1947 xl('Enable Clinical Passive Reminder Widget')
1950 'enable_cdr_crp' => array(
1951 xl('Enable Clinical Active Reminder Popup'),
1952 'bool', // data type
1953 '1', // default
1954 xl('Enable Clinical Active Reminder Popup')
1957 'enable_cdr_prw' => array(
1958 xl('Enable Patient Reminder Widget'),
1959 'bool', // data type
1960 '1', // default
1961 xl('Enable Patient Reminder Widget')
1964 'enable_cqm' => array(
1965 xl('Enable CQM Reporting'),
1966 'bool', // data type
1967 '1', // default
1968 xl('Enable Clinical Quality Measure (CQM) Reporting')
1971 'pqri_registry_name' => array(
1972 xl('PQRI Registry Name'),
1973 'text', // data type
1974 'Model Registry', // default
1975 xl('PQRI Registry Name')
1978 'pqri_registry_id' => array(
1979 xl('PQRI Registry ID'),
1980 'text', // data type
1981 '125789123', // default
1982 xl('PQRI Registry ID')
1985 'enable_amc' => array(
1986 xl('Enable AMC Reporting'),
1987 'bool', // data type
1988 '1', // default
1989 xl('Enable Automated Measure Calculations (AMC) Reporting')
1992 'enable_amc_prompting' => array(
1993 xl('Enable AMC Prompting'),
1994 'bool', // data type
1995 '1', // default
1996 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1999 'enable_amc_tracking' => array(
2000 xl('Enable AMC Tracking'),
2001 'bool', // data type
2002 '1', // default
2003 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
2006 'cdr_report_nice' => array(
2007 xl('CDR Reports Processing Priority'),
2008 array(
2009 '' => xl('Default Priority'),
2010 '5' => xl('Moderate Priority'),
2011 '10' => xl('Moderate/Low Priority'),
2012 '15' => xl('Low Priority'),
2013 '20' => xl('Lowest Priority')
2015 '', // default
2016 xl('Set processing priority for CDR engine based reports.')
2019 'pat_rem_clin_nice' => array(
2020 xl('Patient Reminder Creation Processing Priority'),
2021 array(
2022 '' => xl('Default Priority'),
2023 '5' => xl('Moderate Priority'),
2024 '10' => xl('Moderate/Low Priority'),
2025 '15' => xl('Low Priority'),
2026 '20' => xl('Lowest Priority')
2028 '', // default
2029 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2032 'report_itemizing_standard' => array(
2033 xl('Enable Standard Report Itemization'),
2034 'bool', // data type
2035 '1', // default
2036 xl('Enable Itemization of Standard Clinical Rules Reports')
2039 'report_itemizing_cqm' => array(
2040 xl('Enable CQM Report Itemization'),
2041 'bool', // data type
2042 '1', // default
2043 xl('Enable Itemization of CQM Reports')
2046 'report_itemizing_amc' => array(
2047 xl('Enable AMC Report Itemization'),
2048 'bool', // data type
2049 '1', // default
2050 xl('Enable Itemization of AMC Reports')
2052 'dated_reminders_max_alerts_to_show' => array(
2053 xl('Dated reminders maximum alerts to show'),
2054 'num', // data type
2055 '5', // default
2056 xl('Dated reminders maximum alerts to show')
2060 // Logging
2062 'Logging' => array(
2064 'enable_auditlog' => array(
2065 xl('Enable Audit Logging'),
2066 'bool', // data type
2067 '1', // default
2068 xl('Enable Audit Logging')
2071 'audit_events_patient-record' => array(
2072 xl('Audit Logging Patient Record'),
2073 'bool', // data type
2074 '1', // default
2075 xl('Enable logging of patient record modifications.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2078 'audit_events_scheduling' => array(
2079 xl('Audit Logging Scheduling'),
2080 'bool', // data type
2081 '1', // default
2082 xl('Enable logging of scheduling activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2085 'audit_events_order' => array(
2086 xl('Audit Logging Order'),
2087 'bool', // data type
2088 '1', // default
2089 xl('Enable logging of ordering activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2092 'audit_events_security-administration' => array(
2093 xl('Audit Logging Security Administration'),
2094 'bool', // data type
2095 '1', // default
2096 xl('Enable logging of security and administration activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2099 'audit_events_backup' => array(
2100 xl('Audit Logging Backups'),
2101 'bool', // data type
2102 '1', // default
2103 xl('Enable logging of backup related activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2106 'audit_events_other' => array(
2107 xl('Audit Logging Miscellaneous'),
2108 'bool', // data type
2109 '1', // default
2110 xl('Enable logging of miscellaneous activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2113 'audit_events_query' => array(
2114 xl('Audit Logging SELECT Query'),
2115 'bool', // data type
2116 '0', // default
2117 xl('Enable logging of all SQL SELECT queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2120 'audit_events_cdr' => array(
2121 xl('Audit CDR Engine Queries'),
2122 'bool', // data type
2123 '0', // default
2124 xl('Enable logging of CDR Engine Queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2127 'enable_atna_audit' => array(
2128 xl('Enable ATNA Auditing'),
2129 'bool', // data type
2130 '0', // default
2131 xl('Enable Audit Trail and Node Authentication (ATNA).')
2134 'atna_audit_host' => array(
2135 xl('ATNA audit host'),
2136 'text', // data type
2137 '', // default
2138 xl('The hostname of the ATNA audit repository machine.')
2141 'atna_audit_port' => array(
2142 xl('ATNA audit port'),
2143 'text', // data type
2144 '6514', // default
2145 xl('Listening port of the RFC 5425 TLS syslog server.')
2148 'atna_audit_localcert' => array(
2149 xl('ATNA audit local certificate'),
2150 'text', // data type
2151 '', // default
2152 xl('Certificate to send to RFC 5425 TLS syslog server.')
2155 'atna_audit_cacert' => array(
2156 xl('ATNA audit CA certificate'),
2157 'text', // data type
2158 '', // default
2159 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2162 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
2163 'enable_auditlog_encryption' => array(
2164 xl('Enable Audit Log Encryption'),
2165 'bool', // data type
2166 '0', // default
2167 xl('Enable Audit Log Encryption')
2170 'billing_log_option' => array(
2171 xl('Billing Log Option'),
2172 array(
2173 '1' => xl('Billing Log Append'),
2174 '2' => xl('Billing Log Overwrite')
2176 '1', // default
2177 xl('Billing log setting to append or overwrite the log file.')
2180 'gbl_print_log_option' => array(
2181 xl('Printing Log Option'),
2182 array(
2183 '0' => xl('No logging'),
2184 '1' => xl('Hide print feature'),
2185 '2' => xl('Log entire document'),
2187 '0', // default
2188 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2193 // Miscellaneous Tab
2195 'Miscellaneous' => array(
2197 'mysql_bin_dir' => array(
2198 xl('Path to MySQL Binaries'),
2199 'text', // data type
2200 $mysql_bin_dir, // default
2201 xl('Full path to directory containing MySQL executables.')
2204 'perl_bin_dir' => array(
2205 xl('Path to Perl Binaries'),
2206 'text', // data type
2207 $perl_bin_dir, // default
2208 xl('Full path to directory containing Perl executables.')
2211 'temporary_files_dir' => array(
2212 xl('Path to Temporary Files'),
2213 'text', // data type
2214 $temporary_files_dir, // default
2215 xl('Full path to directory used for temporary files.')
2218 'backup_log_dir' => array(
2219 xl('Path for Event Log Backup'),
2220 'text', // data type
2221 $backup_log_dir, // default
2222 xl('Full path to directory for event log backup.')
2225 'state_data_type' => array(
2226 xl('State Data Type'),
2227 array(
2228 '2' => xl('Text field'),
2229 '1' => xl('Single-selection list'),
2230 '26' => xl('Single-selection list with ability to add to the list'),
2232 '26', // default
2233 xl('Field type to use for employer or subscriber state in demographics.')
2236 'state_list' => array(
2237 xl('State list'),
2238 'text', // data type
2239 'state', // default
2240 xl('List used by above State Data Type option.')
2243 'state_custom_addlist_widget' => array(
2244 xl('State List Widget Custom Fields'),
2245 'bool', // data type
2246 '1', // default
2247 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2250 'country_data_type' => array(
2251 xl('Country Data Type'),
2252 array(
2253 '2' => xl('Text field'),
2254 '1' => xl('Single-selection list'),
2255 '26' => xl('Single-selection list with ability to add to the list'),
2257 '26', // default
2258 xl('Field type to use for employer or subscriber country in demographics.')
2261 'country_list' => array(
2262 xl('Country list'),
2263 'text', // data type
2264 'country', // default
2265 xl('List used by above Country Data Type option.')
2268 'print_command' => array(
2269 xl('Print Command'),
2270 'text', // data type
2271 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2272 xl('Shell command for printing from the server.')
2275 'default_chief_complaint' => array(
2276 xl('Default Reason for Visit'),
2277 'text', // data type
2279 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2282 'default_new_encounter_form' => array(
2283 xl('Default Encounter Form ID'),
2284 'text', // data type
2286 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
2289 'MedicareReferrerIsRenderer' => array(
2290 xl('Medicare Referrer Is Renderer'),
2291 'bool', // data type
2292 '0', // default = true
2293 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2296 'post_to_date_benchmark' => array(
2297 xl('Financial Close Date (yyyy-mm-dd)'),
2298 'text', // data type
2299 date('Y-m-d', time() - (10 * 24 * 60 * 60)), // default
2300 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2303 'enable_hylafax' => array(
2304 xl('Enable Hylafax Support'),
2305 'bool', // data type
2306 '0', // default
2307 xl('Enable Hylafax Support')
2310 'hylafax_server' => array(
2311 xl('Hylafax Server'),
2312 'text', // data type
2313 'localhost', // default
2314 xl('Hylafax server hostname.')
2317 'hylafax_basedir' => array(
2318 xl('Hylafax Directory'),
2319 'text', // data type
2320 '/var/spool/hylafax', // default
2321 xl('Location where Hylafax stores faxes.')
2324 'hylafax_enscript' => array(
2325 xl('Hylafax Enscript Command'),
2326 'text', // data type
2327 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2328 xl('Enscript command used by Hylafax.')
2331 'enable_scanner' => array(
2332 xl('Enable Scanner Support'),
2333 'bool', // data type
2334 '0', // default
2335 xl('Enable Scanner Support')
2338 'scanner_output_directory' => array(
2339 xl('Scanner Directory'),
2340 'text', // data type
2341 '/mnt/scan_docs', // default
2342 xl('Location where scans are stored.')
2346 // Portal Tab
2348 'Portal' => array(
2350 'portal_onsite_two_enable' => array(
2351 xl('Enable Version 2 Onsite Patient Portal'),
2352 'bool', // data type
2353 '0',
2354 xl('Enable Version 2 Onsite Patient Portal.')
2357 'portal_onsite_two_address' => array(
2358 xl('Version 2 Onsite Patient Portal Site Address'),
2359 'text', // data type
2360 'https://your_web_site.com/openemr/portal',
2361 xl('Website link for the Version 2 Onsite Patient Portal.')
2364 'portal_onsite_enable' => array(
2365 xl('Enable Version 1 Onsite Patient Portal'),
2366 'bool', // data type
2367 '0',
2368 xl('Enable Version 1 Onsite Patient Portal.')
2371 'portal_onsite_address' => array(
2372 xl('Version 1 Onsite Patient Portal Site Address'),
2373 'text', // data type
2374 'https://your_web_site.com/openemr/patients',
2375 xl('Website link for the Version 1 Onsite Patient Portal.')
2378 'portal_onsite_document_download' => array(
2379 xl('Enable Onsite Patient Portal Document Download'),
2380 'bool', // data type
2381 '1',
2382 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2385 'portal_offsite_enable' => array(
2386 xl('Enable Offsite Patient Portal'),
2387 'bool', // data type
2388 '0',
2389 xl('Enable Offsite Patient Portal.')
2391 'portal_offsite_providerid' => array(
2392 xl('Offsite Patient Portal Provider ID'),
2393 'text', // data type
2395 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2398 'portal_offsite_username' => array(
2399 xl('Offsite Patient Portal Username'),
2400 'text', // data type
2402 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2405 'portal_offsite_password' => array(
2406 xl('Offsite Patient Portal Password'),
2407 'pwd', // data type
2409 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2412 'portal_offsite_address' => array(
2413 xl('Offsite Patient Portal Site Address'),
2414 'text', // data type
2415 'https://ssh.mydocsportal.com/provider.php',
2416 xl('Offsite Https link for the Patient Portal.')
2419 'portal_offsite_address_patient_link' => array(
2420 xl('Offsite Patient Portal Site Address (Patient Link)'),
2421 'text', // data type
2422 'https://ssh.mydocsportal.com',
2423 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2426 // Currently the "CMS Portal" supports WordPress. Other Content Management
2427 // Systems may be supported in the future.
2429 'gbl_portal_cms_enable' => array(
2430 xl('Enable CMS Portal'),
2431 'bool', // data type
2432 '0',
2433 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2436 'gbl_portal_cms_address' => array(
2437 xl('CMS Portal Site Address'),
2438 'text', // data type
2439 'https://your_cms_site.com/',
2440 xl('URL for the WordPress site that supports the portal')
2443 'gbl_portal_cms_username' => array(
2444 xl('CMS Portal Username'),
2445 'text', // data type
2447 xl('Login name of WordPress user for portal access')
2450 'gbl_portal_cms_password' => array(
2451 xl('CMS Portal Password'),
2452 'text', // data type
2454 xl('Password for the above user')
2459 // Connectors Tab
2461 'Connectors' => array(
2463 'erx_enable' => array(
2464 xl('Enable NewCrop eRx Service'),
2465 'bool',
2466 '0',
2467 xl('Enable NewCrop eRx Service.') + ' ' +
2468 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing to the NewCrop eRx service.')
2471 'erx_newcrop_path' => array(
2472 xl('NewCrop eRx Site Address'),
2473 'text',
2474 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2475 xl('URL for NewCrop eRx Site Address.')
2478 'erx_newcrop_path_soap' => array(
2479 xl('NewCrop eRx Web Service Address'),
2480 'text',
2481 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2482 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2485 'erx_soap_ttl_allergies' => array(
2486 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2487 'num',
2488 '21600',
2489 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2492 'erx_soap_ttl_medications' => array(
2493 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2494 'num',
2495 '21600',
2496 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2499 'erx_account_partner_name' => array(
2500 xl('NewCrop eRx Partner Name'),
2501 'text',
2503 xl('Partner Name issued for NewCrop eRx service.')
2506 'erx_account_name' => array(
2507 xl('NewCrop eRx Name'),
2508 'text',
2510 xl('Account Name issued for NewCrop eRx service.')
2513 'erx_account_password' => array(
2514 xl('NewCrop eRx Password'),
2515 'pass',
2517 xl('Account Password issued for NewCrop eRx service.')
2520 'erx_account_id' => array(
2521 xl('NewCrop eRx Account Id'),
2522 'text',
2523 '1',
2524 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2527 'erx_upload_active' => array(
2528 xl('Only upload active prescriptions'),
2529 'bool',
2530 '0',
2531 xl('Only upload active prescriptions to NewCrop eRx.')
2534 'erx_import_status_message' => array(
2535 xl('Enable NewCrop eRx import status message'),
2536 'bool',
2537 '0',
2538 xl('Enable import status message after visiting NewCrop eRx.')
2541 'erx_medication_display' => array(
2542 xl('Do not display NewCrop eRx Medications uploaded'),
2543 'bool',
2544 '0',
2545 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2548 'erx_allergy_display' => array(
2549 xl('Do not display NewCrop eRx Allergy uploaded'),
2550 'bool',
2551 '0',
2552 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2555 'erx_default_patient_country' => array(
2556 xl('NewCrop eRx Default Patient Country'),
2557 array(
2558 '' => '',
2559 'US' => xl('USA'),
2560 'CA' => xl('Canada'),
2561 'MX' => xl('Mexico'),
2564 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2567 'erx_debug_setting' => array(
2568 xl('NewCrop eRx Debug Setting'),
2569 array(
2570 0 => xl('None'),
2571 1 => xl('Request Only'),
2572 2 => xl('Response Only'),
2573 3 => xl('Request & Response'),
2575 '0',
2576 xl('Log all NewCrop eRx Requests and / or Responses.'),
2579 'ccda_alt_service_enable' => array(
2580 xl('Enable C-CDA Alternate Service'),
2581 array(
2582 0 => xl('Off'),
2583 1 => xl('Care Coordination Only'),
2584 2 => xl('Portal Only'),
2585 3 => xl('Both'),
2587 '0',
2588 xl('Enable C-CDA Alternate Service')
2591 'phimail_enable' => array(
2592 xl('Enable phiMail Direct Messaging Service'),
2593 'bool', // data type
2594 '0',
2595 xl('Enable phiMail Direct Messaging Service')
2598 'phimail_server_address' => array(
2599 xl('phiMail Server Address'),
2600 'text', // data type
2601 'https://phimail.example.com:32541',
2602 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2605 'phimail_username' => array(
2606 xl('phiMail Username'),
2607 'text', // data type
2609 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2612 'phimail_password' => array(
2613 xl('phiMail Password'),
2614 'pass', // data type
2616 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2619 'phimail_notify' => array(
2620 xl('phiMail notification user'),
2621 'text', // data type
2622 'admin',
2623 xl('This user will receive notification of new incoming Direct messages')
2626 'phimail_interval' => array(
2627 xl('phiMail Message Check Interval (minutes)'),
2628 'num', // data type
2629 '5',
2630 xl('Interval between message checks (set to zero for manual checks only)')
2633 'phimail_ccd_enable' => array(
2634 xl('phiMail Allow CCD Send'),
2635 'bool', // data type
2636 '0',
2637 xl('phiMail Allow CCD Send')
2640 'phimail_ccr_enable' => array(
2641 xl('phiMail Allow CCR Send'),
2642 'bool', // data type
2643 '0',
2644 xl('phiMail Allow CCR Send')
2648 'Rx' => array(
2649 'rx_enable_DEA' => array(
2650 xl('Rx Enable DEA #'),
2651 'bool', // data type
2652 '1',
2653 xl('Rx Enable DEA #')
2655 'rx_show_DEA' => array(
2656 xl('Rx Show DEA #'),
2657 'bool', // data type
2658 '0',
2659 xl('Rx Show DEA #')
2661 'rx_enable_NPI' => array(
2662 xl('Rx Enable NPI'),
2663 'bool', // data type
2664 '0',
2665 xl('Rx Enable NPI')
2667 'rx_show_NPI' => array(
2668 xl('Rx Show NPI'),
2669 'bool', // data type
2670 '0',
2671 xl('Rx Show NPI')
2673 'rx_enable_SLN' => array(
2674 xl('Rx Enable State Lic. #'),
2675 'bool', // data type
2676 '0',
2677 xl('Rx Enable State Lic. #')
2679 'rx_show_SLN' => array(
2680 xl('Rx Show State Lic. #'),
2681 'bool', // data type
2682 '0',
2683 xl('Rx Show State Lic. #')
2685 'rx_show_drug-drug' => array(
2686 xl('Rx NLM Drug-Drug'),
2687 'bool', // data type
2688 '0',
2689 xl('Rx NLM Drug-Drug')
2691 'rx_paper_size' => array(
2692 xl('Rx Paper Size'), // descriptive name
2693 array(
2694 'LETTER' => xl('Letter Paper Size'),
2695 'LEGAL' => xl('Legal Paper Size'),
2696 'FOLIO' => xl('Folio Paper Size'),
2697 'EXECUTIVE' => xl('Executive Paper Size'),
2698 '4A0' => ('4A0' . " " . xl('Paper Size')),
2699 '2A0' => ('2A0' . " " . xl('Paper Size')),
2700 'A0' => ('A0' . " " . xl('Paper Size')),
2701 'A1' => ('A1' . " " . xl('Paper Size')),
2702 'A2' => ('A2' . " " . xl('Paper Size')),
2703 'A3' => ('A3' . " " . xl('Paper Size')),
2704 'A4' => ('A4' . " " . xl('Paper Size')),
2705 'A5' => ('A5' . " " . xl('Paper Size')),
2706 'A6' => ('A6' . " " . xl('Paper Size')),
2707 'A7' => ('A7' . " " . xl('Paper Size')),
2708 'A8' => ('A8' . " " . xl('Paper Size')),
2709 'A9' => ('A9' . " " . xl('Paper Size')),
2710 'A10' => ('A10' . " " . xl('Paper Size')),
2711 'B0' => ('B0' . " " . xl('Paper Size')),
2712 'B1' => ('B1' . " " . xl('Paper Size')),
2713 'B2' => ('B2' . " " . xl('Paper Size')),
2714 'B3' => ('B3' . " " . xl('Paper Size')),
2715 'B4' => ('B4' . " " . xl('Paper Size')),
2716 'B5' => ('B5' . " " . xl('Paper Size')),
2717 'B6' => ('B6' . " " . xl('Paper Size')),
2718 'B7' => ('B7' . " " . xl('Paper Size')),
2719 'B8' => ('B8' . " " . xl('Paper Size')),
2720 'B9' => ('B9' . " " . xl('Paper Size')),
2721 'B10' => ('B10' . " " . xl('Paper Size')),
2722 'C0' => ('C0' . " " . xl('Paper Size')),
2723 'C1' => ('C1' . " " . xl('Paper Size')),
2724 'C2' => ('C2' . " " . xl('Paper Size')),
2725 'C3' => ('C3' . " " . xl('Paper Size')),
2726 'C4' => ('C4' . " " . xl('Paper Size')),
2727 'C5' => ('C5' . " " . xl('Paper Size')),
2728 'C6' => ('C6' . " " . xl('Paper Size')),
2729 'C7' => ('C7' . " " . xl('Paper Size')),
2730 'C8' => ('C8' . " " . xl('Paper Size')),
2731 'C9' => ('C9' . " " . xl('Paper Size')),
2732 'C10' => ('C10' . " " . xl('Paper Size')),
2733 'RA0' => ('RA0' . " " . xl('Paper Size')),
2734 'RA1' => ('RA1' . " " . xl('Paper Size')),
2735 'RA2' => ('RA2' . " " . xl('Paper Size')),
2736 'RA3' => ('RA3' . " " . xl('Paper Size')),
2737 'RA4' => ('RA4' . " " . xl('Paper Size')),
2738 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2739 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2740 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2741 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2742 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2744 'LETTER', // default = tree menu
2745 xl('Rx Paper Size')
2747 'rx_left_margin' => array(
2748 xl('Rx Left Margin (px)'),
2749 'num',
2750 '30',
2751 xl('Rx Left Margin (px)')
2753 'rx_right_margin' => array(
2754 xl('Rx Right Margin (px)'),
2755 'num',
2756 '30',
2757 xl('Rx Right Margin (px)')
2759 'rx_top_margin' => array(
2760 xl('Rx Top Margin (px)'),
2761 'num',
2762 '72',
2763 xl('Rx Top Margin (px)')
2765 'rx_bottom_margin' => array(
2766 xl('Rx Bottom Margin (px)'),
2767 'num',
2768 '30',
2769 xl('Rx Bottom Margin (px)')
2773 'PDF' => array(
2774 'pdf_layout' => array(
2775 xl('Layout'),
2776 array(
2777 'P' => xl('Portrait'),
2778 'L' => xl('Landscape')
2780 'P', //defaut
2781 xl("Choose Layout Direction"),
2783 'pdf_language' => array(
2784 xl('PDF Language'),
2785 array(
2786 'aa' => xl('Afar'),
2787 'af' => xl('Afrikaans'),
2788 'ak' => xl('Akan'),
2789 'sq' => xl('Albanian'),
2790 'am' => xl('Amharic'),
2791 'ar' => xl('Arabic'),
2792 'an' => xl('Aragonese'),
2793 'hy' => xl('Armenian'),
2794 'as' => xl('Assamese'),
2795 'av' => xl('Avaric'),
2796 'ae' => xl('Avestan'),
2797 'ay' => xl('Aymara'),
2798 'az' => xl('Azerbaijani'),
2799 'bm' => xl('Bambara'),
2800 'ba' => xl('Bashkir'),
2801 'eu' => xl('Basque'),
2802 'be' => xl('Belarusian'),
2803 'bn' => xl('Bengali- Bangla'),
2804 'bh' => xl('Bihari'),
2805 'bi' => xl('Bislama'),
2806 'bs' => xl('Bosnian'),
2807 'br' => xl('Breton'),
2808 'bg' => xl('Bulgarian'),
2809 'my' => xl('Burmese'),
2810 'ca' => xl('Catalan- Valencian'),
2811 'ch' => xl('Chamorro'),
2812 'ce' => xl('Chechen'),
2813 'ny' => xl('Chichewa- Chewa- Nyanja'),
2814 'zh' => xl('Chinese'),
2815 'cv' => xl('Chuvash'),
2816 'kw' => xl('Cornish'),
2817 'co' => xl('Corsican'),
2818 'cr' => xl('Cree'),
2819 'hr' => xl('Croatian'),
2820 'cs' => xl('Czech'),
2821 'da' => xl('Danish'),
2822 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2823 'nl' => xl('Dutch'),
2824 'dz' => xl('Dzongkha'),
2825 'en' => xl('English'),
2826 'eo' => xl('Esperanto'),
2827 'et' => xl('Estonian'),
2828 'ee' => xl('Ewe'),
2829 'fo' => xl('Faroese'),
2830 'fj' => xl('Fijian'),
2831 'fi' => xl('Finnish'),
2832 'fr' => xl('French'),
2833 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2834 'gl' => xl('Galician'),
2835 'ka' => xl('Georgian'),
2836 'de' => xl('German'),
2837 'el' => xl('Greek, Modern'),
2838 'gn' => xl('Guarani'),
2839 'gu' => xl('Gujarati'),
2840 'ht' => xl('Haitian- Haitian Creole'),
2841 'ha' => xl('Hausa'),
2842 'he' => xl('Hebrew (modern)'),
2843 'hz' => xl('Herero'),
2844 'hi' => xl('Hindi'),
2845 'ho' => xl('Hiri Motu'),
2846 'hu' => xl('Hungarian'),
2847 'ia' => xl('Interlingua'),
2848 'id' => xl('Indonesian'),
2849 'ie' => xl('Interlingue'),
2850 'ga' => xl('Irish'),
2851 'ig' => xl('Igbo'),
2852 'ik' => xl('Inupiaq'),
2853 'io' => xl('Ido'),
2854 'is' => xl('Icelandic'),
2855 'it' => xl('Italian'),
2856 'iu' => xl('Inuktitut'),
2857 'ja' => xl('Japanese'),
2858 'jv' => xl('Javanese'),
2859 'kl' => xl('Kalaallisut, Greenlandic'),
2860 'kn' => xl('Kannada'),
2861 'kr' => xl('Kanuri'),
2862 'ks' => xl('Kashmiri'),
2863 'kk' => xl('Kazakh'),
2864 'km' => xl('Khmer'),
2865 'ki' => xl('Kikuyu, Gikuyu'),
2866 'rw' => xl('Kinyarwanda'),
2867 'ky' => xl('Kyrgyz'),
2868 'kv' => xl('Komi'),
2869 'kg' => xl('Kongo'),
2870 'ko' => xl('Korean'),
2871 'ku' => xl('Kurdish'),
2872 'kj' => xl('Kwanyama, Kuanyama'),
2873 'la' => xl('Latin'),
2874 'lb' => xl('Luxembourgish, Letzeburgesch'),
2875 'lg' => xl('Ganda'),
2876 'li' => xl('Limburgish, Limburgan, Limburger'),
2877 'ln' => xl('Lingala'),
2878 'lo' => xl('Lao'),
2879 'lt' => xl('Lithuanian'),
2880 'lu' => xl('Luba-Katanga'),
2881 'lv' => xl('Latvian'),
2882 'gv' => xl('Manx'),
2883 'mk' => xl('Macedonian'),
2884 'mg' => xl('Malagasy'),
2885 'ms' => xl('Malay'),
2886 'ml' => xl('Malayalam'),
2887 'mt' => xl('Maltese'),
2888 'mi' => xl('Maori'),
2889 'mr' => xl('Marathi (Marathi)'),
2890 'mh' => xl('Marshallese'),
2891 'mn' => xl('Mongolian'),
2892 'na' => xl('Nauru'),
2893 'nv' => xl('Navajo, Navaho'),
2894 'nb' => xl('Norwegian Bokmal'),
2895 'nd' => xl('North Ndebele'),
2896 'ne' => xl('Nepali'),
2897 'ng' => xl('Ndonga'),
2898 'nn' => xl('Norwegian Nynorsk'),
2899 'no' => xl('Norwegian'),
2900 'ii' => xl('Nuosu'),
2901 'nr' => xl('South Ndebele'),
2902 'oc' => xl('Occitan'),
2903 'oj' => xl('Ojibwe, Ojibwa'),
2904 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2905 'om' => xl('Oromo'),
2906 'or' => xl('Oriya'),
2907 'os' => xl('Ossetian, Ossetic'),
2908 'pa' => xl('Panjabi, Punjabi'),
2909 'pi' => xl('Pali'),
2910 'fa' => xl('Persian (Farsi)'),
2911 'pl' => xl('Polish'),
2912 'ps' => xl('Pashto, Pushto'),
2913 'pt' => xl('Portuguese'),
2914 'qu' => xl('Quechua'),
2915 'rm' => xl('Romansh'),
2916 'rn' => xl('Kirundi'),
2917 'ro' => xl('Romanian'),
2918 'ru' => xl('Russian'),
2919 'sa' => xl('Sanskrit (Samskrta)'),
2920 'sc' => xl('Sardinian'),
2921 'sd' => xl('Sindhi'),
2922 'se' => xl('Northern Sami'),
2923 'sm' => xl('Samoan'),
2924 'sg' => xl('Sango'),
2925 'sr' => xl('Serbian'),
2926 'gd' => xl('Scottish Gaelic- Gaelic'),
2927 'sn' => xl('Shona'),
2928 'si' => xl('Sinhala, Sinhalese'),
2929 'sk' => xl('Slovak'),
2930 'sl' => xl('Slovene'),
2931 'so' => xl('Somali'),
2932 'st' => xl('Southern Sotho'),
2933 'es' => xl('Spanish- Castilian'),
2934 'su' => xl('Sundanese'),
2935 'sw' => xl('Swahili'),
2936 'ss' => xl('Swati'),
2937 'sv' => xl('Swedish'),
2938 'ta' => xl('Tamil'),
2939 'te' => xl('Telugu'),
2940 'tg' => xl('Tajik'),
2941 'th' => xl('Thai'),
2942 'ti' => xl('Tigrinya'),
2943 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2944 'tk' => xl('Turkmen'),
2945 'tl' => xl('Tagalog'),
2946 'tn' => xl('Tswana'),
2947 'to' => xl('Tonga (Tonga Islands)'),
2948 'tr' => xl('Turkish'),
2949 'ts' => xl('Tsonga'),
2950 'tt' => xl('Tatar'),
2951 'tw' => xl('Twi'),
2952 'ty' => xl('Tahitian'),
2953 'ug' => xl('Uyghur, Uighur'),
2954 'uk' => xl('Ukrainian'),
2955 'ur' => xl('Urdu'),
2956 'uz' => xl('Uzbek'),
2957 've' => xl('Venda'),
2958 'vi' => xl('Vietnamese'),
2959 'vo' => xl('Volapuk'),
2960 'wa' => xl('Walloon'),
2961 'cy' => xl('Welsh'),
2962 'wo' => xl('Wolof'),
2963 'fy' => xl('Western Frisian'),
2964 'xh' => xl('Xhosa'),
2965 'yi' => xl('Yiddish'),
2966 'yo' => xl('Yoruba'),
2967 'za' => xl('Zhuang, Chuang'),
2968 'zu' => xl('Zulu'),
2970 'en', // default English
2971 xl('Choose PDF languange Preference'),
2973 'pdf_size' => array(
2974 xl('Paper Size'), // Descriptive Name
2975 array(
2976 'LETTER' => xl('Letter Paper Size'),
2977 'LEGAL' => xl('Legal Paper Size'),
2978 'FOLIO' => xl('Folio Paper Size'),
2979 'EXECUTIVE' => xl('Executive Paper Size'),
2980 '4A0' => ('4A0' . " " . xl('Paper Size')),
2981 '2A0' => ('2A0' . " " . xl('Paper Size')),
2982 'A0' => ('A0' . " " . xl('Paper Size')),
2983 'A1' => ('A1' . " " . xl('Paper Size')),
2984 'A2' => ('A2' . " " . xl('Paper Size')),
2985 'A3' => ('A3' . " " . xl('Paper Size')),
2986 'A4' => ('A4' . " " . xl('Paper Size')),
2987 'A5' => ('A5' . " " . xl('Paper Size')),
2988 'A6' => ('A6' . " " . xl('Paper Size')),
2989 'A7' => ('A7' . " " . xl('Paper Size')),
2990 'A8' => ('A8' . " " . xl('Paper Size')),
2991 'A9' => ('A9' . " " . xl('Paper Size')),
2992 'A10' => ('A10' . " " . xl('Paper Size')),
2993 'B0' => ('B0' . " " . xl('Paper Size')),
2994 'B1' => ('B1' . " " . xl('Paper Size')),
2995 'B2' => ('B2' . " " . xl('Paper Size')),
2996 'B3' => ('B3' . " " . xl('Paper Size')),
2997 'B4' => ('B4' . " " . xl('Paper Size')),
2998 'B5' => ('B5' . " " . xl('Paper Size')),
2999 'B6' => ('B6' . " " . xl('Paper Size')),
3000 'B7' => ('B7' . " " . xl('Paper Size')),
3001 'B8' => ('B8' . " " . xl('Paper Size')),
3002 'B9' => ('B9' . " " . xl('Paper Size')),
3003 'B10' => ('B10' . " " . xl('Paper Size')),
3004 'C0' => ('C0' . " " . xl('Paper Size')),
3005 'C1' => ('C1' . " " . xl('Paper Size')),
3006 'C2' => ('C2' . " " . xl('Paper Size')),
3007 'C3' => ('C3' . " " . xl('Paper Size')),
3008 'C4' => ('C4' . " " . xl('Paper Size')),
3009 'C5' => ('C5' . " " . xl('Paper Size')),
3010 'C6' => ('C6' . " " . xl('Paper Size')),
3011 'C7' => ('C7' . " " . xl('Paper Size')),
3012 'C8' => ('C8' . " " . xl('Paper Size')),
3013 'C9' => ('C9' . " " . xl('Paper Size')),
3014 'C10' => ('C10' . " " . xl('Paper Size')),
3015 'RA0' => ('RA0' . " " . xl('Paper Size')),
3016 'RA1' => ('RA1' . " " . xl('Paper Size')),
3017 'RA2' => ('RA2' . " " . xl('Paper Size')),
3018 'RA3' => ('RA3' . " " . xl('Paper Size')),
3019 'RA4' => ('RA4' . " " . xl('Paper Size')),
3020 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3021 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3022 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3023 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3024 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3026 'LETTER',
3027 xl('Choose Paper Size')
3029 'pdf_left_margin' => array(
3030 xl('Left Margin (mm)'),
3031 'num',
3032 '5',
3033 xl('Left Margin (mm)')
3035 'pdf_right_margin' => array(
3036 xl('Right Margin (mm)'),
3037 'num',
3038 '5',
3039 xl('Right Margin (mm)')
3041 'pdf_top_margin' => array(
3042 xl('Top Margin (mm)'),
3043 'num',
3044 '5',
3045 xl('Top Margin (mm)')
3047 'pdf_bottom_margin' => array(
3048 xl('Bottom Margin (px)'),
3049 'num',
3050 '8',
3051 xl('Bottom Margin (px)')
3053 'pdf_output' => array(
3054 xl('Output Type'),
3055 array(
3056 'D' => xl('Download'),
3057 'I' => xl('Inline')
3059 'D', //defaut
3060 xl("Choose Download or Display Inline"),
3063 'chart_label_type' => array(
3064 xl('Patient Label Type'),
3065 array(
3066 '0' => xl('None'),
3067 '1' => '5160',
3068 '2' => '5161',
3069 '3' => '5162'
3071 '1', // default
3072 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3075 'barcode_label_type' => array(
3076 xl('Barcode Label Type'),
3077 array(
3078 '0' => xl('None'),
3079 '1' => 'std25',
3080 '2' => 'int25',
3081 '3' => 'ean8',
3082 '4' => 'ean13',
3083 '5' => 'upc',
3084 '6' => 'code11',
3085 '7' => 'code39',
3086 '8' => 'code93',
3087 '9' => 'code128',
3088 '10' => 'codabar',
3089 '11' => 'msi',
3090 '12' => 'datamatrix'
3092 '9', // default = None
3093 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3096 'addr_label_type' => array(
3097 xl('Print Patient Address Label'),
3098 'bool', // data type
3099 '1', // default = false
3100 xl('Select to print patient address labels from popups in left nav screen.')
3103 'env_x_width' => array(
3104 xl('Envelope Width in mm'),
3105 'num', // data type
3106 '104.775',
3107 xl('In Portrait mode, determines the width of the envelope along the x-axis in mm')
3110 'env_y_height' => array(
3111 xl('Envelope Height in mm'),
3112 'num', // data type
3113 '241.3',
3114 xl('In Portrait mode, determines the height of the envelope along the y-axis in mm')
3117 'env_font_size' => array(
3118 xl('Font Size in Pt'),
3119 'num', // data type
3120 '14',
3121 xl('Sets the font of the address text on the envelope in mm')
3124 'env_x_dist' => array(
3125 xl('Envelope x-axis starting pt'),
3126 'num', // data type
3127 '65',
3128 xl('Distance from the \'top\' of the envelope in mm')
3131 'env_y_dist' => array(
3132 xl('Envelope y-axis starting pt'),
3133 'num', // data type
3134 '220',
3135 xl(' Distance from the right most edge of the envelope in portrait position in mm')