add multi database option along with related zend configuration module (#439)
[openemr.git] / library / globals.inc.php
blob20547be6666bd3c8e9b1dcec96f50a38937a7374
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 'full_new_patient_form' => array(
198 xl('New Patient Form'),
200 array(
201 '0' => xl('Old-style static form without search or duplication check'),
202 '1' => xl('All demographics fields, with search and duplication check'),
203 '2' => xl('Mandatory or specified fields only, search and dup check'),
204 '3' => xl('Mandatory or specified fields only, dup check, no search'),
205 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
207 '1', // default
208 xl('Style of form used for adding new patients')
211 'gbl_edit_patient_form' => array(
212 xl('Modify Patient Form'),
214 array(
215 '0' => xl('Standard check'),
216 '1' => xl('Zend Module check in addition to standard check')
218 '0', // default
219 xl('Validation mechanism for when modifying patient demographics.')
222 'patient_search_results_style' => array(
223 xl('Patient Search Results Style'),
224 array(
225 '0' => xl('Encounter statistics'),
226 '1' => xl('Mandatory and specified fields'),
228 '0', // default
229 xl('Type of columns displayed for patient search results')
232 'gbl_tall_nav_area' => array(
233 xl('Tall Navigation Area'),
234 'bool', // data type
235 '0', // default = false
236 xl('Navigation area uses full height of frameset')
239 'gbl_nav_visit_forms' => array(
240 xl('Navigation Area Visit Forms'),
241 'bool', // data type
242 '1', // default = true
243 xl('Navigation area includes encounter forms')
246 'simplified_demographics' => array(
247 xl('Simplified Demographics'),
248 'bool', // data type
249 '0', // default = false
250 xl('Omit insurance and some other things from the demographics form')
253 'simplified_prescriptions' => array(
254 xl('Simplified Prescriptions'),
255 'bool', // data type
256 '0', // default = false
257 xl('Omit form, route and interval which then become part of dosage')
260 'simplified_copay' => array(
261 xl('Simplified Co-Pay'),
262 'bool', // data type
263 '0', // default = false
264 xl('Omit method of payment from the co-pay panel')
267 'use_charges_panel' => array(
268 xl('Use Charges Panel'),
269 'bool', // data type
270 '0', // default = false
271 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
274 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
275 'enable_fees_in_left_menu' => array(
276 xl('Enable Fees Submenu'),
277 'bool', // data type
278 '1', // default = true
279 xl('Enable Fees Submenu')
281 'enable_batch_payment' => array(
282 xl('Enable Batch Payment'),
283 'bool', // data type
284 '1', // default = true
285 xl('Enable Batch Payment')
287 'enable_posting' => array(
288 xl('Enable Posting'),
289 'bool', // data type
290 '1', // default = true
291 xl('Enable Posting')
293 // EDI history 2012-09-13
294 'enable_edihistory_in_left_menu' => array(
295 xl('Enable EDI History'),
296 'bool', // data type
297 '1', // default = true
298 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
301 'online_support_link' => array(
302 xl('Online Support Link'),
303 'text', // data type
304 'http://open-emr.org/',
305 xl('URL for OpenEMR support.')
308 'support_phone_number' => array(
309 xl('Support Phone Number'),
310 'text',
312 xl('Phone Number for Vendor Support that Appears on the About Page.')
315 'encounter_page_size' => array(
316 xl('Encounter Page Size'),
317 array(
318 '0' => xl('Show All'),
319 '5' => '5',
320 '10' => '10',
321 '15' => '15',
322 '20' => '20',
323 '25' => '25',
324 '50' => '50',
326 '20',
327 xl('Number of encounters to display per page.')
330 'gbl_pt_list_page_size' => array(
331 xl('Patient List Page Size'),
332 array(
333 '10' => '10',
334 '25' => '25',
335 '50' => '50',
336 '100' => '100',
338 '10',
339 xl('Number of patients to display per page in the patient list.')
342 'gbl_pt_list_new_window' => array(
343 xl('Patient List New Window'),
344 'bool', // data type
345 '0', // default = false
346 xl('Default state of New Window checkbox in the patient list.')
349 'gbl_vitals_options' => array(
350 xl('Vitals Form Options'),
351 array(
352 '0' => xl('Standard'),
353 '1' => xl('Omit circumferences'),
355 '0', // default
356 xl('Special treatment for the Vitals form')
359 'insurance_information' => array(
360 xl('Show Additional Insurance Information'), // descriptive name
361 array(
362 '0' => xl('None'),
363 '1' => xl('Address Only'),
364 '2' => xl('Address and Postal Code'),
365 '3' => xl('Address and State'),
366 '4' => xl('Address, State and Postal Code'),
367 '5' => xl('Postal Code and Box Number'),
369 '4', // default
370 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
373 'gb_how_sort_list' => array(
374 xl('How to sort a drop-lists'),
375 array(
376 '0' => 'Sort by seq',
377 '1' => 'Sort alphabetically'
379 '0',
380 xl('What kind of sorting will be in the drop lists.')
383 'show_label_login' => array(
384 xl('Show Title on Login'),
385 'bool', // data type
386 '0', // default = false
387 xl('Show Title on Login')
390 'extra_logo_login' => array(
391 xl('Show Extra Logo on Login'),
392 'bool', // data type
393 '0', // default = false
394 xl('Show Extra Logo on Login')
397 'tiny_logo_1' => array(
398 xl('Show Mini Logo 1'),
399 'bool', // data type
400 '0', // default = false
401 xl('Show Mini Logo 1')
404 'tiny_logo_2' => array(
405 xl('Show Mini Logo 2'),
406 'bool', // data type
407 '0', // default = false
408 xl('Show Mini Logo 2')
413 // Locale Tab
415 'Locale' => array(
417 'language_default' => array(
418 xl('Default Language'),
419 'lang', // data type
420 'English (Standard)', // default = english
421 xl('Default language if no other is allowed or chosen.')
424 'language_menu_showall' => array(
425 xl('All Languages Allowed'),
426 'bool', // data type
427 '1', // default = true
428 xl('Allow all available languages as choices on menu at login.')
431 'language_menu_other' => array(
432 xl('Allowed Languages'),
433 'm_lang', // data type
434 '', // default = none
435 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
438 'allow_debug_language' => array(
439 xl('Allow Debugging Language'),
440 'bool', // data type
441 '1', // default = true during development and false for production releases
442 xl('This will allow selection of the debugging (\'dummy\') language.')
445 'translate_layout' => array(
446 xl('Translate Layouts'),
447 'bool', // data type
448 '1', // default = true
449 xl('Is text from form layouts to be translated?')
452 'translate_lists' => array(
453 xl('Translate Lists'),
454 'bool', // data type
455 '1', // default = true
456 xl('Is text from lists to be translated?')
459 'translate_gacl_groups' => array(
460 xl('Translate Access Control Groups'),
461 'bool', // data type
462 '1', // default = true
463 xl('Are access control group names to be translated?')
466 'translate_form_titles' => array(
467 xl('Translate Patient Note Titles'),
468 'bool', // data type
469 '1', // default = true
470 xl('Are patient note titles to be translated?')
473 'translate_document_categories' => array(
474 xl('Translate Document Categories'),
475 'bool', // data type
476 '1', // default = true
477 xl('Are document category names to be translated?')
480 'translate_appt_categories' => array(
481 xl('Translate Appointment Categories'),
482 'bool', // data type
483 '1', // default = true
484 xl('Are appointment category names to be translated?')
487 'units_of_measurement' => array(
488 xl('Units for Visit Forms'),
489 array(
490 '1' => xl('Show both US and metric (main unit is US)'),
491 '2' => xl('Show both US and metric (main unit is metric)'),
492 '3' => xl('Show US only'),
493 '4' => xl('Show metric only'),
495 '1', // default = Both/US
496 xl('Applies to the Vitals form and Growth Chart')
499 'us_weight_format' => array(
500 xl('Display Format for US Weights'),
501 array(
502 '1'=>xl('Show pounds as decimal value'),
503 '2'=>xl('Show pounds and ounces')
505 '1',
506 xl('Applies to Vitals form')
509 'disable_deprecated_metrics_form' => array(
510 xl('Disable Old Metric Vitals Form'),
511 'bool', // data type
512 '1', // default = true
513 xl('This was the older metric-only Vitals form, now deprecated.')
516 'phone_country_code' => array(
517 xl('Telephone Country Code'),
518 'num',
519 '1', // default = North America
520 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
523 'date_display_format' => array(
524 xl('Date Display Format'),
525 array(
526 '0' => xl('YYYY-MM-DD'),
527 '1' => xl('MM/DD/YYYY'),
528 '2' => xl('DD/MM/YYYY'),
530 '0',
531 xl('Format used to display most dates.')
534 'time_display_format' => array(
535 xl('Time Display Format'),
536 array(
537 '0' => xl('24 hr'),
538 '1' => xl('12 hr'),
540 '0',
541 xl('Format used to display most times.')
544 'currency_decimals' => array(
545 xl('Currency Decimal Places'),
546 array(
547 '0' => xl('0'),
548 '1' => xl('1'),
549 '2' => xl('2'),
551 '2',
552 xl('Number of digits after decimal point for currency, usually 0 or 2.')
555 'currency_dec_point' => array(
556 xl('Currency Decimal Point Symbol'),
557 array(
558 '.' => xl('Period'),
559 ',' => xl('Comma'),
561 '.',
562 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
565 'currency_thousands_sep' => array(
566 xl('Currency Thousands Separator'),
567 array(
568 ',' => xl('Comma'),
569 '.' => xl('Period'),
570 ' ' => xl('Space'),
571 '' => xl('None'),
573 ',',
574 xl('Symbol used to separate thousands for currency.')
577 'gbl_currency_symbol' => array(
578 xl('Currency Designator'),
579 'text', // data type
580 '$', // default
581 xl('Code or symbol to indicate currency')
583 'age_display_format'=>array(xl('Age Display Format'),
584 array(
585 '0'=>xl('Years or months'),
586 '1'=>xl('Years, months and days')
588 '0',
589 xl('Format for age display')
591 'age_display_limit' => array(
592 xl('Age in Years for Display Format Change'),
593 'num',
594 '3',
595 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
597 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
598 'weekend_days' => array(
599 xl('Your weekend days'),
600 array(
601 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
602 '0' => xl('Sunday'),
603 '5' => xl('Friday'),
604 '6' => xl('Saturday'),
605 '5,6' => xl('Friday') .' - ' . xl('Saturday'),
607 '6,0'
608 ,xl('which days are your weekend days?')
613 // Features Tab
615 'Features' => array(
617 'specific_application' => array(
618 xl('Specific Application'),
619 array(
620 '0' => xl('None'),
621 '2' => xl('IPPF'),
622 '3' => xl('Weight loss clinic'),
624 '0', // default
625 xl('Indicator for specialized usage')
628 'inhouse_pharmacy' => array(
629 xl('Drugs and Products'),
630 array(
631 '0' => xl('Do not inventory and sell any products'),
632 '1' => xl('Inventory and sell drugs only'),
633 '2' => xl('Inventory and sell both drugs and non-drug products'),
634 '3' => xl('Products but no prescription drugs and no templates'),
636 '0', // default
637 xl('Option to support inventory and sales of products')
640 'disable_chart_tracker' => array(
641 xl('Disable Chart Tracker'),
642 'bool', // data type
643 '0', // default = false
644 xl('Removes the Chart Tracker feature')
647 'disable_phpmyadmin_link' => array(
648 xl('Disable phpMyAdmin'),
649 'bool', // data type
650 '0', // default = false
651 xl('Removes support for phpMyAdmin')
654 'disable_immunizations' => array(
655 xl('Disable Immunizations'),
656 'bool', // data type
657 '0', // default = false
658 xl('Removes support for immunizations')
661 'disable_prescriptions' => array(
662 xl('Disable Prescriptions'),
663 'bool', // data type
664 '0', // default = false
665 xl('Removes support for prescriptions')
668 'omit_employers' => array(
669 xl('Omit Employers'),
670 'bool', // data type
671 '0', // default = false
672 xl('Omit employer information in patient demographics')
675 'select_multi_providers' => array(
676 xl('Support Multi-Provider Events'),
677 'bool', // data type
678 '0', // default = false
679 xl('Support calendar events that apply to multiple providers')
682 'disable_non_default_groups' => array(
683 xl('Disable User Groups'),
684 'bool', // data type
685 '1', // default = true
686 xl('Normally this should be checked. Not related to access control.')
689 'ignore_pnotes_authorization' => array(
690 xl('Skip Authorization of Patient Notes'),
691 'bool', // data type
692 '1', // default = true
693 xl('Do not require patient notes to be authorized')
696 'support_encounter_claims' => array(
697 xl('Allow Encounter Claims'),
698 'bool', // data type
699 '0', // default = false
700 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
703 'advance_directives_warning' => array(
704 xl('Advance Directives Warning'),
705 'bool', // data type
706 '0', // default = false
707 xl('Display advance directives in the demographics page.')
710 'configuration_import_export' => array(
711 xl('Configuration Export/Import'),
712 'bool', // data type
713 '0', // default = false
714 xl('Support export/import of configuration data via the Backup page.')
717 'restrict_user_facility' => array(
718 xl('Restrict Users to Facilities'),
719 'bool', // data type
720 '0', // default
721 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
724 'set_facility_cookie' => array(
725 xl('Remember Selected Facility'),
726 'bool', // data type
727 '0', // default
728 xl('Set a facility cookie to remember the selected facility between logins.')
731 'receipts_by_provider' => array(
732 xl('Print Receipts by Provider'),
733 'bool',
734 '0', // default
735 xl('Causes Receipts to Print Encounter/Primary Provider Info')
738 'discount_by_money' => array(
739 xl('Discounts as Monetary Amounts'),
740 'bool', // data type
741 '1', // default = true
742 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
745 'gbl_visit_referral_source' => array(
746 xl('Referral Source for Encounters'),
747 'bool', // data type
748 '0', // default = false
749 xl('A referral source may be specified for each visit.')
752 'gbl_mask_patient_id' => array(
753 xl('Mask for Patient IDs'),
754 'text', // data type
755 '', // default
756 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
759 'gbl_mask_invoice_number' => array(
760 xl('Mask for Invoice Numbers'),
761 'text', // data type
762 '', // default
763 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
766 'gbl_mask_product_id' => array(
767 xl('Mask for Product IDs'),
768 'text', // data type
769 '', // default
770 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
773 'hide_billing_widget' => array(
774 xl('Hide Billing Widget'),
775 'bool', // data type
776 '0', // default = false
777 xl('This will hide the Billing Widget in the Patient Summary screen')
780 'force_billing_widget_open' => array(
781 xl('Force Billing Widget Open'),
782 'bool', // data type
783 '0', // default = false
784 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
787 'activate_ccr_ccd_report' => array(
788 xl('Activate CCR/CCD Reporting'),
789 'bool', // data type
790 '1', // default = true
791 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
794 'hide_document_encryption' => array(
795 xl('Hide Encryption/Decryption Options In Document Management'),
796 'bool', // data type
797 '1', // default = true
798 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
801 'use_custom_immun_list' => array(
802 xl('Use Custom Immunization List'),
803 'bool', // data type
804 '0', // default = true
805 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
808 'preprinted_cms_1500' => array(
809 xl('Prints the CMS 1500 on the Preprinted form'),
810 'bool', // data type
811 '0', // default = false
812 xl('Prints the CMS 1500 on the Preprinted form')
815 'cms_top_margin_default' => array(
816 xl('Default top print margin for CMS 1500'),
817 'num', // data type
818 '24', // default
819 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
822 'cms_left_margin_default' => array(
823 xl('Default left print margin for CMS 1500'),
824 'num', // data type
825 '20', // default
826 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
829 'cms_1500' => array(
830 xl('CMS 1500 Paper Form Format'),
831 array(
832 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
833 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
835 '1', // default
836 xl('This specifies which revision of the form the billing module should generate')
839 'cms_1500_box_31_format' => array(
840 xl('CMS 1500: Box 31 Format'),
841 array(
842 '0' => xl('Signature on File'),
843 '1' => xl('Firstname Lastname'),
844 '2' => xl('None'),
846 '0', // default
847 xl('This specifies whether to include date in Box 31.')
850 'cms_1500_box_31_date' => array(
851 xl('CMS 1500: Date in Box 31 (Signature)'),
852 array(
853 '0' => xl('None'),
854 '1' => xl('Date of Service'),
855 '2' => xl('Today'),
857 '0', // default
858 xl('This specifies whether to include date in Box 31.')
861 'amendments' => array (
862 xl('Amendments'),
863 'bool', // data type
864 '1', // default = true
865 xl('Enable amendments feature')
868 'allow_pat_delete' => array(
869 xl('Allow Administrators to Delete Patients'),
870 'bool', // data type
871 '0', // default = false
872 xl('Allow Administrators to Delete Patients')
876 'observation_results_immunization' => array(
877 xl('Immunization Observation Results'),
878 'bool', // data type
879 '1', // default
880 xl('Observation Results in Immunization')
884 // Report Tab
886 'Report' => array(
888 'use_custom_daysheet' => array(
889 xl('Use Custom End of Day Report'),
890 array(
891 '0' => xl('None'),
892 '1' => xl('Print End of Day Report 1'),
893 '2' => xl('Print End of Day Report 2'),
894 '3' => xl('Print End of Day Report 3'),
895 ), // data type
896 '1', // default = Print End of Day Report 1
897 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
900 'daysheet_provider_totals' => array(
901 xl('End of Day by Provider or allow Totals Only'),
902 array(
903 '0' => xl('Provider'),
904 '1' => xl('Totals Only'),
906 '1', // default
907 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
910 'ledger_begin_date' => array(
911 xl('Beginning Date for Ledger Report'),
912 array(
913 'Y1' => xl('One Year Ago'),
914 'Y2' => xl('Two Years Ago'),
915 'M6' => xl('Six Months Ago'),
916 'M3' => xl('Three Months Ago'),
917 'M1' => xl('One Month Ago'),
918 'D1' => xl('One Day Ago'),
920 'Y1', // default = One Year
921 xl('This is the Beginning date for the Ledger Report.')
924 'print_next_appointment_on_ledger' => array(
925 xl('Print the Next Appointment on the Bottom of the Ledger'),
926 'bool', // data type
927 '1', // default = true
928 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
931 'sales_report_invoice' => array(
932 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
933 array(
934 '0' => xl('Invoice Number'),
935 '1' => xl('Patient Name and ID'),
936 '2' => xl('Patient Name and Invoice'),
938 '2', // default = 2
939 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
942 'cash_receipts_report_invoice' => array(
943 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
944 array(
945 '0' => xl('Invoice Number'),
946 '1' => xl('Patient Name'),
948 '0', // default = 0
949 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
954 // Billing Tab
956 'Billing' => array(
958 'default_search_code_type' => array(
959 xl('Default Search Code Type'),
960 'all_code_types', // data type
961 'ICD10', // default
962 xl('The default code type to search for in the Fee Sheet.')
965 'support_fee_sheet_line_item_provider' => array(
966 xl('Support provider in line item in fee sheet'),
967 'bool', // data type
968 '0', // default = false
969 xl('This Enables provider in line item in the fee sheet')
972 'default_fee_sheet_line_item_provider' => array(
973 xl('Default to a provider for line item in the fee sheet'),
974 'bool', // data type
975 '0', // default = false
976 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
979 'replicate_justification' => array(
980 xl('Automatically replicate justification codes in Fee Sheet'),
981 'bool', // data type
982 '0', // default = false
983 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
986 'display_units_in_billing' => array(
987 xl('Display the Units Column on the Billing Screen'),
988 'bool', // data type
989 '0', // default = false
990 xl('Display the Units Column on the Billing Screen')
993 'notes_to_display_in_Billing' => array(
994 xl('Which notes are to be displayed in the Billing Screen'),
995 array(
996 '0' => xl('None'),
997 '1' => xl('Encounter Billing Note'),
998 '2' => xl('Patient Billing Note'),
999 '3' => xl('All'),
1001 '3',
1002 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1005 'set_pos_code_encounter' => array(
1006 xl('Set POS code in encounter'),
1007 'bool', // data type
1008 '0', // default = false
1009 xl('This feature will allow the default POS facility code to be overriden from the encounter.')
1012 'use_custom_statement' => array(
1013 xl('Use Custom Statement'),
1014 'bool', // data type
1015 '0', // default = false
1016 xl('This will use the custom Statment showing the description instead of the codes.')
1019 'statement_appearance' => array(
1020 xl('Statement Appearance'),
1021 array(
1022 '0' => xl('Plain Text'),
1023 '1' => xl('Modern/images')
1024 ), // data type
1025 '1', // default = true
1026 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1029 'billing_phone_number' => array(
1030 xl('Custom Billing Phone Number'),
1031 'text', // data type
1033 xl('Phone number for billing inquiries')
1036 'show_aging_on_custom_statement' => array(
1037 xl('Show Aging on Custom Statement'),
1038 'bool', // data type
1039 '0', // default = false
1040 xl('This will Show Aging on the custom Statement.')
1043 'use_statement_print_exclusion' => array(
1044 xl('Allow Statement Exclusions from Printing'),
1045 'bool', // data type
1046 '0', // default = false
1047 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1050 'minimum_amount_to_print' => array(
1051 xl('Total Minimum Amount of Statement to Allow Printing'),
1052 'num', // data type
1053 '1.00',
1054 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1057 'statement_bill_note_print' => array(
1058 xl('Print Patient Billing Note'),
1059 'bool', // data type
1060 '0', // default = false
1061 xl('This will allow printing of the Patient Billing Note on the statements.')
1064 'number_appointments_on_statement' => array(
1065 xl('Number of Appointments on Statement'),
1066 'num', // data type
1067 '0', // default = 0
1068 xl('The Number of Future Appointments to Display on the Statement.')
1071 'statement_message_to_patient' => array(
1072 xl('Print Custom Message'),
1073 'bool', // data type
1074 '0', // default = false
1075 xl('This will allow printing of a custom Message on the statements.')
1078 'statement_msg_text' => array(
1079 xl('Custom Statement message'),
1080 'text', // data type
1082 xl('Text for Custom statement message.')
1085 'use_dunning_message' => array(
1086 xl('Use Custom Dunning Messages'),
1087 'bool', // data type
1088 '0', // default = false
1089 xl('This will allow use of the custom Dunning Messages on the statements.')
1092 'first_dun_msg_set' => array(
1093 xl('Number of days before showing first account message'),
1094 'num', // data type
1095 '30',
1096 xl('Number of days before showing first account message.')
1099 'first_dun_msg_text' => array(
1100 xl('First account message'),
1101 'text', // data type
1103 xl('Text for first account message.')
1106 'second_dun_msg_set' => array(
1107 xl('Number of days before showing second account message'),
1108 'num', // data type
1109 '60',
1110 xl('Number of days before showing second account message')
1113 'second_dun_msg_text' => array(
1114 xl('Second account message'),
1115 'text', // data type
1117 xl('Text for second account message.')
1120 'third_dun_msg_set' => array(
1121 xl('Number of days before showing third account message'),
1122 'num', // data type
1123 '90',
1124 xl('Number of days before showing third account message')
1127 'third_dun_msg_text' => array(
1128 xl('Third account message'),
1129 'text', // data type
1131 xl('Text for third account message.')
1134 'fourth_dun_msg_set' => array(
1135 xl('Number of days before showing fourth account message'),
1136 'num', // data type
1137 '120',
1138 xl('Number of days before showing fourth account message')
1141 'fourth_dun_msg_text' => array(
1142 xl('Fourth account message'),
1143 'text', // data type
1145 xl('Text for fourth account message.')
1148 'fifth_dun_msg_set' => array(
1149 xl('Number of days before showing fifth account message'),
1150 'num', // data type
1151 '150',
1152 xl('Number of days before showing fifth account message')
1155 'fifth_dun_msg_text' => array(
1156 xl('Fifth account message'),
1157 'text', // data type
1159 xl('Text for fifth account message.')
1161 'save_codes_history' => array(
1162 xl('Save codes history'),
1163 'bool', // data type
1164 '1', // default
1165 xl('Save codes history')
1169 // E-Sign Tab
1171 'E-Sign' => array(
1173 'esign_all' => array(
1174 xl('Allows E-Sign on the entire encounter'),
1175 'bool', // data type
1176 '0', // default = false
1177 xl('This will enable signing an entire encounter, rather than individual forms')
1180 'lock_esign_all' => array(
1181 xl('Lock e-signed encounters and their forms'),
1182 'bool', // data type
1183 '0', // default = false
1184 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1187 'esign_individual' => array(
1188 xl('Allows E-Signing Individual Forms'),
1189 'bool', // data type
1190 '1', // default = false
1191 xl('This will enable signing individual forms separately')
1194 'lock_esign_individual' => array(
1195 xl('Lock an e-signed form individually'),
1196 'bool', // data type
1197 '1', // default = false
1198 xl('This will disable the Edit button on any form that is e-signed')
1201 'esign_lock_toggle' => array(
1202 xl('Enable lock toggle'),
1203 'bool', // data type
1204 '0', // default = false
1205 xl('This will give the user the option to lock (separate locking and signing)')
1208 'esign_report_hide_empty_sig' => array(
1209 xl('Hide Empty E-Sign Logs On Report'),
1210 'bool', // data type
1211 '1', // default = false
1212 xl('This will hide empty e-sign logs on the patient report')
1216 //Documents Tab
1217 'Documents' => array(
1219 'document_storage_method' => array(
1220 xl('Document Storage Method'),
1221 array(
1222 '0' => xl('Hard Disk'),
1223 '1' => xl('CouchDB')
1225 '0', // default
1226 xl('Option to save method of document storage.')
1228 'couchdb_host' => array(
1229 xl('CouchDB HostName'),
1230 'text',
1231 'localhost',
1232 xl('CouchDB host'),
1234 'couchdb_user' => array(
1235 xl('CouchDB UserName'),
1236 'text',
1238 xl('Username to connect to CouchDB'),
1240 'couchdb_pass' => array(
1241 xl('CouchDB Password'),
1242 'text',
1244 xl('Password to connect to CouchDB'),
1246 'couchdb_port' => array(
1247 xl('CouchDB Port'),
1248 'text',
1249 '5984',
1250 xl('CouchDB port'),
1252 'couchdb_dbase' => array(
1253 xl('CouchDB Database'),
1254 'text',
1256 xl('CouchDB database name'),
1258 'couchdb_log' => array(
1259 xl('CouchDB Log Enable'),
1260 'bool',
1261 '0',
1262 xl('Enable log for document uploads/downloads to CouchDB'),
1265 'expand_document_tree' => array(
1266 xl('Expand All Document Categories'),
1267 'bool', // data type
1268 '0', // default = false
1269 xl('Expand All Document Categories by Default')
1272 'patient_id_category_name' => array(
1273 xl('Patient ID Category Name'),
1274 'text', // data type
1275 'Patient ID card', // default
1276 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1279 'patient_photo_category_name' => array(
1280 xl('Patient Photo Category Name'),
1281 'text', // data type
1282 'Patient Photograph', // default
1283 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1286 'lab_results_category_name' => array(
1287 xl('Lab Results Category Name'),
1288 'text', // data type
1289 'Lab Report', // default
1290 xl('Document category name for storage of electronically received lab results.')
1293 'gbl_mdm_category_name' => array(
1294 xl('MDM Document Category Name'),
1295 'text', // data type
1296 'Lab Report', // default
1297 xl('Document category name for storage of electronically received MDM documents.')
1299 'generate_doc_thumb' => array(
1300 xl('Generate thumbnail'),
1301 'bool',
1302 '0',
1303 xl('Generate thumbnail images'),
1305 'thumb_doc_max_size' => array(
1306 xl('Thumbnail size'),
1307 'text', // data type
1308 '100', // default
1309 xl('Maximum size of thumbnail file')
1313 // Calendar Tab
1315 'Calendar' => array(
1317 'disable_calendar' => array(
1318 xl('Disable Calendar'),
1319 'bool', // data type
1320 '0', // default
1321 xl('Do not display the calendar.')
1324 'schedule_start' => array(
1325 xl('Calendar Starting Hour'),
1326 'hour',
1327 '8', // default
1328 xl('Beginning hour of day for calendar events.')
1331 'schedule_end' => array(
1332 xl('Calendar Ending Hour'),
1333 'hour',
1334 '17', // default
1335 xl('Ending hour of day for calendar events.')
1338 'calendar_interval' => array(
1339 xl('Calendar Interval'),
1340 array(
1341 '5' => '5',
1342 '10' => '10',
1343 '15' => '15',
1344 '20' => '20',
1345 '30' => '30',
1346 '60' => '60',
1348 '15', // default
1349 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1352 'calendar_view_type' => array(
1353 xl('Default Calendar View'),
1354 array(
1355 'day' => xl('Day'),
1356 'week' => xl('Week'),
1357 'month' => xl('Month'),
1359 'day', // default
1360 xl('This sets the Default Calendar View, Default is Day.')
1362 'first_day_week' => array(
1363 xl('First day in the week') ,
1364 array(
1365 '1' => xl('Monday'),
1366 '0' => xl('Sunday'),
1367 '6' => xl('Saturday')
1369 '1',
1370 xl('Your first day of the week.')
1372 'calendar_appt_style' => array(
1373 xl('Appointment Display Style'),
1374 array(
1375 '1' => 'Last name',
1376 '2' => 'Last name, first name',
1377 '3' => 'Last name, first name (title)',
1378 '4' => 'Last name, first name (title: comments)',
1380 '2', // default
1381 xl('This determines how appointments display on the calendar.')
1384 'event_color' => array(
1385 xl('Appointment/Event Color'),
1386 array(
1387 '1' => 'Category Color Schema',
1388 '2' => 'Facility Color Schema',
1389 ), // data type
1390 '1', // default
1391 xl('This determines which color schema used for appointment')
1394 'number_of_appts_to_show' => array(
1395 xl('Appointments - Patient Summary - Number to Display'),
1396 'num',
1397 '10',
1398 xl('Number of Appointments to display in the Patient Summary')
1402 'patient_portal_appt_display_num' => array(
1403 xl('Appointments - Onsite Patient Portal - Number to Display'),
1404 'num',
1405 '20',
1406 xl('Number of Appointments to display in the Onsite Patient Portal')
1409 'appt_display_sets_option' => array(
1410 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1411 'bool', // data type
1412 '1', // default
1413 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1416 'appt_display_sets_color_1' => array(
1417 xl('Appointment Display Sets - Color 1'),
1418 'color_code',
1419 '#FFFFFF',
1420 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).')
1423 'appt_display_sets_color_2' => array(
1424 xl('Appointment Display Sets - Color 2'),
1425 'color_code',
1426 '#E6E6FF',
1427 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).')
1430 'appt_display_sets_color_3' => array(
1431 xl('Appointment Display Sets - Color 3'),
1432 'color_code',
1433 '#E6FFE6',
1434 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1437 'appt_display_sets_color_4' => array(
1438 xl('Appointment Display Sets - Color 4'),
1439 'color_code',
1440 '#FFE6FF',
1441 xl('Color for the last set when not all member appointments are displayed.')
1444 'appt_recurrences_widget' => array(
1445 xl('Recurrent Appointment Display Widget'),
1446 'bool', // data type
1447 '1', // default
1448 xl('Display the recurrent appointment widget in the patient summary.')
1451 'num_past_appointments_to_show' => array(
1452 xl('Past Appointment Display Widget'),
1453 'num', // data type
1454 '0', // default = false
1455 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)')
1458 'docs_see_entire_calendar' => array(
1459 xl('Providers See Entire Calendar'),
1460 'bool', // data type
1461 '0', // default
1462 xl('Check this if you want providers to see all appointments by default and not just their own.')
1465 'auto_create_new_encounters' => array(
1466 xl('Auto-Create New Encounters'),
1467 'bool', // data type
1468 '1', // default
1469 xl('Automatically create a new encounter when an appointment check in status is selected.')
1472 'disable_pat_trkr' => array(
1473 xl('Disable Patient Flow Board'),
1474 'bool', // data type
1475 '0', // default
1476 xl('Do not display the patient flow board.')
1479 'ptkr_visit_reason' => array(
1480 xl('Show Visit Reason in Patient Flow Board'),
1481 'bool', // data type
1482 '0', // default = false
1483 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1486 'ptkr_show_pid' => array(
1487 xl('Show Patient ID in Patient Flow Board'),
1488 'bool', // data type
1489 '1', // default = true
1490 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1493 'ptkr_show_encounter' => array(
1494 xl('Show Patient Encounter Number in Patient Flow Board'),
1495 'bool', // data type
1496 '1', // default = true
1497 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1500 'pat_trkr_timer' => array(
1501 xl('Patient Flow Board Timer Interval'),
1502 array(
1503 '0' => 'No automatic refresh',
1504 '0:10' => '10',
1505 '0:20' => '20',
1506 '0:30' => '30',
1507 '0:40' => '40',
1508 '0:50' => '50',
1509 '0:59' => '60',
1511 '0:20', // default
1512 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1515 'checkout_roll_off' => array(
1516 xl('Number of Minutes to display completed checkouts'),
1517 'num',
1518 '0', // default
1519 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1522 'drug_screen' => array(
1523 xl('Enable Random Drug Testing'),
1524 'bool', // data type
1525 '0', // default
1526 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1529 'drug_testing_percentage' => array(
1530 xl('Percentage of Patients to Drug Test'),
1531 'num',
1532 '33', // default
1533 xl('Percentage of Patients to select for Random Drug Testing.')
1536 'maximum_drug_test_yearly' => array(
1537 xl('Maximum number of times a Patient can be tested in a year'),
1538 'num',
1539 '0', // default
1540 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1543 'submit_changes_for_all_appts_at_once' => array(
1544 xl('Submit Changes For All Appts At Once'),
1545 'bool', // data type
1546 '1', // default
1547 xl('Enables to submit changes for all appointments of a recurrence at once.')
1553 // Security Tab
1555 'Security' => array(
1557 'timeout' => array(
1558 xl('Idle Session Timeout Seconds'),
1559 'num', // data type
1560 '7200', // default
1561 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1564 'secure_password' => array(
1565 xl('Require Strong Passwords'),
1566 'bool', // data type
1567 '0', // default
1568 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1571 'password_history' => array(
1572 xl('Require Unique Passwords'),
1573 'bool', // data type
1574 '0', // default
1575 xl('Means none of last three passwords are allowed when changing a password.')
1577 'password_compatibility' => array(
1578 xl('Permit unsalted passwords'),
1579 'bool', // data type
1580 '1', // default
1581 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')
1584 'password_expiration_days' => array(
1585 xl('Default Password Expiration Days'),
1586 'num', // data type
1587 '0', // default
1588 xl('Default password expiration period in days. 0 means this feature is disabled.')
1591 'password_grace_time' => array(
1592 xl('Password Expiration Grace Period'),
1593 'num', // data type
1594 '0', // default
1595 xl('Period in days where a user may login with an expired password.')
1598 'is_client_ssl_enabled' => array(
1599 xl('Enable Client SSL'),
1600 'bool', // data type
1601 '0', // default
1602 xl('Enable client SSL certificate authentication.')
1605 'certificate_authority_crt' => array(
1606 xl('Path to CA Certificate File'),
1607 'text', // data type
1608 '', // default
1609 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1612 'certificate_authority_key' => array(
1613 xl('Path to CA Key File'),
1614 'text', // data type
1615 '', // default
1616 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1619 'client_certificate_valid_in_days' => array(
1620 xl('Client Certificate Expiration Days'),
1621 'num', // data type
1622 '365', // default
1623 xl('Number of days that the client certificate is valid.')
1626 'Emergency_Login_email_id' => array(
1627 xl('Emergency Login Email Address'),
1628 'text', // data type
1629 '', // default
1630 xl('Email address, if any, to receive emergency login user activation messages.')
1632 'new_validate' => array(
1633 xl('New form validation'),
1634 'bool',
1635 '1',
1636 xl('New form validation')
1638 'allow_multiple_databases' => array(
1639 xl('Allow multiple databases'),
1640 'bool',
1641 '0',
1642 xl('Allow to use with multiple database')
1644 'safe_key_database' => array(
1645 xl('Safe key database'),
1646 'text', // data type
1647 '', // default
1648 xl('Key for multiple database credentials encryption')
1652 // Notifications Tab
1654 'Notifications' => array(
1656 'patient_reminder_sender_name' => array(
1657 xl('Patient Reminder Sender Name'),
1658 'text', // data type
1659 '', // default
1660 xl('Name of the sender for patient reminders.')
1663 'patient_reminder_sender_email' => array(
1664 xl('Patient Reminder Sender Email'),
1665 'text', // data type
1666 '', // default
1667 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.')
1670 'practice_return_email_path' => array(
1671 xl('Notification Email Address'),
1672 'text', // data type
1673 '', // default
1674 xl('Email address, if any, to receive administrative notifications.')
1677 'EMAIL_METHOD' => array(
1678 xl('Email Transport Method'),
1679 array(
1680 'PHPMAIL' => 'PHPMAIL',
1681 'SENDMAIL' => 'SENDMAIL',
1682 'SMTP' => 'SMTP',
1684 'SMTP', // default
1685 xl('Method for sending outgoing email.')
1688 'SMTP_HOST' => array(
1689 xl('SMTP Server Hostname'),
1690 'text', // data type
1691 'localhost', // default
1692 xl('If SMTP is used, the server`s hostname or IP address.')
1695 'SMTP_PORT' => array(
1696 xl('SMTP Server Port Number'),
1697 'num', // data type
1698 '25', // default
1699 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1702 'SMTP_USER' => array(
1703 xl('SMTP User for Authentication'),
1704 'text', // data type
1705 '', // default
1706 xl('Must be empty if SMTP authentication is not used.')
1709 'SMTP_PASS' => array(
1710 xl('SMTP Password for Authentication'),
1711 'text', // data type
1712 '', // default
1713 xl('Must be empty if SMTP authentication is not used.')
1716 'SMTP_SECURE' => array(
1717 xl('SMTP Security Protocol'),
1718 array(
1719 '' => xl('None'),
1720 'ssl' => 'SSL',
1721 'tls' => 'TLS'
1724 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1727 'EMAIL_NOTIFICATION_HOUR' => array(
1728 xl('Email Notification Hours'),
1729 'num', // data type
1730 '50', // default
1731 xl('Number of hours in advance to send email notifications.')
1734 'SMS_NOTIFICATION_HOUR' => array(
1735 xl('SMS Notification Hours'),
1736 'num', // data type
1737 '50', // default
1738 xl('Number of hours in advance to send SMS notifications.')
1741 'SMS_GATEWAY_USENAME' => array(
1742 xl('SMS Gateway Username'),
1743 'text', // data type
1744 '', // default
1745 xl('Username for SMS Gateway.')
1748 'SMS_GATEWAY_PASSWORD' => array(
1749 xl('SMS Gateway Password'),
1750 'text', // data type
1751 '', // default
1752 xl('Password for SMS Gateway.')
1755 'SMS_GATEWAY_APIKEY' => array(
1756 xl('SMS Gateway API Key'),
1757 'text', // data type
1758 '', // default
1759 xl('API key for SMS Gateway.')
1762 'phone_notification_hour' => array(
1763 xl('Phone Notification Hour'),
1764 'num', // data type
1765 '50', // default
1766 xl('Number of hours in advance to send Phone notification.')
1769 'phone_gateway_username' => array(
1770 xl('Phone Gateway Username'),
1771 'text', // data type
1772 '', // default
1773 xl('Username for Phone Gateway.')
1776 'phone_gateway_password' => array(
1777 xl('Phone Gateway Password'),
1778 'text', // data type
1779 '', // default
1780 xl('Password for Phone Gateway.')
1783 'phone_gateway_url' => array(
1784 xl('Phone Gateway URL'),
1785 'text', // data type
1786 '', // default
1787 xl('URL for Phone Gateway.')
1792 // CDR (Clinical Decision Rules)
1794 'CDR' => array(
1796 'enable_cdr' => array(
1797 xl('Enable Clinical Decisions Rules (CDR)'),
1798 'bool', // data type
1799 '1', // default
1800 xl('Enable Clinical Decisions Rules (CDR)')
1803 'enable_allergy_check' => array(
1804 xl('Enable Allergy Check'),
1805 'bool', // data type
1806 '1', // default
1807 xl('Enable Allergy Check Against Medications and Prescriptions')
1810 'enable_alert_log' => array(
1811 xl('Enable Alert Log'),
1812 'bool', // data type
1813 '1', // default
1814 xl('Enable Alert Logging')
1817 'enable_cdr_new_crp' => array(
1818 xl('Enable Clinical Passive New Reminder(s) Popup'),
1819 'bool', // data type
1820 '1', // default
1821 xl('Enable Clinical Passive New Reminder(s) Popup')
1824 'enable_cdr_crw' => array(
1825 xl('Enable Clinical Passive Reminder Widget'),
1826 'bool', // data type
1827 '1', // default
1828 xl('Enable Clinical Passive Reminder Widget')
1831 'enable_cdr_crp' => array(
1832 xl('Enable Clinical Active Reminder Popup'),
1833 'bool', // data type
1834 '1', // default
1835 xl('Enable Clinical Active Reminder Popup')
1838 'enable_cdr_prw' => array(
1839 xl('Enable Patient Reminder Widget'),
1840 'bool', // data type
1841 '1', // default
1842 xl('Enable Patient Reminder Widget')
1845 'enable_cqm' => array(
1846 xl('Enable CQM Reporting'),
1847 'bool', // data type
1848 '1', // default
1849 xl('Enable Clinical Quality Measure (CQM) Reporting')
1852 'pqri_registry_name' => array(
1853 xl('PQRI Registry Name'),
1854 'text', // data type
1855 'Model Registry', // default
1856 xl('PQRI Registry Name')
1859 'pqri_registry_id' => array(
1860 xl('PQRI Registry ID'),
1861 'text', // data type
1862 '125789123', // default
1863 xl('PQRI Registry ID')
1866 'enable_amc' => array(
1867 xl('Enable AMC Reporting'),
1868 'bool', // data type
1869 '1', // default
1870 xl('Enable Automated Measure Calculations (AMC) Reporting')
1873 'enable_amc_prompting' => array(
1874 xl('Enable AMC Prompting'),
1875 'bool', // data type
1876 '1', // default
1877 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1880 'enable_amc_tracking' => array(
1881 xl('Enable AMC Tracking'),
1882 'bool', // data type
1883 '1', // default
1884 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
1887 'cdr_report_nice' => array(
1888 xl('CDR Reports Processing Priority'),
1889 array(
1890 '' => xl('Default Priority'),
1891 '5' => xl('Moderate Priority'),
1892 '10' => xl('Moderate/Low Priority'),
1893 '15' => xl('Low Priority'),
1894 '20' => xl('Lowest Priority')
1896 '', // default
1897 xl('Set processing priority for CDR engine based reports.')
1900 'pat_rem_clin_nice' => array(
1901 xl('Patient Reminder Creation Processing Priority'),
1902 array(
1903 '' => xl('Default Priority'),
1904 '5' => xl('Moderate Priority'),
1905 '10' => xl('Moderate/Low Priority'),
1906 '15' => xl('Low Priority'),
1907 '20' => xl('Lowest Priority')
1909 '', // default
1910 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
1913 'report_itemizing_standard' => array(
1914 xl('Enable Standard Report Itemization'),
1915 'bool', // data type
1916 '1', // default
1917 xl('Enable Itemization of Standard Clinical Rules Reports')
1920 'report_itemizing_cqm' => array(
1921 xl('Enable CQM Report Itemization'),
1922 'bool', // data type
1923 '1', // default
1924 xl('Enable Itemization of CQM Reports')
1927 'report_itemizing_amc' => array(
1928 xl('Enable AMC Report Itemization'),
1929 'bool', // data type
1930 '1', // default
1931 xl('Enable Itemization of AMC Reports')
1933 'dated_reminders_max_alerts_to_show' => array(
1934 xl('Dated reminders maximum alerts to show'),
1935 'num', // data type
1936 '5', // default
1937 xl('Dated reminders maximum alerts to show')
1941 // Logging
1943 'Logging' => array(
1945 'enable_auditlog' => array(
1946 xl('Enable Audit Logging'),
1947 'bool', // data type
1948 '1', // default
1949 xl('Enable Audit Logging')
1952 'audit_events_patient-record' => array(
1953 xl('Audit Logging Patient Record'),
1954 'bool', // data type
1955 '1', // default
1956 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1959 'audit_events_scheduling' => array(
1960 xl('Audit Logging Scheduling'),
1961 'bool', // data type
1962 '1', // default
1963 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1966 'audit_events_order' => array(
1967 xl('Audit Logging Order'),
1968 'bool', // data type
1969 '1', // default
1970 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1973 'audit_events_security-administration' => array(
1974 xl('Audit Logging Security Administration'),
1975 'bool', // data type
1976 '1', // default
1977 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1980 'audit_events_backup' => array(
1981 xl('Audit Logging Backups'),
1982 'bool', // data type
1983 '1', // default
1984 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1987 'audit_events_other' => array(
1988 xl('Audit Logging Miscellaneous'),
1989 'bool', // data type
1990 '1', // default
1991 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1994 'audit_events_query' => array(
1995 xl('Audit Logging SELECT Query'),
1996 'bool', // data type
1997 '0', // default
1998 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2001 'audit_events_cdr' => array(
2002 xl('Audit CDR Engine Queries'),
2003 'bool', // data type
2004 '0', // default
2005 xl('Enable logging of CDR Engine Queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2008 'enable_atna_audit' => array(
2009 xl('Enable ATNA Auditing'),
2010 'bool', // data type
2011 '0', // default
2012 xl('Enable Audit Trail and Node Authentication (ATNA).')
2015 'atna_audit_host' => array(
2016 xl('ATNA audit host'),
2017 'text', // data type
2018 '', // default
2019 xl('The hostname of the ATNA audit repository machine.')
2022 'atna_audit_port' => array(
2023 xl('ATNA audit port'),
2024 'text', // data type
2025 '6514', // default
2026 xl('Listening port of the RFC 5425 TLS syslog server.')
2029 'atna_audit_localcert' => array(
2030 xl('ATNA audit local certificate'),
2031 'text', // data type
2032 '', // default
2033 xl('Certificate to send to RFC 5425 TLS syslog server.')
2036 'atna_audit_cacert' => array(
2037 xl('ATNA audit CA certificate'),
2038 'text', // data type
2039 '', // default
2040 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2043 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
2044 'enable_auditlog_encryption' => array(
2045 xl('Enable Audit Log Encryption'),
2046 'bool', // data type
2047 '0', // default
2048 xl('Enable Audit Log Encryption')
2051 'billing_log_option' => array(
2052 xl('Billing Log Option'),
2053 array(
2054 '1' => xl('Billing Log Append'),
2055 '2' => xl('Billing Log Overwrite')
2057 '1', // default
2058 xl('Billing log setting to append or overwrite the log file.')
2061 'gbl_print_log_option' => array(
2062 xl('Printing Log Option'),
2063 array(
2064 '0' => xl('No logging'),
2065 '1' => xl('Hide print feature'),
2066 '2' => xl('Log entire document'),
2068 '0', // default
2069 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2074 // Miscellaneous Tab
2076 'Miscellaneous' => array(
2078 'mysql_bin_dir' => array(
2079 xl('Path to MySQL Binaries'),
2080 'text', // data type
2081 $mysql_bin_dir, // default
2082 xl('Full path to directory containing MySQL executables.')
2085 'perl_bin_dir' => array(
2086 xl('Path to Perl Binaries'),
2087 'text', // data type
2088 $perl_bin_dir, // default
2089 xl('Full path to directory containing Perl executables.')
2092 'temporary_files_dir' => array(
2093 xl('Path to Temporary Files'),
2094 'text', // data type
2095 $temporary_files_dir, // default
2096 xl('Full path to directory used for temporary files.')
2099 'backup_log_dir' => array(
2100 xl('Path for Event Log Backup'),
2101 'text', // data type
2102 $backup_log_dir, // default
2103 xl('Full path to directory for event log backup.')
2106 'state_data_type' => array(
2107 xl('State Data Type'),
2108 array(
2109 '2' => xl('Text field'),
2110 '1' => xl('Single-selection list'),
2111 '26' => xl('Single-selection list with ability to add to the list'),
2113 '26', // default
2114 xl('Field type to use for employer or subscriber state in demographics.')
2117 'state_list' => array(
2118 xl('State list'),
2119 'text', // data type
2120 'state', // default
2121 xl('List used by above State Data Type option.')
2124 'state_custom_addlist_widget' => array(
2125 xl('State List Widget Custom Fields'),
2126 'bool', // data type
2127 '1', // default
2128 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2131 'country_data_type' => array(
2132 xl('Country Data Type'),
2133 array(
2134 '2' => xl('Text field'),
2135 '1' => xl('Single-selection list'),
2136 '26' => xl('Single-selection list with ability to add to the list'),
2138 '26', // default
2139 xl('Field type to use for employer or subscriber country in demographics.')
2142 'country_list' => array(
2143 xl('Country list'),
2144 'text', // data type
2145 'country', // default
2146 xl('List used by above Country Data Type option.')
2149 'print_command' => array(
2150 xl('Print Command'),
2151 'text', // data type
2152 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2153 xl('Shell command for printing from the server.')
2156 'default_chief_complaint' => array(
2157 xl('Default Reason for Visit'),
2158 'text', // data type
2160 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2163 'default_new_encounter_form' => array(
2164 xl('Default Encounter Form ID'),
2165 'text', // data type
2167 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
2170 'MedicareReferrerIsRenderer' => array(
2171 xl('Medicare Referrer Is Renderer'),
2172 'bool', // data type
2173 '0', // default = true
2174 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2177 'post_to_date_benchmark' => array(
2178 xl('Financial Close Date (yyyy-mm-dd)'),
2179 'text', // data type
2180 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
2181 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2184 'enable_hylafax' => array(
2185 xl('Enable Hylafax Support'),
2186 'bool', // data type
2187 '0', // default
2188 xl('Enable Hylafax Support')
2191 'hylafax_server' => array(
2192 xl('Hylafax Server'),
2193 'text', // data type
2194 'localhost', // default
2195 xl('Hylafax server hostname.')
2198 'hylafax_basedir' => array(
2199 xl('Hylafax Directory'),
2200 'text', // data type
2201 '/var/spool/fax', // default
2202 xl('Location where Hylafax stores faxes.')
2205 'hylafax_enscript' => array(
2206 xl('Hylafax Enscript Command'),
2207 'text', // data type
2208 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2209 xl('Enscript command used by Hylafax.')
2212 'enable_scanner' => array(
2213 xl('Enable Scanner Support'),
2214 'bool', // data type
2215 '0', // default
2216 xl('Enable Scanner Support')
2219 'scanner_output_directory' => array(
2220 xl('Scanner Directory'),
2221 'text', // data type
2222 '/mnt/scan_docs', // default
2223 xl('Location where scans are stored.')
2227 // Portal Tab
2229 'Portal' => array(
2231 'portal_onsite_enable' => array(
2232 xl('Enable Onsite Patient Portal'),
2233 'bool', // data type
2234 '0',
2235 xl('Enable Onsite Patient Portal.')
2238 'portal_onsite_address' => array(
2239 xl('Onsite Patient Portal Site Address'),
2240 'text', // data type
2241 'https://your_web_site.com/openemr/patients',
2242 xl('Website link for the Onsite Patient Portal.')
2245 'portal_onsite_document_download' => array(
2246 xl('Enable Onsite Patient Portal Document Download'),
2247 'bool', // data type
2248 '1',
2249 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2252 'portal_offsite_enable' => array(
2253 xl('Enable Offsite Patient Portal'),
2254 'bool', // data type
2255 '0',
2256 xl('Enable Offsite Patient Portal.')
2259 'portal_offsite_providerid' => array(
2260 xl('Offsite Patient Portal Provider ID'),
2261 'text', // data type
2263 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2266 'portal_offsite_username' => array(
2267 xl('Offsite Patient Portal Username'),
2268 'text', // data type
2270 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2273 'portal_offsite_password' => array(
2274 xl('Offsite Patient Portal Password'),
2275 'pwd', // data type
2277 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2280 'portal_offsite_address' => array(
2281 xl('Offsite Patient Portal Site Address'),
2282 'text', // data type
2283 'https://ssh.mydocsportal.com/provider.php',
2284 xl('Offsite Https link for the Patient Portal.')
2287 'portal_offsite_address_patient_link' => array(
2288 xl('Offsite Patient Portal Site Address (Patient Link)'),
2289 'text', // data type
2290 'https://ssh.mydocsportal.com',
2291 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2294 // Currently the "CMS Portal" supports WordPress. Other Content Management
2295 // Systems may be supported in the future.
2297 'gbl_portal_cms_enable' => array(
2298 xl('Enable CMS Portal'),
2299 'bool', // data type
2300 '0',
2301 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2304 'gbl_portal_cms_address' => array(
2305 xl('CMS Portal Site Address'),
2306 'text', // data type
2307 'https://your_cms_site.com/',
2308 xl('URL for the WordPress site that supports the portal')
2311 'gbl_portal_cms_username' => array(
2312 xl('CMS Portal Username'),
2313 'text', // data type
2315 xl('Login name of WordPress user for portal access')
2318 'gbl_portal_cms_password' => array(
2319 xl('CMS Portal Password'),
2320 'text', // data type
2322 xl('Password for the above user')
2327 // Connectors Tab
2329 'Connectors' => array(
2331 'erx_enable' => array(
2332 xl('Enable NewCrop eRx Service'),
2333 'bool',
2334 '0',
2335 xl('Enable NewCrop eRx Service.') + ' ' +
2336 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.')
2339 'erx_newcrop_path' => array(
2340 xl('NewCrop eRx Site Address'),
2341 'text',
2342 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2343 xl('URL for NewCrop eRx Site Address.')
2346 'erx_newcrop_path_soap' => array(
2347 xl('NewCrop eRx Web Service Address'),
2348 'text',
2349 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2350 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2353 'erx_soap_ttl_allergies' => array(
2354 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2355 'num',
2356 '21600',
2357 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2360 'erx_soap_ttl_medications' => array(
2361 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2362 'num',
2363 '21600',
2364 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2367 'erx_account_partner_name' => array(
2368 xl('NewCrop eRx Partner Name'),
2369 'text',
2371 xl('Partner Name issued for NewCrop eRx service.')
2374 'erx_account_name' => array(
2375 xl('NewCrop eRx Name'),
2376 'text',
2378 xl('Account Name issued for NewCrop eRx service.')
2381 'erx_account_password' => array(
2382 xl('NewCrop eRx Password'),
2383 'pass',
2385 xl('Account Password issued for NewCrop eRx service.')
2388 'erx_account_id' => array(
2389 xl('NewCrop eRx Account Id'),
2390 'text',
2391 '1',
2392 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2395 'erx_upload_active' => array(
2396 xl('Only upload active prescriptions'),
2397 'bool',
2398 '0',
2399 xl('Only upload active prescriptions to NewCrop eRx.')
2402 'erx_import_status_message' => array(
2403 xl('Enable NewCrop eRx import status message'),
2404 'bool',
2405 '0',
2406 xl('Enable import status message after visiting NewCrop eRx.')
2409 'erx_medication_display' => array(
2410 xl('Do not display NewCrop eRx Medications uploaded'),
2411 'bool',
2412 '0',
2413 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2416 'erx_allergy_display' => array(
2417 xl('Do not display NewCrop eRx Allergy uploaded'),
2418 'bool',
2419 '0',
2420 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2423 'erx_default_patient_country' => array(
2424 xl('NewCrop eRx Default Patient Country'),
2425 array(
2426 '' => '',
2427 'US' => xl('USA'),
2428 'CA' => xl('Canada'),
2429 'MX' => xl('Mexico'),
2432 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2435 'erx_debug_setting' => array(
2436 xl('NewCrop eRx Debug Setting'),
2437 array(
2438 0 => xl('None'),
2439 1 => xl('Request Only'),
2440 2 => xl('Response Only'),
2441 3 => xl('Request & Response'),
2443 '0',
2444 xl('Log all NewCrop eRx Requests and / or Responses.'),
2447 'phimail_enable' => array(
2448 xl('Enable phiMail Direct Messaging Service'),
2449 'bool', // data type
2450 '0',
2451 xl('Enable phiMail Direct Messaging Service')
2454 'phimail_server_address' => array(
2455 xl('phiMail Server Address'),
2456 'text', // data type
2457 'https://phimail.example.com:32541',
2458 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2461 'phimail_username' => array(
2462 xl('phiMail Username'),
2463 'text', // data type
2465 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2468 'phimail_password' => array(
2469 xl('phiMail Password'),
2470 'pass', // data type
2472 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2475 'phimail_notify' => array(
2476 xl('phiMail notification user'),
2477 'text', // data type
2478 'admin',
2479 xl('This user will receive notification of new incoming Direct messages')
2482 'phimail_interval' => array(
2483 xl('phiMail Message Check Interval (minutes)'),
2484 'num', // data type
2485 '5',
2486 xl('Interval between message checks (set to zero for manual checks only)')
2489 'phimail_ccd_enable' => array(
2490 xl('phiMail Allow CCD Send'),
2491 'bool', // data type
2492 '0',
2493 xl('phiMail Allow CCD Send')
2496 'phimail_ccr_enable' => array(
2497 xl('phiMail Allow CCR Send'),
2498 'bool', // data type
2499 '0',
2500 xl('phiMail Allow CCR Send')
2504 'Rx' => array(
2505 'rx_enable_DEA' => array(
2506 xl('Rx Enable DEA #'),
2507 'bool', // data type
2508 '1',
2509 xl('Rx Enable DEA #')
2511 'rx_show_DEA' => array(
2512 xl('Rx Show DEA #'),
2513 'bool', // data type
2514 '0',
2515 xl('Rx Show DEA #')
2517 'rx_enable_NPI' => array(
2518 xl('Rx Enable NPI'),
2519 'bool', // data type
2520 '0',
2521 xl('Rx Enable NPI')
2523 'rx_show_NPI' => array(
2524 xl('Rx Show NPI'),
2525 'bool', // data type
2526 '0',
2527 xl('Rx Show NPI')
2529 'rx_enable_SLN' => array(
2530 xl('Rx Enable State Lic. #'),
2531 'bool', // data type
2532 '0',
2533 xl('Rx Enable State Lic. #')
2535 'rx_show_SLN' => array(
2536 xl('Rx Show State Lic. #'),
2537 'bool', // data type
2538 '0',
2539 xl('Rx Show State Lic. #')
2541 'rx_show_drug-drug' => array(
2542 xl('Rx NLM Drug-Drug'),
2543 'bool', // data type
2544 '0',
2545 xl('Rx NLM Drug-Drug')
2547 'rx_paper_size' => array(
2548 xl('Rx Paper Size'), // descriptive name
2549 array(
2550 'LETTER' => xl('Letter Paper Size'),
2551 'LEGAL' => xl('Legal Paper Size'),
2552 'FOLIO' => xl('Folio Paper Size'),
2553 'EXECUTIVE' => xl('Executive Paper Size'),
2554 '4A0' => ('4A0' . " " . xl('Paper Size')),
2555 '2A0' => ('2A0' . " " . xl('Paper Size')),
2556 'A0' => ('A0' . " " . xl('Paper Size')),
2557 'A1' => ('A1' . " " . xl('Paper Size')),
2558 'A2' => ('A2' . " " . xl('Paper Size')),
2559 'A3' => ('A3' . " " . xl('Paper Size')),
2560 'A4' => ('A4' . " " . xl('Paper Size')),
2561 'A5' => ('A5' . " " . xl('Paper Size')),
2562 'A6' => ('A6' . " " . xl('Paper Size')),
2563 'A7' => ('A7' . " " . xl('Paper Size')),
2564 'A8' => ('A8' . " " . xl('Paper Size')),
2565 'A9' => ('A9' . " " . xl('Paper Size')),
2566 'A10' => ('A10' . " " . xl('Paper Size')),
2567 'B0' => ('B0' . " " . xl('Paper Size')),
2568 'B1' => ('B1' . " " . xl('Paper Size')),
2569 'B2' => ('B2' . " " . xl('Paper Size')),
2570 'B3' => ('B3' . " " . xl('Paper Size')),
2571 'B4' => ('B4' . " " . xl('Paper Size')),
2572 'B5' => ('B5' . " " . xl('Paper Size')),
2573 'B6' => ('B6' . " " . xl('Paper Size')),
2574 'B7' => ('B7' . " " . xl('Paper Size')),
2575 'B8' => ('B8' . " " . xl('Paper Size')),
2576 'B9' => ('B9' . " " . xl('Paper Size')),
2577 'B10' => ('B10' . " " . xl('Paper Size')),
2578 'C0' => ('C0' . " " . xl('Paper Size')),
2579 'C1' => ('C1' . " " . xl('Paper Size')),
2580 'C2' => ('C2' . " " . xl('Paper Size')),
2581 'C3' => ('C3' . " " . xl('Paper Size')),
2582 'C4' => ('C4' . " " . xl('Paper Size')),
2583 'C5' => ('C5' . " " . xl('Paper Size')),
2584 'C6' => ('C6' . " " . xl('Paper Size')),
2585 'C7' => ('C7' . " " . xl('Paper Size')),
2586 'C8' => ('C8' . " " . xl('Paper Size')),
2587 'C9' => ('C9' . " " . xl('Paper Size')),
2588 'C10' => ('C10' . " " . xl('Paper Size')),
2589 'RA0' => ('RA0' . " " . xl('Paper Size')),
2590 'RA1' => ('RA1' . " " . xl('Paper Size')),
2591 'RA2' => ('RA2' . " " . xl('Paper Size')),
2592 'RA3' => ('RA3' . " " . xl('Paper Size')),
2593 'RA4' => ('RA4' . " " . xl('Paper Size')),
2594 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2595 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2596 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2597 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2598 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2600 'LETTER', // default = tree menu
2601 xl('Rx Paper Size')
2603 'rx_left_margin' => array(
2604 xl('Rx Left Margin (px)'),
2605 'num',
2606 '30',
2607 xl('Rx Left Margin (px)')
2609 'rx_right_margin' => array(
2610 xl('Rx Right Margin (px)'),
2611 'num',
2612 '30',
2613 xl('Rx Right Margin (px)')
2615 'rx_top_margin' => array(
2616 xl('Rx Top Margin (px)'),
2617 'num',
2618 '72',
2619 xl('Rx Top Margin (px)')
2621 'rx_bottom_margin' => array(
2622 xl('Rx Bottom Margin (px)'),
2623 'num',
2624 '30',
2625 xl('Rx Bottom Margin (px)')
2629 'PDF' => array (
2630 'pdf_layout' => array (
2631 xl('Layout'),
2632 array(
2633 'P' => xl('Portrait'),
2634 'L' => xl('Landscape')
2636 'P', //defaut
2637 xl("Choose Layout Direction"),
2639 'pdf_language' => array (
2640 xl('PDF Language'),
2641 array(
2642 'aa' => xl('Afar'),
2643 'af' => xl('Afrikaans'),
2644 'ak' => xl('Akan'),
2645 'sq' => xl('Albanian'),
2646 'am' => xl('Amharic'),
2647 'ar' => xl('Arabic'),
2648 'an' => xl('Aragonese'),
2649 'hy' => xl('Armenian'),
2650 'as' => xl('Assamese'),
2651 'av' => xl('Avaric'),
2652 'ae' => xl('Avestan'),
2653 'ay' => xl('Aymara'),
2654 'az' => xl('Azerbaijani'),
2655 'bm' => xl('Bambara'),
2656 'ba' => xl('Bashkir'),
2657 'eu' => xl('Basque'),
2658 'be' => xl('Belarusian'),
2659 'bn' => xl('Bengali- Bangla'),
2660 'bh' => xl('Bihari'),
2661 'bi' => xl('Bislama'),
2662 'bs' => xl('Bosnian'),
2663 'br' => xl('Breton'),
2664 'bg' => xl('Bulgarian'),
2665 'my' => xl('Burmese'),
2666 'ca' => xl('Catalan- Valencian'),
2667 'ch' => xl('Chamorro'),
2668 'ce' => xl('Chechen'),
2669 'ny' => xl('Chichewa- Chewa- Nyanja'),
2670 'zh' => xl('Chinese'),
2671 'cv' => xl('Chuvash'),
2672 'kw' => xl('Cornish'),
2673 'co' => xl('Corsican'),
2674 'cr' => xl('Cree'),
2675 'hr' => xl('Croatian'),
2676 'cs' => xl('Czech'),
2677 'da' => xl('Danish'),
2678 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2679 'nl' => xl('Dutch'),
2680 'dz' => xl('Dzongkha'),
2681 'en' => xl('English'),
2682 'eo' => xl('Esperanto'),
2683 'et' => xl('Estonian'),
2684 'ee' => xl('Ewe'),
2685 'fo' => xl('Faroese'),
2686 'fj' => xl('Fijian'),
2687 'fi' => xl('Finnish'),
2688 'fr' => xl('French'),
2689 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2690 'gl' => xl('Galician'),
2691 'ka' => xl('Georgian'),
2692 'de' => xl('German'),
2693 'el' => xl('Greek, Modern'),
2694 'gn' => xl('Guaraní'),
2695 'gu' => xl('Gujarati'),
2696 'ht' => xl('Haitian- Haitian Creole'),
2697 'ha' => xl('Hausa'),
2698 'he' => xl('Hebrew (modern)'),
2699 'hz' => xl('Herero'),
2700 'hi' => xl('Hindi'),
2701 'ho' => xl('Hiri Motu'),
2702 'hu' => xl('Hungarian'),
2703 'ia' => xl('Interlingua'),
2704 'id' => xl('Indonesian'),
2705 'ie' => xl('Interlingue'),
2706 'ga' => xl('Irish'),
2707 'ig' => xl('Igbo'),
2708 'ik' => xl('Inupiaq'),
2709 'io' => xl('Ido'),
2710 'is' => xl('Icelandic'),
2711 'it' => xl('Italian'),
2712 'iu' => xl('Inuktitut'),
2713 'ja' => xl('Japanese'),
2714 'jv' => xl('Javanese'),
2715 'kl' => xl('Kalaallisut, Greenlandic'),
2716 'kn' => xl('Kannada'),
2717 'kr' => xl('Kanuri'),
2718 'ks' => xl('Kashmiri'),
2719 'kk' => xl('Kazakh'),
2720 'km' => xl('Khmer'),
2721 'ki' => xl('Kikuyu, Gikuyu'),
2722 'rw' => xl('Kinyarwanda'),
2723 'ky' => xl('Kyrgyz'),
2724 'kv' => xl('Komi'),
2725 'kg' => xl('Kongo'),
2726 'ko' => xl('Korean'),
2727 'ku' => xl('Kurdish'),
2728 'kj' => xl('Kwanyama, Kuanyama'),
2729 'la' => xl('Latin'),
2730 'lb' => xl('Luxembourgish, Letzeburgesch'),
2731 'lg' => xl('Ganda'),
2732 'li' => xl('Limburgish, Limburgan, Limburger'),
2733 'ln' => xl('Lingala'),
2734 'lo' => xl('Lao'),
2735 'lt' => xl('Lithuanian'),
2736 'lu' => xl('Luba-Katanga'),
2737 'lv' => xl('Latvian'),
2738 'gv' => xl('Manx'),
2739 'mk' => xl('Macedonian'),
2740 'mg' => xl('Malagasy'),
2741 'ms' => xl('Malay'),
2742 'ml' => xl('Malayalam'),
2743 'mt' => xl('Maltese'),
2744 'mi' => xl('Māori'),
2745 'mr' => xl('Marathi (Marāṭhī)'),
2746 'mh' => xl('Marshallese'),
2747 'mn' => xl('Mongolian'),
2748 'na' => xl('Nauru'),
2749 'nv' => xl('Navajo, Navaho'),
2750 'nb' => xl('Norwegian Bokmål'),
2751 'nd' => xl('North Ndebele'),
2752 'ne' => xl('Nepali'),
2753 'ng' => xl('Ndonga'),
2754 'nn' => xl('Norwegian Nynorsk'),
2755 'no' => xl('Norwegian'),
2756 'ii' => xl('Nuosu'),
2757 'nr' => xl('South Ndebele'),
2758 'oc' => xl('Occitan'),
2759 'oj' => xl('Ojibwe, Ojibwa'),
2760 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2761 'om' => xl('Oromo'),
2762 'or' => xl('Oriya'),
2763 'os' => xl('Ossetian, Ossetic'),
2764 'pa' => xl('Panjabi, Punjabi'),
2765 'pi' => xl('Pāli'),
2766 'fa' => xl('Persian (Farsi)'),
2767 'pl' => xl('Polish'),
2768 'ps' => xl('Pashto, Pushto'),
2769 'pt' => xl('Portuguese'),
2770 'qu' => xl('Quechua'),
2771 'rm' => xl('Romansh'),
2772 'rn' => xl('Kirundi'),
2773 'ro' => xl('Romanian'),
2774 'ru' => xl('Russian'),
2775 'sa' => xl('Sanskrit (Saṁskṛta)'),
2776 'sc' => xl('Sardinian'),
2777 'sd' => xl('Sindhi'),
2778 'se' => xl('Northern Sami'),
2779 'sm' => xl('Samoan'),
2780 'sg' => xl('Sango'),
2781 'sr' => xl('Serbian'),
2782 'gd' => xl('Scottish Gaelic- Gaelic'),
2783 'sn' => xl('Shona'),
2784 'si' => xl('Sinhala, Sinhalese'),
2785 'sk' => xl('Slovak'),
2786 'sl' => xl('Slovene'),
2787 'so' => xl('Somali'),
2788 'st' => xl('Southern Sotho'),
2789 'es' => xl('Spanish- Castilian'),
2790 'su' => xl('Sundanese'),
2791 'sw' => xl('Swahili'),
2792 'ss' => xl('Swati'),
2793 'sv' => xl('Swedish'),
2794 'ta' => xl('Tamil'),
2795 'te' => xl('Telugu'),
2796 'tg' => xl('Tajik'),
2797 'th' => xl('Thai'),
2798 'ti' => xl('Tigrinya'),
2799 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2800 'tk' => xl('Turkmen'),
2801 'tl' => xl('Tagalog'),
2802 'tn' => xl('Tswana'),
2803 'to' => xl('Tonga (Tonga Islands)'),
2804 'tr' => xl('Turkish'),
2805 'ts' => xl('Tsonga'),
2806 'tt' => xl('Tatar'),
2807 'tw' => xl('Twi'),
2808 'ty' => xl('Tahitian'),
2809 'ug' => xl('Uyghur, Uighur'),
2810 'uk' => xl('Ukrainian'),
2811 'ur' => xl('Urdu'),
2812 'uz' => xl('Uzbek'),
2813 've' => xl('Venda'),
2814 'vi' => xl('Vietnamese'),
2815 'vo' => xl('Volapük'),
2816 'wa' => xl('Walloon'),
2817 'cy' => xl('Welsh'),
2818 'wo' => xl('Wolof'),
2819 'fy' => xl('Western Frisian'),
2820 'xh' => xl('Xhosa'),
2821 'yi' => xl('Yiddish'),
2822 'yo' => xl('Yoruba'),
2823 'za' => xl('Zhuang, Chuang'),
2824 'zu' => xl('Zulu'),
2826 'en', // default English
2827 xl('Choose PDF languange Preference'),
2829 'pdf_size' => array(
2830 xl('Paper Size'), // Descriptive Name
2831 array(
2832 'LETTER' => xl('Letter Paper Size'),
2833 'LEGAL' => xl('Legal Paper Size'),
2834 'FOLIO' => xl('Folio Paper Size'),
2835 'EXECUTIVE' => xl('Executive Paper Size'),
2836 '4A0' => ('4A0' . " " . xl('Paper Size')),
2837 '2A0' => ('2A0' . " " . xl('Paper Size')),
2838 'A0' => ('A0' . " " . xl('Paper Size')),
2839 'A1' => ('A1' . " " . xl('Paper Size')),
2840 'A2' => ('A2' . " " . xl('Paper Size')),
2841 'A3' => ('A3' . " " . xl('Paper Size')),
2842 'A4' => ('A4' . " " . xl('Paper Size')),
2843 'A5' => ('A5' . " " . xl('Paper Size')),
2844 'A6' => ('A6' . " " . xl('Paper Size')),
2845 'A7' => ('A7' . " " . xl('Paper Size')),
2846 'A8' => ('A8' . " " . xl('Paper Size')),
2847 'A9' => ('A9' . " " . xl('Paper Size')),
2848 'A10' => ('A10' . " " . xl('Paper Size')),
2849 'B0' => ('B0' . " " . xl('Paper Size')),
2850 'B1' => ('B1' . " " . xl('Paper Size')),
2851 'B2' => ('B2' . " " . xl('Paper Size')),
2852 'B3' => ('B3' . " " . xl('Paper Size')),
2853 'B4' => ('B4' . " " . xl('Paper Size')),
2854 'B5' => ('B5' . " " . xl('Paper Size')),
2855 'B6' => ('B6' . " " . xl('Paper Size')),
2856 'B7' => ('B7' . " " . xl('Paper Size')),
2857 'B8' => ('B8' . " " . xl('Paper Size')),
2858 'B9' => ('B9' . " " . xl('Paper Size')),
2859 'B10' => ('B10' . " " . xl('Paper Size')),
2860 'C0' => ('C0' . " " . xl('Paper Size')),
2861 'C1' => ('C1' . " " . xl('Paper Size')),
2862 'C2' => ('C2' . " " . xl('Paper Size')),
2863 'C3' => ('C3' . " " . xl('Paper Size')),
2864 'C4' => ('C4' . " " . xl('Paper Size')),
2865 'C5' => ('C5' . " " . xl('Paper Size')),
2866 'C6' => ('C6' . " " . xl('Paper Size')),
2867 'C7' => ('C7' . " " . xl('Paper Size')),
2868 'C8' => ('C8' . " " . xl('Paper Size')),
2869 'C9' => ('C9' . " " . xl('Paper Size')),
2870 'C10' => ('C10' . " " . xl('Paper Size')),
2871 'RA0' => ('RA0' . " " . xl('Paper Size')),
2872 'RA1' => ('RA1' . " " . xl('Paper Size')),
2873 'RA2' => ('RA2' . " " . xl('Paper Size')),
2874 'RA3' => ('RA3' . " " . xl('Paper Size')),
2875 'RA4' => ('RA4' . " " . xl('Paper Size')),
2876 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2877 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2878 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2879 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2880 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2882 'LETTER',
2883 xl('Choose Paper Size')
2885 'pdf_left_margin' => array(
2886 xl('Left Margin (mm)'),
2887 'num',
2888 '5',
2889 xl('Left Margin (mm)')
2891 'pdf_right_margin' => array(
2892 xl('Right Margin (mm)'),
2893 'num',
2894 '5',
2895 xl('Right Margin (mm)')
2897 'pdf_top_margin' => array(
2898 xl('Top Margin (mm)'),
2899 'num',
2900 '5',
2901 xl('Top Margin (mm)')
2903 'pdf_bottom_margin' => array(
2904 xl('Bottom Margin (px)'),
2905 'num',
2906 '8',
2907 xl('Bottom Margin (px)')
2909 'pdf_output' => array (
2910 xl('Output Type'),
2911 array(
2912 'D' => xl('Download'),
2913 'I' => xl('Inline')
2915 'D', //defaut
2916 xl("Choose Download or Display Inline"),
2919 'chart_label_type' => array(
2920 xl('Patient Label Type'),
2921 array(
2922 '0' => xl('None'),
2923 '1' => '5160',
2924 '2' => '5161',
2925 '3' => '5162'
2927 '1', // default
2928 xl('Avery Label type for printing patient labels from popups in left nav screen'),
2931 'barcode_label_type' => array(
2932 xl('Barcode Label Type'),
2933 array(
2934 '0' => xl('None'),
2935 '1' => 'std25',
2936 '2' => 'int25',
2937 '3' => 'ean8',
2938 '4' => 'ean13',
2939 '5' => 'upc',
2940 '6' => 'code11',
2941 '7' => 'code39',
2942 '8' => 'code93',
2943 '9' => 'code128',
2944 '10' => 'codabar',
2945 '11' => 'msi',
2946 '12' => 'datamatrix'
2948 '9', // default = None
2949 xl('Barcode type for printing barcode labels from popups in left nav screen.')
2952 'addr_label_type' => array(
2953 xl('Print Patient Address Label'),
2954 'bool', // data type
2955 '1', // default = false
2956 xl('Select to print patient address labels from popups in left nav screen.')