Added option to not show sql queries on the screen
[openemr.git] / library / globals.inc.php
blob51aa160434333158d7bfbb4aadd9c41012eb1168
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 // Vietnamese // xl('Vietnamese')
70 // OS-dependent stuff.
71 if (stristr(PHP_OS, 'WIN')) {
72 // MS Windows
73 $mysql_bin_dir = 'C:/xampp/mysql/bin';
74 $perl_bin_dir = 'C:/xampp/perl/bin';
75 $temporary_files_dir = 'C:/windows/temp';
76 $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 $GLOBALS_METADATA = array(
123 // Appearance Tab
125 'Appearance' => array(
127 'default_top_pane' => array(
128 xl('Main Top Pane Screen'), // descriptive name
129 array(
130 'main_info.php' => xl('Calendar Screen'),
131 '../new/new.php' => xl('Patient Search/Add Screen'),
132 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
133 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
135 'main_info.php', // default = calendar
136 xl('Type of screen layout')
139 'new_tabs_layout' => array(
140 xl('Layout (need to logout/login after change this setting)'),
141 array(
142 '0' => xl('Frame'),
143 '1' => xl('Tabs'),
145 '1',
146 xl('Choose the layout (need to logout and then login to see this new setting).')
149 'theme_tabs_layout' => array(
150 xl('Tabs Layout Theme (need to logout/login after change this setting)'),
151 'tabs_css',
152 'tabs_style_full.css',
153 xl('Theme of the tabs layout (need to logout and then login to see this new setting).')
156 'css_header' => array(
157 xl('General Theme (need to logout/login after change this setting)'),
158 'css',
159 'style_light.css',
160 xl('Pick a general theme (need to logout/login after change this setting).')
163 'menu_styling_vertical' => array(
164 xl('Vertical Menu Style'),
165 array(
166 '0' => xl('Tree'),
167 '1' => xl('Sliding'),
169 '1',
170 xl('Vertical Menu Style')
173 'default_encounter_view' => array(
174 xl('Default Encounter View'), // descriptive name
175 array(
176 '0' => xl('Clinical View'),
177 '1' => xl('Billing View'),
179 '0', // default = tree menu
180 xl('Choose your default encounter view')
183 'gbl_nav_area_width' => array(
184 xl('Navigation Area Width'),
185 'num',
186 '150',
187 xl('Width in pixels of the left navigation frame.')
190 'openemr_name' => array(
191 xl('Application Title'),
192 'text',
193 'OpenEMR',
194 xl('Application name for login page and main window title.')
197 'enable_group_therapy' => array(
198 xl('Enable Group Therapy'),
199 'bool', // data type
200 '0', // default = false
201 xl('Enables groups module in system.')
204 'full_new_patient_form' => array(
205 xl('New Patient Form'),
207 array(
208 '0' => xl('Old-style static form without search or duplication check'),
209 '1' => xl('All demographics fields, with search and duplication check'),
210 '2' => xl('Mandatory or specified fields only, search and dup check'),
211 '3' => xl('Mandatory or specified fields only, dup check, no search'),
212 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
214 '1', // default
215 xl('Style of form used for adding new patients')
218 'gbl_edit_patient_form' => array(
219 xl('Modify Patient Form'),
221 array(
222 '0' => xl('Standard check'),
223 '1' => xl('Zend Module check in addition to standard check')
225 '0', // default
226 xl('Validation mechanism for when modifying patient demographics.')
229 'patient_search_results_style' => array(
230 xl('Patient Search Results Style'),
231 array(
232 '0' => xl('Encounter statistics'),
233 '1' => xl('Mandatory and specified fields'),
235 '0', // default
236 xl('Type of columns displayed for patient search results')
239 'gbl_tall_nav_area' => array(
240 xl('Tall Navigation Area'),
241 'bool', // data type
242 '0', // default = false
243 xl('Navigation area uses full height of frameset')
246 'gbl_nav_visit_forms' => array(
247 xl('Navigation Area Visit Forms'),
248 'bool', // data type
249 '1', // default = true
250 xl('Navigation area includes encounter forms')
253 'simplified_demographics' => array(
254 xl('Simplified Demographics'),
255 'bool', // data type
256 '0', // default = false
257 xl('Omit insurance and some other things from the demographics form')
260 'simplified_prescriptions' => array(
261 xl('Simplified Prescriptions'),
262 'bool', // data type
263 '0', // default = false
264 xl('Omit form, route and interval which then become part of dosage')
267 'simplified_copay' => array(
268 xl('Simplified Co-Pay'),
269 'bool', // data type
270 '0', // default = false
271 xl('Omit method of payment from the co-pay panel')
274 'use_charges_panel' => array(
275 xl('Use Charges Panel'),
276 'bool', // data type
277 '0', // default = false
278 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
281 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
282 'enable_fees_in_left_menu' => array(
283 xl('Enable Fees Submenu'),
284 'bool', // data type
285 '1', // default = true
286 xl('Enable Fees Submenu')
288 'enable_batch_payment' => array(
289 xl('Enable Batch Payment'),
290 'bool', // data type
291 '1', // default = true
292 xl('Enable Batch Payment')
294 'enable_posting' => array(
295 xl('Enable Posting'),
296 'bool', // data type
297 '1', // default = true
298 xl('Enable Posting')
300 // EDI history 2012-09-13
301 'enable_edihistory_in_left_menu' => array(
302 xl('Enable EDI History'),
303 'bool', // data type
304 '1', // default = true
305 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
308 'online_support_link' => array(
309 xl('Online Support Link'),
310 'text', // data type
311 'http://open-emr.org/',
312 xl('URL for OpenEMR support.')
315 'support_phone_number' => array(
316 xl('Support Phone Number'),
317 'text',
319 xl('Phone Number for Vendor Support that Appears on the About Page.')
322 'encounter_page_size' => array(
323 xl('Encounter Page Size'),
324 array(
325 '0' => xl('Show All'),
326 '5' => '5',
327 '10' => '10',
328 '15' => '15',
329 '20' => '20',
330 '25' => '25',
331 '50' => '50',
333 '20',
334 xl('Number of encounters to display per page.')
337 'gbl_pt_list_page_size' => array(
338 xl('Patient List Page Size'),
339 array(
340 '10' => '10',
341 '25' => '25',
342 '50' => '50',
343 '100' => '100',
345 '10',
346 xl('Number of patients to display per page in the patient list.')
349 'gbl_pt_list_new_window' => array(
350 xl('Patient List New Window'),
351 'bool', // data type
352 '0', // default = false
353 xl('Default state of New Window checkbox in the patient list.')
356 'gbl_vitals_options' => array(
357 xl('Vitals Form Options'),
358 array(
359 '0' => xl('Standard'),
360 '1' => xl('Omit circumferences'),
362 '0', // default
363 xl('Special treatment for the Vitals form')
366 'insurance_information' => array(
367 xl('Show Additional Insurance Information'), // descriptive name
368 array(
369 '0' => xl('None'),
370 '1' => xl('Address Only'),
371 '2' => xl('Address and Postal Code'),
372 '3' => xl('Address and State'),
373 '4' => xl('Address, State and Postal Code'),
374 '5' => xl('Postal Code and Box Number'),
376 '4', // default
377 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
380 'gb_how_sort_list' => array(
381 xl('How to sort a drop-lists'),
382 array(
383 '0' => 'Sort by seq',
384 '1' => 'Sort alphabetically'
386 '0',
387 xl('What kind of sorting will be in the drop lists.')
390 'show_label_login' => array(
391 xl('Show Title on Login'),
392 'bool', // data type
393 '0', // default = false
394 xl('Show Title on Login')
397 'extra_logo_login' => array(
398 xl('Show Extra Logo on Login'),
399 'bool', // data type
400 '0', // default = false
401 xl('Show Extra Logo on Login')
404 'tiny_logo_1' => array(
405 xl('Show Mini Logo 1'),
406 'bool', // data type
407 '0', // default = false
408 xl('Show Mini Logo 1')
411 'tiny_logo_2' => array(
412 xl('Show Mini Logo 2'),
413 'bool', // data type
414 '0', // default = false
415 xl('Show Mini Logo 2')
420 // Locale Tab
422 'Locale' => array(
424 'language_default' => array(
425 xl('Default Language'),
426 'lang', // data type
427 'English (Standard)', // default = english
428 xl('Default language if no other is allowed or chosen.')
431 'language_menu_showall' => array(
432 xl('All Languages Allowed'),
433 'bool', // data type
434 '1', // default = true
435 xl('Allow all available languages as choices on menu at login.')
438 'language_menu_other' => array(
439 xl('Allowed Languages'),
440 'm_lang', // data type
441 '', // default = none
442 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
445 'allow_debug_language' => array(
446 xl('Allow Debugging Language'),
447 'bool', // data type
448 '1', // default = true during development and false for production releases
449 xl('This will allow selection of the debugging (\'dummy\') language.')
452 'translate_no_safe_apostrophe' => array(
453 xl('Do Not Use Safe Apostrophe'),
454 'bool', // data type
455 '0', // default = false
456 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)')
459 'translate_layout' => array(
460 xl('Translate Layouts'),
461 'bool', // data type
462 '1', // default = true
463 xl('Is text from form layouts to be translated?')
466 'translate_lists' => array(
467 xl('Translate Lists'),
468 'bool', // data type
469 '1', // default = true
470 xl('Is text from lists to be translated?')
473 'translate_gacl_groups' => array(
474 xl('Translate Access Control Groups'),
475 'bool', // data type
476 '1', // default = true
477 xl('Are access control group names to be translated?')
480 'translate_form_titles' => array(
481 xl('Translate Patient Note Titles'),
482 'bool', // data type
483 '1', // default = true
484 xl('Are patient note titles to be translated?')
487 'translate_document_categories' => array(
488 xl('Translate Document Categories'),
489 'bool', // data type
490 '1', // default = true
491 xl('Are document category names to be translated?')
494 'translate_appt_categories' => array(
495 xl('Translate Appointment Categories'),
496 'bool', // data type
497 '1', // default = true
498 xl('Are appointment category names to be translated?')
501 'units_of_measurement' => array(
502 xl('Units for Visit Forms'),
503 array(
504 '1' => xl('Show both US and metric (main unit is US)'),
505 '2' => xl('Show both US and metric (main unit is metric)'),
506 '3' => xl('Show US only'),
507 '4' => xl('Show metric only'),
509 '1', // default = Both/US
510 xl('Applies to the Vitals form and Growth Chart')
513 'us_weight_format' => array(
514 xl('Display Format for US Weights'),
515 array(
516 '1'=>xl('Show pounds as decimal value'),
517 '2'=>xl('Show pounds and ounces')
519 '1',
520 xl('Applies to Vitals form')
523 'disable_deprecated_metrics_form' => array(
524 xl('Disable Old Metric Vitals Form'),
525 'bool', // data type
526 '1', // default = true
527 xl('This was the older metric-only Vitals form, now deprecated.')
530 'phone_country_code' => array(
531 xl('Telephone Country Code'),
532 'num',
533 '1', // default = North America
534 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
537 'date_display_format' => array(
538 xl('Date Display Format'),
539 array(
540 '0' => xl('YYYY-MM-DD'),
541 '1' => xl('MM/DD/YYYY'),
542 '2' => xl('DD/MM/YYYY'),
544 '0',
545 xl('Format used to display most dates.')
548 'time_display_format' => array(
549 xl('Time Display Format'),
550 array(
551 '0' => xl('24 hr'),
552 '1' => xl('12 hr'),
554 '0',
555 xl('Format used to display most times.')
558 'currency_decimals' => array(
559 xl('Currency Decimal Places'),
560 array(
561 '0' => xl('0'),
562 '1' => xl('1'),
563 '2' => xl('2'),
565 '2',
566 xl('Number of digits after decimal point for currency, usually 0 or 2.')
569 'currency_dec_point' => array(
570 xl('Currency Decimal Point Symbol'),
571 array(
572 '.' => xl('Period'),
573 ',' => xl('Comma'),
575 '.',
576 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
579 'currency_thousands_sep' => array(
580 xl('Currency Thousands Separator'),
581 array(
582 ',' => xl('Comma'),
583 '.' => xl('Period'),
584 ' ' => xl('Space'),
585 '' => xl('None'),
587 ',',
588 xl('Symbol used to separate thousands for currency.')
591 'gbl_currency_symbol' => array(
592 xl('Currency Designator'),
593 'text', // data type
594 '$', // default
595 xl('Code or symbol to indicate currency')
597 'age_display_format'=>array(xl('Age Display Format'),
598 array(
599 '0'=>xl('Years or months'),
600 '1'=>xl('Years, months and days')
602 '0',
603 xl('Format for age display')
605 'age_display_limit' => array(
606 xl('Age in Years for Display Format Change'),
607 'num',
608 '3',
609 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
611 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
612 'weekend_days' => array(
613 xl('Your weekend days'),
614 array(
615 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
616 '0' => xl('Sunday'),
617 '5' => xl('Friday'),
618 '6' => xl('Saturday'),
619 '5,6' => xl('Friday') .' - ' . xl('Saturday'),
621 '6,0'
622 ,xl('which days are your weekend days?')
627 // Features Tab
629 'Features' => array(
631 'specific_application' => array(
632 xl('Specific Application'),
633 array(
634 '0' => xl('None'),
635 '2' => xl('IPPF'),
636 '3' => xl('Weight loss clinic'),
638 '0', // default
639 xl('Indicator for specialized usage')
642 'inhouse_pharmacy' => array(
643 xl('Drugs and Products'),
644 array(
645 '0' => xl('Do not inventory and sell any products'),
646 '1' => xl('Inventory and sell drugs only'),
647 '2' => xl('Inventory and sell both drugs and non-drug products'),
648 '3' => xl('Products but no prescription drugs and no templates'),
650 '0', // default
651 xl('Option to support inventory and sales of products')
654 'disable_chart_tracker' => array(
655 xl('Disable Chart Tracker'),
656 'bool', // data type
657 '0', // default = false
658 xl('Removes the Chart Tracker feature')
661 'disable_phpmyadmin_link' => array(
662 xl('Disable phpMyAdmin'),
663 'bool', // data type
664 '0', // default = false
665 xl('Removes support for phpMyAdmin')
668 'disable_immunizations' => array(
669 xl('Disable Immunizations'),
670 'bool', // data type
671 '0', // default = false
672 xl('Removes support for immunizations')
675 'disable_prescriptions' => array(
676 xl('Disable Prescriptions'),
677 'bool', // data type
678 '0', // default = false
679 xl('Removes support for prescriptions')
682 'omit_employers' => array(
683 xl('Omit Employers'),
684 'bool', // data type
685 '0', // default = false
686 xl('Omit employer information in patient demographics')
689 'select_multi_providers' => array(
690 xl('Support Multi-Provider Events'),
691 'bool', // data type
692 '0', // default = false
693 xl('Support calendar events that apply to multiple providers')
696 'disable_non_default_groups' => array(
697 xl('Disable User Groups'),
698 'bool', // data type
699 '1', // default = true
700 xl('Normally this should be checked. Not related to access control.')
703 'ignore_pnotes_authorization' => array(
704 xl('Skip Authorization of Patient Notes'),
705 'bool', // data type
706 '1', // default = true
707 xl('Do not require patient notes to be authorized')
710 'support_encounter_claims' => array(
711 xl('Allow Encounter Claims'),
712 'bool', // data type
713 '0', // default = false
714 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
717 'advance_directives_warning' => array(
718 xl('Advance Directives Warning'),
719 'bool', // data type
720 '0', // default = false
721 xl('Display advance directives in the demographics page.')
724 'configuration_import_export' => array(
725 xl('Configuration Export/Import'),
726 'bool', // data type
727 '0', // default = false
728 xl('Support export/import of configuration data via the Backup page.')
731 'restrict_user_facility' => array(
732 xl('Restrict Users to Facilities'),
733 'bool', // data type
734 '0', // default
735 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
738 'set_facility_cookie' => array(
739 xl('Remember Selected Facility'),
740 'bool', // data type
741 '0', // default
742 xl('Set a facility cookie to remember the selected facility between logins.')
745 'receipts_by_provider' => array(
746 xl('Print Receipts by Provider'),
747 'bool',
748 '0', // default
749 xl('Causes Receipts to Print Encounter/Primary Provider Info')
752 'discount_by_money' => array(
753 xl('Discounts as Monetary Amounts'),
754 'bool', // data type
755 '1', // default = true
756 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
759 'gbl_visit_referral_source' => array(
760 xl('Referral Source for Encounters'),
761 'bool', // data type
762 '0', // default = false
763 xl('A referral source may be specified for each visit.')
766 'gbl_mask_patient_id' => array(
767 xl('Mask for Patient IDs'),
768 'text', // data type
769 '', // default
770 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
773 'gbl_mask_invoice_number' => array(
774 xl('Mask for Invoice Numbers'),
775 'text', // data type
776 '', // default
777 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
780 'gbl_mask_product_id' => array(
781 xl('Mask for Product IDs'),
782 'text', // data type
783 '', // default
784 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
787 'hide_billing_widget' => array(
788 xl('Hide Billing Widget'),
789 'bool', // data type
790 '0', // default = false
791 xl('This will hide the Billing Widget in the Patient Summary screen')
794 'force_billing_widget_open' => array(
795 xl('Force Billing Widget Open'),
796 'bool', // data type
797 '0', // default = false
798 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
801 'activate_ccr_ccd_report' => array(
802 xl('Activate CCR/CCD Reporting'),
803 'bool', // data type
804 '1', // default = true
805 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
808 'hide_document_encryption' => array(
809 xl('Hide Encryption/Decryption Options In Document Management'),
810 'bool', // data type
811 '1', // default = true
812 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
815 'use_custom_immun_list' => array(
816 xl('Use Custom Immunization List'),
817 'bool', // data type
818 '0', // default = true
819 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
822 'preprinted_cms_1500' => array(
823 xl('Prints the CMS 1500 on the Preprinted form'),
824 'bool', // data type
825 '0', // default = false
826 xl('Prints the CMS 1500 on the Preprinted form')
829 'cms_top_margin_default' => array(
830 xl('Default top print margin for CMS 1500'),
831 'num', // data type
832 '24', // default
833 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
836 'cms_left_margin_default' => array(
837 xl('Default left print margin for CMS 1500'),
838 'num', // data type
839 '20', // default
840 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
843 'cms_1500' => array(
844 xl('CMS 1500 Paper Form Format'),
845 array(
846 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
847 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
849 '1', // default
850 xl('This specifies which revision of the form the billing module should generate')
853 'cms_1500_box_31_format' => array(
854 xl('CMS 1500: Box 31 Format'),
855 array(
856 '0' => xl('Signature on File'),
857 '1' => xl('Firstname Lastname'),
858 '2' => xl('None'),
860 '0', // default
861 xl('This specifies whether to include date in Box 31.')
864 'cms_1500_box_31_date' => array(
865 xl('CMS 1500: Date in Box 31 (Signature)'),
866 array(
867 '0' => xl('None'),
868 '1' => xl('Date of Service'),
869 '2' => xl('Today'),
871 '0', // default
872 xl('This specifies whether to include date in Box 31.')
875 'amendments' => array (
876 xl('Amendments'),
877 'bool', // data type
878 '1', // default = true
879 xl('Enable amendments feature')
882 'allow_pat_delete' => array(
883 xl('Allow Administrators to Delete Patients'),
884 'bool', // data type
885 '0', // default = false
886 xl('Allow Administrators to Delete Patients')
890 'observation_results_immunization' => array(
891 xl('Immunization Observation Results'),
892 'bool', // data type
893 '1', // default
894 xl('Observation Results in Immunization')
898 // Report Tab
900 'Report' => array(
902 'use_custom_daysheet' => array(
903 xl('Use Custom End of Day Report'),
904 array(
905 '0' => xl('None'),
906 '1' => xl('Print End of Day Report 1'),
907 '2' => xl('Print End of Day Report 2'),
908 '3' => xl('Print End of Day Report 3'),
909 ), // data type
910 '1', // default = Print End of Day Report 1
911 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
914 'daysheet_provider_totals' => array(
915 xl('End of Day by Provider or allow Totals Only'),
916 array(
917 '0' => xl('Provider'),
918 '1' => xl('Totals Only'),
920 '1', // default
921 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
924 'ledger_begin_date' => array(
925 xl('Beginning Date for Ledger Report'),
926 array(
927 'Y1' => xl('One Year Ago'),
928 'Y2' => xl('Two Years Ago'),
929 'M6' => xl('Six Months Ago'),
930 'M3' => xl('Three Months Ago'),
931 'M1' => xl('One Month Ago'),
932 'D1' => xl('One Day Ago'),
934 'Y1', // default = One Year
935 xl('This is the Beginning date for the Ledger Report.')
938 'print_next_appointment_on_ledger' => array(
939 xl('Print the Next Appointment on the Bottom of the Ledger'),
940 'bool', // data type
941 '1', // default = true
942 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
945 'sales_report_invoice' => array(
946 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
947 array(
948 '0' => xl('Invoice Number'),
949 '1' => xl('Patient Name and ID'),
950 '2' => xl('Patient Name and Invoice'),
952 '2', // default = 2
953 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
956 'cash_receipts_report_invoice' => array(
957 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
958 array(
959 '0' => xl('Invoice Number'),
960 '1' => xl('Patient Name'),
962 '0', // default = 0
963 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
968 // Billing Tab
970 'Billing' => array(
972 'default_search_code_type' => array(
973 xl('Default Search Code Type'),
974 'all_code_types', // data type
975 'ICD10', // default
976 xl('The default code type to search for in the Fee Sheet.')
979 'support_fee_sheet_line_item_provider' => array(
980 xl('Support provider in line item in fee sheet'),
981 'bool', // data type
982 '0', // default = false
983 xl('This Enables provider in line item in the fee sheet')
986 'default_fee_sheet_line_item_provider' => array(
987 xl('Default to a provider for line item in the fee sheet'),
988 'bool', // data type
989 '0', // default = false
990 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
993 'replicate_justification' => array(
994 xl('Automatically replicate justification codes in Fee Sheet'),
995 'bool', // data type
996 '0', // default = false
997 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1000 'display_units_in_billing' => array(
1001 xl('Display the Units Column on the Billing Screen'),
1002 'bool', // data type
1003 '0', // default = false
1004 xl('Display the Units Column on the Billing Screen')
1007 'notes_to_display_in_Billing' => array(
1008 xl('Which notes are to be displayed in the Billing Screen'),
1009 array(
1010 '0' => xl('None'),
1011 '1' => xl('Encounter Billing Note'),
1012 '2' => xl('Patient Billing Note'),
1013 '3' => xl('All'),
1015 '3',
1016 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1019 'set_pos_code_encounter' => array(
1020 xl('Set POS code in encounter'),
1021 'bool', // data type
1022 '0', // default = false
1023 xl('This feature will allow the default POS facility code to be overriden from the encounter.')
1026 'use_custom_statement' => array(
1027 xl('Use Custom Statement'),
1028 'bool', // data type
1029 '0', // default = false
1030 xl('This will use the custom Statment showing the description instead of the codes.')
1033 'statement_appearance' => array(
1034 xl('Statement Appearance'),
1035 array(
1036 '0' => xl('Plain Text'),
1037 '1' => xl('Modern/images')
1038 ), // data type
1039 '1', // default = true
1040 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1043 'billing_phone_number' => array(
1044 xl('Custom Billing Phone Number'),
1045 'text', // data type
1047 xl('Phone number for billing inquiries')
1050 'show_aging_on_custom_statement' => array(
1051 xl('Show Aging on Custom Statement'),
1052 'bool', // data type
1053 '0', // default = false
1054 xl('This will Show Aging on the custom Statement.')
1057 'use_statement_print_exclusion' => array(
1058 xl('Allow Statement Exclusions from Printing'),
1059 'bool', // data type
1060 '0', // default = false
1061 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1064 'minimum_amount_to_print' => array(
1065 xl('Total Minimum Amount of Statement to Allow Printing'),
1066 'num', // data type
1067 '1.00',
1068 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1071 'statement_bill_note_print' => array(
1072 xl('Print Patient Billing Note'),
1073 'bool', // data type
1074 '0', // default = false
1075 xl('This will allow printing of the Patient Billing Note on the statements.')
1078 'number_appointments_on_statement' => array(
1079 xl('Number of Appointments on Statement'),
1080 'num', // data type
1081 '0', // default = 0
1082 xl('The Number of Future Appointments to Display on the Statement.')
1085 'statement_message_to_patient' => array(
1086 xl('Print Custom Message'),
1087 'bool', // data type
1088 '0', // default = false
1089 xl('This will allow printing of a custom Message on the statements.')
1092 'statement_msg_text' => array(
1093 xl('Custom Statement message'),
1094 'text', // data type
1096 xl('Text for Custom statement message.')
1099 'use_dunning_message' => array(
1100 xl('Use Custom Dunning Messages'),
1101 'bool', // data type
1102 '0', // default = false
1103 xl('This will allow use of the custom Dunning Messages on the statements.')
1106 'first_dun_msg_set' => array(
1107 xl('Number of days before showing first account message'),
1108 'num', // data type
1109 '30',
1110 xl('Number of days before showing first account message.')
1113 'first_dun_msg_text' => array(
1114 xl('First account message'),
1115 'text', // data type
1117 xl('Text for first account message.')
1120 'second_dun_msg_set' => array(
1121 xl('Number of days before showing second account message'),
1122 'num', // data type
1123 '60',
1124 xl('Number of days before showing second account message')
1127 'second_dun_msg_text' => array(
1128 xl('Second account message'),
1129 'text', // data type
1131 xl('Text for second account message.')
1134 'third_dun_msg_set' => array(
1135 xl('Number of days before showing third account message'),
1136 'num', // data type
1137 '90',
1138 xl('Number of days before showing third account message')
1141 'third_dun_msg_text' => array(
1142 xl('Third account message'),
1143 'text', // data type
1145 xl('Text for third account message.')
1148 'fourth_dun_msg_set' => array(
1149 xl('Number of days before showing fourth account message'),
1150 'num', // data type
1151 '120',
1152 xl('Number of days before showing fourth account message')
1155 'fourth_dun_msg_text' => array(
1156 xl('Fourth account message'),
1157 'text', // data type
1159 xl('Text for fourth account message.')
1162 'fifth_dun_msg_set' => array(
1163 xl('Number of days before showing fifth account message'),
1164 'num', // data type
1165 '150',
1166 xl('Number of days before showing fifth account message')
1169 'fifth_dun_msg_text' => array(
1170 xl('Fifth account message'),
1171 'text', // data type
1173 xl('Text for fifth account message.')
1175 'save_codes_history' => array(
1176 xl('Save codes history'),
1177 'bool', // data type
1178 '1', // default
1179 xl('Save codes history')
1183 // E-Sign Tab
1185 'E-Sign' => array(
1187 'esign_all' => array(
1188 xl('Allows E-Sign on the entire encounter'),
1189 'bool', // data type
1190 '0', // default = false
1191 xl('This will enable signing an entire encounter, rather than individual forms')
1194 'lock_esign_all' => array(
1195 xl('Lock e-signed encounters and their forms'),
1196 'bool', // data type
1197 '0', // default = false
1198 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1201 'esign_individual' => array(
1202 xl('Allows E-Signing Individual Forms'),
1203 'bool', // data type
1204 '1', // default = false
1205 xl('This will enable signing individual forms separately')
1208 'lock_esign_individual' => array(
1209 xl('Lock an e-signed form individually'),
1210 'bool', // data type
1211 '1', // default = false
1212 xl('This will disable the Edit button on any form that is e-signed')
1215 'esign_lock_toggle' => array(
1216 xl('Enable lock toggle'),
1217 'bool', // data type
1218 '0', // default = false
1219 xl('This will give the user the option to lock (separate locking and signing)')
1222 'esign_report_hide_empty_sig' => array(
1223 xl('Hide Empty E-Sign Logs On Report'),
1224 'bool', // data type
1225 '1', // default = false
1226 xl('This will hide empty e-sign logs on the patient report')
1230 //Documents Tab
1231 'Documents' => array(
1233 'document_storage_method' => array(
1234 xl('Document Storage Method'),
1235 array(
1236 '0' => xl('Hard Disk'),
1237 '1' => xl('CouchDB')
1239 '0', // default
1240 xl('Option to save method of document storage.')
1242 'couchdb_host' => array(
1243 xl('CouchDB HostName'),
1244 'text',
1245 'localhost',
1246 xl('CouchDB host'),
1248 'couchdb_user' => array(
1249 xl('CouchDB UserName'),
1250 'text',
1252 xl('Username to connect to CouchDB'),
1254 'couchdb_pass' => array(
1255 xl('CouchDB Password'),
1256 'text',
1258 xl('Password to connect to CouchDB'),
1260 'couchdb_port' => array(
1261 xl('CouchDB Port'),
1262 'text',
1263 '5984',
1264 xl('CouchDB port'),
1266 'couchdb_dbase' => array(
1267 xl('CouchDB Database'),
1268 'text',
1270 xl('CouchDB database name'),
1272 'couchdb_log' => array(
1273 xl('CouchDB Log Enable'),
1274 'bool',
1275 '0',
1276 xl('Enable log for document uploads/downloads to CouchDB'),
1279 'expand_document_tree' => array(
1280 xl('Expand All Document Categories'),
1281 'bool', // data type
1282 '0', // default = false
1283 xl('Expand All Document Categories by Default')
1286 'patient_id_category_name' => array(
1287 xl('Patient ID Category Name'),
1288 'text', // data type
1289 'Patient ID card', // default
1290 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1293 'patient_photo_category_name' => array(
1294 xl('Patient Photo Category Name'),
1295 'text', // data type
1296 'Patient Photograph', // default
1297 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1300 'lab_results_category_name' => array(
1301 xl('Lab Results Category Name'),
1302 'text', // data type
1303 'Lab Report', // default
1304 xl('Document category name for storage of electronically received lab results.')
1307 'gbl_mdm_category_name' => array(
1308 xl('MDM Document Category Name'),
1309 'text', // data type
1310 'Lab Report', // default
1311 xl('Document category name for storage of electronically received MDM documents.')
1313 'generate_doc_thumb' => array(
1314 xl('Generate thumbnail'),
1315 'bool',
1316 '0',
1317 xl('Generate thumbnail images'),
1319 'thumb_doc_max_size' => array(
1320 xl('Thumbnail size'),
1321 'text', // data type
1322 '100', // default
1323 xl('Maximum size of thumbnail file')
1327 // Calendar Tab
1329 'Calendar' => array(
1331 'disable_calendar' => array(
1332 xl('Disable Calendar'),
1333 'bool', // data type
1334 '0', // default
1335 xl('Do not display the calendar.')
1338 'schedule_start' => array(
1339 xl('Calendar Starting Hour'),
1340 'hour',
1341 '8', // default
1342 xl('Beginning hour of day for calendar events.')
1345 'schedule_end' => array(
1346 xl('Calendar Ending Hour'),
1347 'hour',
1348 '17', // default
1349 xl('Ending hour of day for calendar events.')
1352 'calendar_interval' => array(
1353 xl('Calendar Interval'),
1354 array(
1355 '5' => '5',
1356 '10' => '10',
1357 '15' => '15',
1358 '20' => '20',
1359 '30' => '30',
1360 '60' => '60',
1362 '15', // default
1363 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1366 'calendar_view_type' => array(
1367 xl('Default Calendar View'),
1368 array(
1369 'day' => xl('Day'),
1370 'week' => xl('Week'),
1371 'month' => xl('Month'),
1373 'day', // default
1374 xl('This sets the Default Calendar View, Default is Day.')
1376 'first_day_week' => array(
1377 xl('First day in the week') ,
1378 array(
1379 '1' => xl('Monday'),
1380 '0' => xl('Sunday'),
1381 '6' => xl('Saturday')
1383 '1',
1384 xl('Your first day of the week.')
1386 'calendar_appt_style' => array(
1387 xl('Appointment Display Style'),
1388 array(
1389 '1' => 'Last name',
1390 '2' => 'Last name, first name',
1391 '3' => 'Last name, first name (title)',
1392 '4' => 'Last name, first name (title: comments)',
1394 '2', // default
1395 xl('This determines how appointments display on the calendar.')
1398 'event_color' => array(
1399 xl('Appointment/Event Color'),
1400 array(
1401 '1' => 'Category Color Schema',
1402 '2' => 'Facility Color Schema',
1403 ), // data type
1404 '1', // default
1405 xl('This determines which color schema used for appointment')
1408 'number_of_appts_to_show' => array(
1409 xl('Appointments - Patient Summary - Number to Display'),
1410 'num',
1411 '10',
1412 xl('Number of Appointments to display in the Patient Summary')
1415 'number_of_group_appts_to_show' => array(
1416 xl('Appointments - Group Summary - Number to Display'),
1417 'num',
1418 '10',
1419 xl('Number of Appointments to display in the Group Summary')
1421 'number_of_ex_appts_to_show' => array(
1422 xl('Excluded Appointments - Tooltip - Number to Display'),
1423 'num',
1424 '15',
1425 xl('Number of Excluded Appointments to display in the Tooltip')
1429 'patient_portal_appt_display_num' => array(
1430 xl('Appointments - Onsite Patient Portal - Number to Display'),
1431 'num',
1432 '20',
1433 xl('Number of Appointments to display in the Onsite Patient Portal')
1436 'appt_display_sets_option' => array(
1437 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1438 'bool', // data type
1439 '1', // default
1440 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1443 'appt_display_sets_color_1' => array(
1444 xl('Appointment Display Sets - Color 1'),
1445 'color_code',
1446 '#FFFFFF',
1447 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).')
1450 'appt_display_sets_color_2' => array(
1451 xl('Appointment Display Sets - Color 2'),
1452 'color_code',
1453 '#E6E6FF',
1454 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).')
1457 'appt_display_sets_color_3' => array(
1458 xl('Appointment Display Sets - Color 3'),
1459 'color_code',
1460 '#E6FFE6',
1461 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1464 'appt_display_sets_color_4' => array(
1465 xl('Appointment Display Sets - Color 4'),
1466 'color_code',
1467 '#FFE6FF',
1468 xl('Color for the last set when not all member appointments are displayed.')
1471 'appt_recurrences_widget' => array(
1472 xl('Recurrent Appointment Display Widget'),
1473 'bool', // data type
1474 '1', // default
1475 xl('Display the recurrent appointment widget in the patient summary.')
1478 'num_past_appointments_to_show' => array(
1479 xl('Past Appointment Display Widget'),
1480 'num', // data type
1481 '0', // default = false
1482 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)')
1485 'docs_see_entire_calendar' => array(
1486 xl('Providers See Entire Calendar'),
1487 'bool', // data type
1488 '0', // default
1489 xl('Check this if you want providers to see all appointments by default and not just their own.')
1492 'auto_create_new_encounters' => array(
1493 xl('Auto-Create New Encounters'),
1494 'bool', // data type
1495 '1', // default
1496 xl('Automatically create a new encounter when an appointment check in status is selected.')
1499 'disable_pat_trkr' => array(
1500 xl('Disable Patient Flow Board'),
1501 'bool', // data type
1502 '0', // default
1503 xl('Do not display the patient flow board.')
1506 'ptkr_visit_reason' => array(
1507 xl('Show Visit Reason in Patient Flow Board'),
1508 'bool', // data type
1509 '0', // default = false
1510 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1513 'ptkr_show_pid' => array(
1514 xl('Show Patient ID in Patient Flow Board'),
1515 'bool', // data type
1516 '1', // default = true
1517 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1520 'ptkr_show_encounter' => array(
1521 xl('Show Patient Encounter Number in Patient Flow Board'),
1522 'bool', // data type
1523 '1', // default = true
1524 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1527 'pat_trkr_timer' => array(
1528 xl('Patient Flow Board Timer Interval'),
1529 array(
1530 '0' => 'No automatic refresh',
1531 '0:10' => '10',
1532 '0:20' => '20',
1533 '0:30' => '30',
1534 '0:40' => '40',
1535 '0:50' => '50',
1536 '0:59' => '60',
1538 '0:20', // default
1539 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1542 'checkout_roll_off' => array(
1543 xl('Number of Minutes to display completed checkouts'),
1544 'num',
1545 '0', // default
1546 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1549 'drug_screen' => array(
1550 xl('Enable Random Drug Testing'),
1551 'bool', // data type
1552 '0', // default
1553 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1556 'drug_testing_percentage' => array(
1557 xl('Percentage of Patients to Drug Test'),
1558 'num',
1559 '33', // default
1560 xl('Percentage of Patients to select for Random Drug Testing.')
1563 'maximum_drug_test_yearly' => array(
1564 xl('Maximum number of times a Patient can be tested in a year'),
1565 'num',
1566 '0', // default
1567 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1570 'submit_changes_for_all_appts_at_once' => array(
1571 xl('Submit Changes For All Appts At Once'),
1572 'bool', // data type
1573 '1', // default
1574 xl('Enables to submit changes for all appointments of a recurrence at once.')
1580 // Security Tab
1582 'Security' => array(
1583 'sql_string_no_show_screen' => array(
1584 xl('Mode - Do Not Show SQL Queries'),
1585 'bool', // data type
1586 '0', // default
1587 xl('Do not allow SQL queries to be outputted to screen.')
1589 'timeout' => array(
1590 xl('Idle Session Timeout Seconds'),
1591 'num', // data type
1592 '7200', // default
1593 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1595 'secure_upload' => array(
1596 xl('Secure Upload Files with White List'),
1597 'bool', // data type
1598 '0', // default
1599 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1601 'secure_password' => array(
1602 xl('Require Strong Passwords'),
1603 'bool', // data type
1604 '0', // default
1605 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1607 'password_history' => array(
1608 xl('Require Unique Passwords'),
1609 'bool', // data type
1610 '0', // default
1611 xl('Means none of last three passwords are allowed when changing a password.')
1613 'password_compatibility' => array(
1614 xl('Permit unsalted passwords'),
1615 'bool', // data type
1616 '1', // default
1617 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')
1620 'password_expiration_days' => array(
1621 xl('Default Password Expiration Days'),
1622 'num', // data type
1623 '0', // default
1624 xl('Default password expiration period in days. 0 means this feature is disabled.')
1627 'password_grace_time' => array(
1628 xl('Password Expiration Grace Period'),
1629 'num', // data type
1630 '0', // default
1631 xl('Period in days where a user may login with an expired password.')
1634 'is_client_ssl_enabled' => array(
1635 xl('Enable Client SSL'),
1636 'bool', // data type
1637 '0', // default
1638 xl('Enable client SSL certificate authentication.')
1641 'certificate_authority_crt' => array(
1642 xl('Path to CA Certificate File'),
1643 'text', // data type
1644 '', // default
1645 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1648 'certificate_authority_key' => array(
1649 xl('Path to CA Key File'),
1650 'text', // data type
1651 '', // default
1652 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1655 'client_certificate_valid_in_days' => array(
1656 xl('Client Certificate Expiration Days'),
1657 'num', // data type
1658 '365', // default
1659 xl('Number of days that the client certificate is valid.')
1662 'Emergency_Login_email_id' => array(
1663 xl('Emergency Login Email Address'),
1664 'text', // data type
1665 '', // default
1666 xl('Email address, if any, to receive emergency login user activation messages.')
1669 'new_validate' => array(
1670 xl('New form validation'),
1671 'bool',
1672 '1',
1673 xl('New form validation')
1676 'allow_multiple_databases' => array(
1677 xl('Allow multiple databases'),
1678 'bool',
1679 '0',
1680 xl('Allow to use with multiple database')
1683 'safe_key_database' => array(
1684 xl('Safe key database'),
1685 'text', // data type
1686 '', // default
1687 xl('Key for multiple database credentials encryption')
1690 'use_active_directory' => array(
1691 xl('Use Active Directory'),
1692 'bool',
1693 '0',
1694 xl('If enabled, uses the specified active directory for login and authentication.')
1697 'account_suffix' => array(
1698 xl('Active Directory - Suffix Of Account'),
1699 'text',
1701 xl('The suffix of the account.')
1704 'base_dn' => array(
1705 xl('Active Directory - Domains Base'),
1706 'text',
1708 xl('Users is the standard windows CN, replace the DC stuff with your domain.')
1711 'domain_controllers' => array(
1712 xl('Active Directory - Domains Controllers'),
1713 'text',
1715 xl('The IP address of your domain controller(s).')
1720 // Notifications Tab
1722 'Notifications' => array(
1724 'patient_reminder_sender_name' => array(
1725 xl('Patient Reminder Sender Name'),
1726 'text', // data type
1727 '', // default
1728 xl('Name of the sender for patient reminders.')
1731 'patient_reminder_sender_email' => array(
1732 xl('Patient Reminder Sender Email'),
1733 'text', // data type
1734 '', // default
1735 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.')
1738 'practice_return_email_path' => array(
1739 xl('Notification Email Address'),
1740 'text', // data type
1741 '', // default
1742 xl('Email address, if any, to receive administrative notifications.')
1745 'EMAIL_METHOD' => array(
1746 xl('Email Transport Method'),
1747 array(
1748 'PHPMAIL' => 'PHPMAIL',
1749 'SENDMAIL' => 'SENDMAIL',
1750 'SMTP' => 'SMTP',
1752 'SMTP', // default
1753 xl('Method for sending outgoing email.')
1756 'SMTP_HOST' => array(
1757 xl('SMTP Server Hostname'),
1758 'text', // data type
1759 'localhost', // default
1760 xl('If SMTP is used, the server`s hostname or IP address.')
1763 'SMTP_PORT' => array(
1764 xl('SMTP Server Port Number'),
1765 'num', // data type
1766 '25', // default
1767 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1770 'SMTP_USER' => array(
1771 xl('SMTP User for Authentication'),
1772 'text', // data type
1773 '', // default
1774 xl('Must be empty if SMTP authentication is not used.')
1777 'SMTP_PASS' => array(
1778 xl('SMTP Password for Authentication'),
1779 'text', // data type
1780 '', // default
1781 xl('Must be empty if SMTP authentication is not used.')
1784 'SMTP_SECURE' => array(
1785 xl('SMTP Security Protocol'),
1786 array(
1787 '' => xl('None'),
1788 'ssl' => 'SSL',
1789 'tls' => 'TLS'
1792 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1795 'EMAIL_NOTIFICATION_HOUR' => array(
1796 xl('Email Notification Hours'),
1797 'num', // data type
1798 '50', // default
1799 xl('Number of hours in advance to send email notifications.')
1802 'SMS_NOTIFICATION_HOUR' => array(
1803 xl('SMS Notification Hours'),
1804 'num', // data type
1805 '50', // default
1806 xl('Number of hours in advance to send SMS notifications.')
1809 'SMS_GATEWAY_USENAME' => array(
1810 xl('SMS Gateway Username'),
1811 'text', // data type
1812 '', // default
1813 xl('Username for SMS Gateway.')
1816 'SMS_GATEWAY_PASSWORD' => array(
1817 xl('SMS Gateway Password'),
1818 'text', // data type
1819 '', // default
1820 xl('Password for SMS Gateway.')
1823 'SMS_GATEWAY_APIKEY' => array(
1824 xl('SMS Gateway API Key'),
1825 'text', // data type
1826 '', // default
1827 xl('API key for SMS Gateway.')
1830 'phone_notification_hour' => array(
1831 xl('Phone Notification Hour'),
1832 'num', // data type
1833 '50', // default
1834 xl('Number of hours in advance to send Phone notification.')
1837 'phone_gateway_username' => array(
1838 xl('Phone Gateway Username'),
1839 'text', // data type
1840 '', // default
1841 xl('Username for Phone Gateway.')
1844 'phone_gateway_password' => array(
1845 xl('Phone Gateway Password'),
1846 'text', // data type
1847 '', // default
1848 xl('Password for Phone Gateway.')
1851 'phone_gateway_url' => array(
1852 xl('Phone Gateway URL'),
1853 'text', // data type
1854 '', // default
1855 xl('URL for Phone Gateway.')
1860 // CDR (Clinical Decision Rules)
1862 'CDR' => array(
1864 'enable_cdr' => array(
1865 xl('Enable Clinical Decisions Rules (CDR)'),
1866 'bool', // data type
1867 '1', // default
1868 xl('Enable Clinical Decisions Rules (CDR)')
1871 'enable_allergy_check' => array(
1872 xl('Enable Allergy Check'),
1873 'bool', // data type
1874 '1', // default
1875 xl('Enable Allergy Check Against Medications and Prescriptions')
1878 'enable_alert_log' => array(
1879 xl('Enable Alert Log'),
1880 'bool', // data type
1881 '1', // default
1882 xl('Enable Alert Logging')
1885 'enable_cdr_new_crp' => array(
1886 xl('Enable Clinical Passive New Reminder(s) Popup'),
1887 'bool', // data type
1888 '1', // default
1889 xl('Enable Clinical Passive New Reminder(s) Popup')
1892 'enable_cdr_crw' => array(
1893 xl('Enable Clinical Passive Reminder Widget'),
1894 'bool', // data type
1895 '1', // default
1896 xl('Enable Clinical Passive Reminder Widget')
1899 'enable_cdr_crp' => array(
1900 xl('Enable Clinical Active Reminder Popup'),
1901 'bool', // data type
1902 '1', // default
1903 xl('Enable Clinical Active Reminder Popup')
1906 'enable_cdr_prw' => array(
1907 xl('Enable Patient Reminder Widget'),
1908 'bool', // data type
1909 '1', // default
1910 xl('Enable Patient Reminder Widget')
1913 'enable_cqm' => array(
1914 xl('Enable CQM Reporting'),
1915 'bool', // data type
1916 '1', // default
1917 xl('Enable Clinical Quality Measure (CQM) Reporting')
1920 'pqri_registry_name' => array(
1921 xl('PQRI Registry Name'),
1922 'text', // data type
1923 'Model Registry', // default
1924 xl('PQRI Registry Name')
1927 'pqri_registry_id' => array(
1928 xl('PQRI Registry ID'),
1929 'text', // data type
1930 '125789123', // default
1931 xl('PQRI Registry ID')
1934 'enable_amc' => array(
1935 xl('Enable AMC Reporting'),
1936 'bool', // data type
1937 '1', // default
1938 xl('Enable Automated Measure Calculations (AMC) Reporting')
1941 'enable_amc_prompting' => array(
1942 xl('Enable AMC Prompting'),
1943 'bool', // data type
1944 '1', // default
1945 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1948 'enable_amc_tracking' => array(
1949 xl('Enable AMC Tracking'),
1950 'bool', // data type
1951 '1', // default
1952 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
1955 'cdr_report_nice' => array(
1956 xl('CDR Reports Processing Priority'),
1957 array(
1958 '' => xl('Default Priority'),
1959 '5' => xl('Moderate Priority'),
1960 '10' => xl('Moderate/Low Priority'),
1961 '15' => xl('Low Priority'),
1962 '20' => xl('Lowest Priority')
1964 '', // default
1965 xl('Set processing priority for CDR engine based reports.')
1968 'pat_rem_clin_nice' => array(
1969 xl('Patient Reminder Creation Processing Priority'),
1970 array(
1971 '' => xl('Default Priority'),
1972 '5' => xl('Moderate Priority'),
1973 '10' => xl('Moderate/Low Priority'),
1974 '15' => xl('Low Priority'),
1975 '20' => xl('Lowest Priority')
1977 '', // default
1978 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
1981 'report_itemizing_standard' => array(
1982 xl('Enable Standard Report Itemization'),
1983 'bool', // data type
1984 '1', // default
1985 xl('Enable Itemization of Standard Clinical Rules Reports')
1988 'report_itemizing_cqm' => array(
1989 xl('Enable CQM Report Itemization'),
1990 'bool', // data type
1991 '1', // default
1992 xl('Enable Itemization of CQM Reports')
1995 'report_itemizing_amc' => array(
1996 xl('Enable AMC Report Itemization'),
1997 'bool', // data type
1998 '1', // default
1999 xl('Enable Itemization of AMC Reports')
2001 'dated_reminders_max_alerts_to_show' => array(
2002 xl('Dated reminders maximum alerts to show'),
2003 'num', // data type
2004 '5', // default
2005 xl('Dated reminders maximum alerts to show')
2009 // Logging
2011 'Logging' => array(
2013 'enable_auditlog' => array(
2014 xl('Enable Audit Logging'),
2015 'bool', // data type
2016 '1', // default
2017 xl('Enable Audit Logging')
2020 'audit_events_patient-record' => array(
2021 xl('Audit Logging Patient Record'),
2022 'bool', // data type
2023 '1', // default
2024 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2027 'audit_events_scheduling' => array(
2028 xl('Audit Logging Scheduling'),
2029 'bool', // data type
2030 '1', // default
2031 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2034 'audit_events_order' => array(
2035 xl('Audit Logging Order'),
2036 'bool', // data type
2037 '1', // default
2038 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2041 'audit_events_security-administration' => array(
2042 xl('Audit Logging Security Administration'),
2043 'bool', // data type
2044 '1', // default
2045 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2048 'audit_events_backup' => array(
2049 xl('Audit Logging Backups'),
2050 'bool', // data type
2051 '1', // default
2052 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2055 'audit_events_other' => array(
2056 xl('Audit Logging Miscellaneous'),
2057 'bool', // data type
2058 '1', // default
2059 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2062 'audit_events_query' => array(
2063 xl('Audit Logging SELECT Query'),
2064 'bool', // data type
2065 '0', // default
2066 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2069 'audit_events_cdr' => array(
2070 xl('Audit CDR Engine Queries'),
2071 'bool', // data type
2072 '0', // default
2073 xl('Enable logging of CDR Engine Queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2076 'enable_atna_audit' => array(
2077 xl('Enable ATNA Auditing'),
2078 'bool', // data type
2079 '0', // default
2080 xl('Enable Audit Trail and Node Authentication (ATNA).')
2083 'atna_audit_host' => array(
2084 xl('ATNA audit host'),
2085 'text', // data type
2086 '', // default
2087 xl('The hostname of the ATNA audit repository machine.')
2090 'atna_audit_port' => array(
2091 xl('ATNA audit port'),
2092 'text', // data type
2093 '6514', // default
2094 xl('Listening port of the RFC 5425 TLS syslog server.')
2097 'atna_audit_localcert' => array(
2098 xl('ATNA audit local certificate'),
2099 'text', // data type
2100 '', // default
2101 xl('Certificate to send to RFC 5425 TLS syslog server.')
2104 'atna_audit_cacert' => array(
2105 xl('ATNA audit CA certificate'),
2106 'text', // data type
2107 '', // default
2108 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2111 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
2112 'enable_auditlog_encryption' => array(
2113 xl('Enable Audit Log Encryption'),
2114 'bool', // data type
2115 '0', // default
2116 xl('Enable Audit Log Encryption')
2119 'billing_log_option' => array(
2120 xl('Billing Log Option'),
2121 array(
2122 '1' => xl('Billing Log Append'),
2123 '2' => xl('Billing Log Overwrite')
2125 '1', // default
2126 xl('Billing log setting to append or overwrite the log file.')
2129 'gbl_print_log_option' => array(
2130 xl('Printing Log Option'),
2131 array(
2132 '0' => xl('No logging'),
2133 '1' => xl('Hide print feature'),
2134 '2' => xl('Log entire document'),
2136 '0', // default
2137 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2142 // Miscellaneous Tab
2144 'Miscellaneous' => array(
2146 'mysql_bin_dir' => array(
2147 xl('Path to MySQL Binaries'),
2148 'text', // data type
2149 $mysql_bin_dir, // default
2150 xl('Full path to directory containing MySQL executables.')
2153 'perl_bin_dir' => array(
2154 xl('Path to Perl Binaries'),
2155 'text', // data type
2156 $perl_bin_dir, // default
2157 xl('Full path to directory containing Perl executables.')
2160 'temporary_files_dir' => array(
2161 xl('Path to Temporary Files'),
2162 'text', // data type
2163 $temporary_files_dir, // default
2164 xl('Full path to directory used for temporary files.')
2167 'backup_log_dir' => array(
2168 xl('Path for Event Log Backup'),
2169 'text', // data type
2170 $backup_log_dir, // default
2171 xl('Full path to directory for event log backup.')
2174 'state_data_type' => array(
2175 xl('State Data Type'),
2176 array(
2177 '2' => xl('Text field'),
2178 '1' => xl('Single-selection list'),
2179 '26' => xl('Single-selection list with ability to add to the list'),
2181 '26', // default
2182 xl('Field type to use for employer or subscriber state in demographics.')
2185 'state_list' => array(
2186 xl('State list'),
2187 'text', // data type
2188 'state', // default
2189 xl('List used by above State Data Type option.')
2192 'state_custom_addlist_widget' => array(
2193 xl('State List Widget Custom Fields'),
2194 'bool', // data type
2195 '1', // default
2196 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2199 'country_data_type' => array(
2200 xl('Country Data Type'),
2201 array(
2202 '2' => xl('Text field'),
2203 '1' => xl('Single-selection list'),
2204 '26' => xl('Single-selection list with ability to add to the list'),
2206 '26', // default
2207 xl('Field type to use for employer or subscriber country in demographics.')
2210 'country_list' => array(
2211 xl('Country list'),
2212 'text', // data type
2213 'country', // default
2214 xl('List used by above Country Data Type option.')
2217 'print_command' => array(
2218 xl('Print Command'),
2219 'text', // data type
2220 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2221 xl('Shell command for printing from the server.')
2224 'default_chief_complaint' => array(
2225 xl('Default Reason for Visit'),
2226 'text', // data type
2228 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2231 'default_new_encounter_form' => array(
2232 xl('Default Encounter Form ID'),
2233 'text', // data type
2235 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
2238 'MedicareReferrerIsRenderer' => array(
2239 xl('Medicare Referrer Is Renderer'),
2240 'bool', // data type
2241 '0', // default = true
2242 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2245 'post_to_date_benchmark' => array(
2246 xl('Financial Close Date (yyyy-mm-dd)'),
2247 'text', // data type
2248 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
2249 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2252 'enable_hylafax' => array(
2253 xl('Enable Hylafax Support'),
2254 'bool', // data type
2255 '0', // default
2256 xl('Enable Hylafax Support')
2259 'hylafax_server' => array(
2260 xl('Hylafax Server'),
2261 'text', // data type
2262 'localhost', // default
2263 xl('Hylafax server hostname.')
2266 'hylafax_basedir' => array(
2267 xl('Hylafax Directory'),
2268 'text', // data type
2269 '/var/spool/fax', // default
2270 xl('Location where Hylafax stores faxes.')
2273 'hylafax_enscript' => array(
2274 xl('Hylafax Enscript Command'),
2275 'text', // data type
2276 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2277 xl('Enscript command used by Hylafax.')
2280 'enable_scanner' => array(
2281 xl('Enable Scanner Support'),
2282 'bool', // data type
2283 '0', // default
2284 xl('Enable Scanner Support')
2287 'scanner_output_directory' => array(
2288 xl('Scanner Directory'),
2289 'text', // data type
2290 '/mnt/scan_docs', // default
2291 xl('Location where scans are stored.')
2295 // Portal Tab
2297 'Portal' => array(
2299 'portal_onsite_two_enable' => array(
2300 xl('Enable Version 2 Onsite Patient Portal'),
2301 'bool', // data type
2302 '0',
2303 xl('Enable Version 2 Onsite Patient Portal.')
2306 'portal_onsite_two_address' => array(
2307 xl('Version 2 Onsite Patient Portal Site Address'),
2308 'text', // data type
2309 'https://your_web_site.com/openemr/portal',
2310 xl('Website link for the Version 2 Onsite Patient Portal.')
2313 'portal_onsite_enable' => array(
2314 xl('Enable Version 1 Onsite Patient Portal'),
2315 'bool', // data type
2316 '0',
2317 xl('Enable Version 1 Onsite Patient Portal.')
2320 'portal_onsite_address' => array(
2321 xl('Version 1 Onsite Patient Portal Site Address'),
2322 'text', // data type
2323 'https://your_web_site.com/openemr/patients',
2324 xl('Website link for the Version 1 Onsite Patient Portal.')
2327 'portal_onsite_document_download' => array(
2328 xl('Enable Onsite Patient Portal Document Download'),
2329 'bool', // data type
2330 '1',
2331 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2334 'portal_offsite_enable' => array(
2335 xl('Enable Offsite Patient Portal'),
2336 'bool', // data type
2337 '0',
2338 xl('Enable Offsite Patient Portal.')
2341 'portal_offsite_providerid' => array(
2342 xl('Offsite Patient Portal Provider ID'),
2343 'text', // data type
2345 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2348 'portal_offsite_username' => array(
2349 xl('Offsite Patient Portal Username'),
2350 'text', // data type
2352 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2355 'portal_offsite_password' => array(
2356 xl('Offsite Patient Portal Password'),
2357 'pwd', // data type
2359 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2362 'portal_offsite_address' => array(
2363 xl('Offsite Patient Portal Site Address'),
2364 'text', // data type
2365 'https://ssh.mydocsportal.com/provider.php',
2366 xl('Offsite Https link for the Patient Portal.')
2369 'portal_offsite_address_patient_link' => array(
2370 xl('Offsite Patient Portal Site Address (Patient Link)'),
2371 'text', // data type
2372 'https://ssh.mydocsportal.com',
2373 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2376 // Currently the "CMS Portal" supports WordPress. Other Content Management
2377 // Systems may be supported in the future.
2379 'gbl_portal_cms_enable' => array(
2380 xl('Enable CMS Portal'),
2381 'bool', // data type
2382 '0',
2383 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2386 'gbl_portal_cms_address' => array(
2387 xl('CMS Portal Site Address'),
2388 'text', // data type
2389 'https://your_cms_site.com/',
2390 xl('URL for the WordPress site that supports the portal')
2393 'gbl_portal_cms_username' => array(
2394 xl('CMS Portal Username'),
2395 'text', // data type
2397 xl('Login name of WordPress user for portal access')
2400 'gbl_portal_cms_password' => array(
2401 xl('CMS Portal Password'),
2402 'text', // data type
2404 xl('Password for the above user')
2409 // Connectors Tab
2411 'Connectors' => array(
2413 'erx_enable' => array(
2414 xl('Enable NewCrop eRx Service'),
2415 'bool',
2416 '0',
2417 xl('Enable NewCrop eRx Service.') + ' ' +
2418 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.')
2421 'erx_newcrop_path' => array(
2422 xl('NewCrop eRx Site Address'),
2423 'text',
2424 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2425 xl('URL for NewCrop eRx Site Address.')
2428 'erx_newcrop_path_soap' => array(
2429 xl('NewCrop eRx Web Service Address'),
2430 'text',
2431 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2432 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2435 'erx_soap_ttl_allergies' => array(
2436 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2437 'num',
2438 '21600',
2439 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2442 'erx_soap_ttl_medications' => array(
2443 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2444 'num',
2445 '21600',
2446 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2449 'erx_account_partner_name' => array(
2450 xl('NewCrop eRx Partner Name'),
2451 'text',
2453 xl('Partner Name issued for NewCrop eRx service.')
2456 'erx_account_name' => array(
2457 xl('NewCrop eRx Name'),
2458 'text',
2460 xl('Account Name issued for NewCrop eRx service.')
2463 'erx_account_password' => array(
2464 xl('NewCrop eRx Password'),
2465 'pass',
2467 xl('Account Password issued for NewCrop eRx service.')
2470 'erx_account_id' => array(
2471 xl('NewCrop eRx Account Id'),
2472 'text',
2473 '1',
2474 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2477 'erx_upload_active' => array(
2478 xl('Only upload active prescriptions'),
2479 'bool',
2480 '0',
2481 xl('Only upload active prescriptions to NewCrop eRx.')
2484 'erx_import_status_message' => array(
2485 xl('Enable NewCrop eRx import status message'),
2486 'bool',
2487 '0',
2488 xl('Enable import status message after visiting NewCrop eRx.')
2491 'erx_medication_display' => array(
2492 xl('Do not display NewCrop eRx Medications uploaded'),
2493 'bool',
2494 '0',
2495 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2498 'erx_allergy_display' => array(
2499 xl('Do not display NewCrop eRx Allergy uploaded'),
2500 'bool',
2501 '0',
2502 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2505 'erx_default_patient_country' => array(
2506 xl('NewCrop eRx Default Patient Country'),
2507 array(
2508 '' => '',
2509 'US' => xl('USA'),
2510 'CA' => xl('Canada'),
2511 'MX' => xl('Mexico'),
2514 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2517 'erx_debug_setting' => array(
2518 xl('NewCrop eRx Debug Setting'),
2519 array(
2520 0 => xl('None'),
2521 1 => xl('Request Only'),
2522 2 => xl('Response Only'),
2523 3 => xl('Request & Response'),
2525 '0',
2526 xl('Log all NewCrop eRx Requests and / or Responses.'),
2529 'phimail_enable' => array(
2530 xl('Enable phiMail Direct Messaging Service'),
2531 'bool', // data type
2532 '0',
2533 xl('Enable phiMail Direct Messaging Service')
2536 'phimail_server_address' => array(
2537 xl('phiMail Server Address'),
2538 'text', // data type
2539 'https://phimail.example.com:32541',
2540 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2543 'phimail_username' => array(
2544 xl('phiMail Username'),
2545 'text', // data type
2547 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2550 'phimail_password' => array(
2551 xl('phiMail Password'),
2552 'pass', // data type
2554 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2557 'phimail_notify' => array(
2558 xl('phiMail notification user'),
2559 'text', // data type
2560 'admin',
2561 xl('This user will receive notification of new incoming Direct messages')
2564 'phimail_interval' => array(
2565 xl('phiMail Message Check Interval (minutes)'),
2566 'num', // data type
2567 '5',
2568 xl('Interval between message checks (set to zero for manual checks only)')
2571 'phimail_ccd_enable' => array(
2572 xl('phiMail Allow CCD Send'),
2573 'bool', // data type
2574 '0',
2575 xl('phiMail Allow CCD Send')
2578 'phimail_ccr_enable' => array(
2579 xl('phiMail Allow CCR Send'),
2580 'bool', // data type
2581 '0',
2582 xl('phiMail Allow CCR Send')
2586 'Rx' => array(
2587 'rx_enable_DEA' => array(
2588 xl('Rx Enable DEA #'),
2589 'bool', // data type
2590 '1',
2591 xl('Rx Enable DEA #')
2593 'rx_show_DEA' => array(
2594 xl('Rx Show DEA #'),
2595 'bool', // data type
2596 '0',
2597 xl('Rx Show DEA #')
2599 'rx_enable_NPI' => array(
2600 xl('Rx Enable NPI'),
2601 'bool', // data type
2602 '0',
2603 xl('Rx Enable NPI')
2605 'rx_show_NPI' => array(
2606 xl('Rx Show NPI'),
2607 'bool', // data type
2608 '0',
2609 xl('Rx Show NPI')
2611 'rx_enable_SLN' => array(
2612 xl('Rx Enable State Lic. #'),
2613 'bool', // data type
2614 '0',
2615 xl('Rx Enable State Lic. #')
2617 'rx_show_SLN' => array(
2618 xl('Rx Show State Lic. #'),
2619 'bool', // data type
2620 '0',
2621 xl('Rx Show State Lic. #')
2623 'rx_show_drug-drug' => array(
2624 xl('Rx NLM Drug-Drug'),
2625 'bool', // data type
2626 '0',
2627 xl('Rx NLM Drug-Drug')
2629 'rx_paper_size' => array(
2630 xl('Rx Paper Size'), // descriptive name
2631 array(
2632 'LETTER' => xl('Letter Paper Size'),
2633 'LEGAL' => xl('Legal Paper Size'),
2634 'FOLIO' => xl('Folio Paper Size'),
2635 'EXECUTIVE' => xl('Executive Paper Size'),
2636 '4A0' => ('4A0' . " " . xl('Paper Size')),
2637 '2A0' => ('2A0' . " " . xl('Paper Size')),
2638 'A0' => ('A0' . " " . xl('Paper Size')),
2639 'A1' => ('A1' . " " . xl('Paper Size')),
2640 'A2' => ('A2' . " " . xl('Paper Size')),
2641 'A3' => ('A3' . " " . xl('Paper Size')),
2642 'A4' => ('A4' . " " . xl('Paper Size')),
2643 'A5' => ('A5' . " " . xl('Paper Size')),
2644 'A6' => ('A6' . " " . xl('Paper Size')),
2645 'A7' => ('A7' . " " . xl('Paper Size')),
2646 'A8' => ('A8' . " " . xl('Paper Size')),
2647 'A9' => ('A9' . " " . xl('Paper Size')),
2648 'A10' => ('A10' . " " . xl('Paper Size')),
2649 'B0' => ('B0' . " " . xl('Paper Size')),
2650 'B1' => ('B1' . " " . xl('Paper Size')),
2651 'B2' => ('B2' . " " . xl('Paper Size')),
2652 'B3' => ('B3' . " " . xl('Paper Size')),
2653 'B4' => ('B4' . " " . xl('Paper Size')),
2654 'B5' => ('B5' . " " . xl('Paper Size')),
2655 'B6' => ('B6' . " " . xl('Paper Size')),
2656 'B7' => ('B7' . " " . xl('Paper Size')),
2657 'B8' => ('B8' . " " . xl('Paper Size')),
2658 'B9' => ('B9' . " " . xl('Paper Size')),
2659 'B10' => ('B10' . " " . xl('Paper Size')),
2660 'C0' => ('C0' . " " . xl('Paper Size')),
2661 'C1' => ('C1' . " " . xl('Paper Size')),
2662 'C2' => ('C2' . " " . xl('Paper Size')),
2663 'C3' => ('C3' . " " . xl('Paper Size')),
2664 'C4' => ('C4' . " " . xl('Paper Size')),
2665 'C5' => ('C5' . " " . xl('Paper Size')),
2666 'C6' => ('C6' . " " . xl('Paper Size')),
2667 'C7' => ('C7' . " " . xl('Paper Size')),
2668 'C8' => ('C8' . " " . xl('Paper Size')),
2669 'C9' => ('C9' . " " . xl('Paper Size')),
2670 'C10' => ('C10' . " " . xl('Paper Size')),
2671 'RA0' => ('RA0' . " " . xl('Paper Size')),
2672 'RA1' => ('RA1' . " " . xl('Paper Size')),
2673 'RA2' => ('RA2' . " " . xl('Paper Size')),
2674 'RA3' => ('RA3' . " " . xl('Paper Size')),
2675 'RA4' => ('RA4' . " " . xl('Paper Size')),
2676 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2677 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2678 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2679 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2680 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2682 'LETTER', // default = tree menu
2683 xl('Rx Paper Size')
2685 'rx_left_margin' => array(
2686 xl('Rx Left Margin (px)'),
2687 'num',
2688 '30',
2689 xl('Rx Left Margin (px)')
2691 'rx_right_margin' => array(
2692 xl('Rx Right Margin (px)'),
2693 'num',
2694 '30',
2695 xl('Rx Right Margin (px)')
2697 'rx_top_margin' => array(
2698 xl('Rx Top Margin (px)'),
2699 'num',
2700 '72',
2701 xl('Rx Top Margin (px)')
2703 'rx_bottom_margin' => array(
2704 xl('Rx Bottom Margin (px)'),
2705 'num',
2706 '30',
2707 xl('Rx Bottom Margin (px)')
2711 'PDF' => array (
2712 'pdf_layout' => array (
2713 xl('Layout'),
2714 array(
2715 'P' => xl('Portrait'),
2716 'L' => xl('Landscape')
2718 'P', //defaut
2719 xl("Choose Layout Direction"),
2721 'pdf_language' => array (
2722 xl('PDF Language'),
2723 array(
2724 'aa' => xl('Afar'),
2725 'af' => xl('Afrikaans'),
2726 'ak' => xl('Akan'),
2727 'sq' => xl('Albanian'),
2728 'am' => xl('Amharic'),
2729 'ar' => xl('Arabic'),
2730 'an' => xl('Aragonese'),
2731 'hy' => xl('Armenian'),
2732 'as' => xl('Assamese'),
2733 'av' => xl('Avaric'),
2734 'ae' => xl('Avestan'),
2735 'ay' => xl('Aymara'),
2736 'az' => xl('Azerbaijani'),
2737 'bm' => xl('Bambara'),
2738 'ba' => xl('Bashkir'),
2739 'eu' => xl('Basque'),
2740 'be' => xl('Belarusian'),
2741 'bn' => xl('Bengali- Bangla'),
2742 'bh' => xl('Bihari'),
2743 'bi' => xl('Bislama'),
2744 'bs' => xl('Bosnian'),
2745 'br' => xl('Breton'),
2746 'bg' => xl('Bulgarian'),
2747 'my' => xl('Burmese'),
2748 'ca' => xl('Catalan- Valencian'),
2749 'ch' => xl('Chamorro'),
2750 'ce' => xl('Chechen'),
2751 'ny' => xl('Chichewa- Chewa- Nyanja'),
2752 'zh' => xl('Chinese'),
2753 'cv' => xl('Chuvash'),
2754 'kw' => xl('Cornish'),
2755 'co' => xl('Corsican'),
2756 'cr' => xl('Cree'),
2757 'hr' => xl('Croatian'),
2758 'cs' => xl('Czech'),
2759 'da' => xl('Danish'),
2760 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2761 'nl' => xl('Dutch'),
2762 'dz' => xl('Dzongkha'),
2763 'en' => xl('English'),
2764 'eo' => xl('Esperanto'),
2765 'et' => xl('Estonian'),
2766 'ee' => xl('Ewe'),
2767 'fo' => xl('Faroese'),
2768 'fj' => xl('Fijian'),
2769 'fi' => xl('Finnish'),
2770 'fr' => xl('French'),
2771 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2772 'gl' => xl('Galician'),
2773 'ka' => xl('Georgian'),
2774 'de' => xl('German'),
2775 'el' => xl('Greek, Modern'),
2776 'gn' => xl('Guarani'),
2777 'gu' => xl('Gujarati'),
2778 'ht' => xl('Haitian- Haitian Creole'),
2779 'ha' => xl('Hausa'),
2780 'he' => xl('Hebrew (modern)'),
2781 'hz' => xl('Herero'),
2782 'hi' => xl('Hindi'),
2783 'ho' => xl('Hiri Motu'),
2784 'hu' => xl('Hungarian'),
2785 'ia' => xl('Interlingua'),
2786 'id' => xl('Indonesian'),
2787 'ie' => xl('Interlingue'),
2788 'ga' => xl('Irish'),
2789 'ig' => xl('Igbo'),
2790 'ik' => xl('Inupiaq'),
2791 'io' => xl('Ido'),
2792 'is' => xl('Icelandic'),
2793 'it' => xl('Italian'),
2794 'iu' => xl('Inuktitut'),
2795 'ja' => xl('Japanese'),
2796 'jv' => xl('Javanese'),
2797 'kl' => xl('Kalaallisut, Greenlandic'),
2798 'kn' => xl('Kannada'),
2799 'kr' => xl('Kanuri'),
2800 'ks' => xl('Kashmiri'),
2801 'kk' => xl('Kazakh'),
2802 'km' => xl('Khmer'),
2803 'ki' => xl('Kikuyu, Gikuyu'),
2804 'rw' => xl('Kinyarwanda'),
2805 'ky' => xl('Kyrgyz'),
2806 'kv' => xl('Komi'),
2807 'kg' => xl('Kongo'),
2808 'ko' => xl('Korean'),
2809 'ku' => xl('Kurdish'),
2810 'kj' => xl('Kwanyama, Kuanyama'),
2811 'la' => xl('Latin'),
2812 'lb' => xl('Luxembourgish, Letzeburgesch'),
2813 'lg' => xl('Ganda'),
2814 'li' => xl('Limburgish, Limburgan, Limburger'),
2815 'ln' => xl('Lingala'),
2816 'lo' => xl('Lao'),
2817 'lt' => xl('Lithuanian'),
2818 'lu' => xl('Luba-Katanga'),
2819 'lv' => xl('Latvian'),
2820 'gv' => xl('Manx'),
2821 'mk' => xl('Macedonian'),
2822 'mg' => xl('Malagasy'),
2823 'ms' => xl('Malay'),
2824 'ml' => xl('Malayalam'),
2825 'mt' => xl('Maltese'),
2826 'mi' => xl('Maori'),
2827 'mr' => xl('Marathi (Marathi)'),
2828 'mh' => xl('Marshallese'),
2829 'mn' => xl('Mongolian'),
2830 'na' => xl('Nauru'),
2831 'nv' => xl('Navajo, Navaho'),
2832 'nb' => xl('Norwegian Bokmal'),
2833 'nd' => xl('North Ndebele'),
2834 'ne' => xl('Nepali'),
2835 'ng' => xl('Ndonga'),
2836 'nn' => xl('Norwegian Nynorsk'),
2837 'no' => xl('Norwegian'),
2838 'ii' => xl('Nuosu'),
2839 'nr' => xl('South Ndebele'),
2840 'oc' => xl('Occitan'),
2841 'oj' => xl('Ojibwe, Ojibwa'),
2842 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2843 'om' => xl('Oromo'),
2844 'or' => xl('Oriya'),
2845 'os' => xl('Ossetian, Ossetic'),
2846 'pa' => xl('Panjabi, Punjabi'),
2847 'pi' => xl('Pali'),
2848 'fa' => xl('Persian (Farsi)'),
2849 'pl' => xl('Polish'),
2850 'ps' => xl('Pashto, Pushto'),
2851 'pt' => xl('Portuguese'),
2852 'qu' => xl('Quechua'),
2853 'rm' => xl('Romansh'),
2854 'rn' => xl('Kirundi'),
2855 'ro' => xl('Romanian'),
2856 'ru' => xl('Russian'),
2857 'sa' => xl('Sanskrit (Samskrta)'),
2858 'sc' => xl('Sardinian'),
2859 'sd' => xl('Sindhi'),
2860 'se' => xl('Northern Sami'),
2861 'sm' => xl('Samoan'),
2862 'sg' => xl('Sango'),
2863 'sr' => xl('Serbian'),
2864 'gd' => xl('Scottish Gaelic- Gaelic'),
2865 'sn' => xl('Shona'),
2866 'si' => xl('Sinhala, Sinhalese'),
2867 'sk' => xl('Slovak'),
2868 'sl' => xl('Slovene'),
2869 'so' => xl('Somali'),
2870 'st' => xl('Southern Sotho'),
2871 'es' => xl('Spanish- Castilian'),
2872 'su' => xl('Sundanese'),
2873 'sw' => xl('Swahili'),
2874 'ss' => xl('Swati'),
2875 'sv' => xl('Swedish'),
2876 'ta' => xl('Tamil'),
2877 'te' => xl('Telugu'),
2878 'tg' => xl('Tajik'),
2879 'th' => xl('Thai'),
2880 'ti' => xl('Tigrinya'),
2881 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2882 'tk' => xl('Turkmen'),
2883 'tl' => xl('Tagalog'),
2884 'tn' => xl('Tswana'),
2885 'to' => xl('Tonga (Tonga Islands)'),
2886 'tr' => xl('Turkish'),
2887 'ts' => xl('Tsonga'),
2888 'tt' => xl('Tatar'),
2889 'tw' => xl('Twi'),
2890 'ty' => xl('Tahitian'),
2891 'ug' => xl('Uyghur, Uighur'),
2892 'uk' => xl('Ukrainian'),
2893 'ur' => xl('Urdu'),
2894 'uz' => xl('Uzbek'),
2895 've' => xl('Venda'),
2896 'vi' => xl('Vietnamese'),
2897 'vo' => xl('Volapuk'),
2898 'wa' => xl('Walloon'),
2899 'cy' => xl('Welsh'),
2900 'wo' => xl('Wolof'),
2901 'fy' => xl('Western Frisian'),
2902 'xh' => xl('Xhosa'),
2903 'yi' => xl('Yiddish'),
2904 'yo' => xl('Yoruba'),
2905 'za' => xl('Zhuang, Chuang'),
2906 'zu' => xl('Zulu'),
2908 'en', // default English
2909 xl('Choose PDF languange Preference'),
2911 'pdf_size' => array(
2912 xl('Paper Size'), // Descriptive Name
2913 array(
2914 'LETTER' => xl('Letter Paper Size'),
2915 'LEGAL' => xl('Legal Paper Size'),
2916 'FOLIO' => xl('Folio Paper Size'),
2917 'EXECUTIVE' => xl('Executive Paper Size'),
2918 '4A0' => ('4A0' . " " . xl('Paper Size')),
2919 '2A0' => ('2A0' . " " . xl('Paper Size')),
2920 'A0' => ('A0' . " " . xl('Paper Size')),
2921 'A1' => ('A1' . " " . xl('Paper Size')),
2922 'A2' => ('A2' . " " . xl('Paper Size')),
2923 'A3' => ('A3' . " " . xl('Paper Size')),
2924 'A4' => ('A4' . " " . xl('Paper Size')),
2925 'A5' => ('A5' . " " . xl('Paper Size')),
2926 'A6' => ('A6' . " " . xl('Paper Size')),
2927 'A7' => ('A7' . " " . xl('Paper Size')),
2928 'A8' => ('A8' . " " . xl('Paper Size')),
2929 'A9' => ('A9' . " " . xl('Paper Size')),
2930 'A10' => ('A10' . " " . xl('Paper Size')),
2931 'B0' => ('B0' . " " . xl('Paper Size')),
2932 'B1' => ('B1' . " " . xl('Paper Size')),
2933 'B2' => ('B2' . " " . xl('Paper Size')),
2934 'B3' => ('B3' . " " . xl('Paper Size')),
2935 'B4' => ('B4' . " " . xl('Paper Size')),
2936 'B5' => ('B5' . " " . xl('Paper Size')),
2937 'B6' => ('B6' . " " . xl('Paper Size')),
2938 'B7' => ('B7' . " " . xl('Paper Size')),
2939 'B8' => ('B8' . " " . xl('Paper Size')),
2940 'B9' => ('B9' . " " . xl('Paper Size')),
2941 'B10' => ('B10' . " " . xl('Paper Size')),
2942 'C0' => ('C0' . " " . xl('Paper Size')),
2943 'C1' => ('C1' . " " . xl('Paper Size')),
2944 'C2' => ('C2' . " " . xl('Paper Size')),
2945 'C3' => ('C3' . " " . xl('Paper Size')),
2946 'C4' => ('C4' . " " . xl('Paper Size')),
2947 'C5' => ('C5' . " " . xl('Paper Size')),
2948 'C6' => ('C6' . " " . xl('Paper Size')),
2949 'C7' => ('C7' . " " . xl('Paper Size')),
2950 'C8' => ('C8' . " " . xl('Paper Size')),
2951 'C9' => ('C9' . " " . xl('Paper Size')),
2952 'C10' => ('C10' . " " . xl('Paper Size')),
2953 'RA0' => ('RA0' . " " . xl('Paper Size')),
2954 'RA1' => ('RA1' . " " . xl('Paper Size')),
2955 'RA2' => ('RA2' . " " . xl('Paper Size')),
2956 'RA3' => ('RA3' . " " . xl('Paper Size')),
2957 'RA4' => ('RA4' . " " . xl('Paper Size')),
2958 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2959 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2960 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2961 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2962 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2964 'LETTER',
2965 xl('Choose Paper Size')
2967 'pdf_left_margin' => array(
2968 xl('Left Margin (mm)'),
2969 'num',
2970 '5',
2971 xl('Left Margin (mm)')
2973 'pdf_right_margin' => array(
2974 xl('Right Margin (mm)'),
2975 'num',
2976 '5',
2977 xl('Right Margin (mm)')
2979 'pdf_top_margin' => array(
2980 xl('Top Margin (mm)'),
2981 'num',
2982 '5',
2983 xl('Top Margin (mm)')
2985 'pdf_bottom_margin' => array(
2986 xl('Bottom Margin (px)'),
2987 'num',
2988 '8',
2989 xl('Bottom Margin (px)')
2991 'pdf_output' => array (
2992 xl('Output Type'),
2993 array(
2994 'D' => xl('Download'),
2995 'I' => xl('Inline')
2997 'D', //defaut
2998 xl("Choose Download or Display Inline"),
3001 'chart_label_type' => array(
3002 xl('Patient Label Type'),
3003 array(
3004 '0' => xl('None'),
3005 '1' => '5160',
3006 '2' => '5161',
3007 '3' => '5162'
3009 '1', // default
3010 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3013 'barcode_label_type' => array(
3014 xl('Barcode Label Type'),
3015 array(
3016 '0' => xl('None'),
3017 '1' => 'std25',
3018 '2' => 'int25',
3019 '3' => 'ean8',
3020 '4' => 'ean13',
3021 '5' => 'upc',
3022 '6' => 'code11',
3023 '7' => 'code39',
3024 '8' => 'code93',
3025 '9' => 'code128',
3026 '10' => 'codabar',
3027 '11' => 'msi',
3028 '12' => 'datamatrix'
3030 '9', // default = None
3031 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3034 'addr_label_type' => array(
3035 xl('Print Patient Address Label'),
3036 'bool', // data type
3037 '1', // default = false
3038 xl('Select to print patient address labels from popups in left nav screen.')