added option to disable safe apostrophes for translations (#515)
[openemr.git] / library / globals.inc.php
blobde29a586658a68bf44d70d13546106493fdd4137
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')
1422 'patient_portal_appt_display_num' => array(
1423 xl('Appointments - Onsite Patient Portal - Number to Display'),
1424 'num',
1425 '20',
1426 xl('Number of Appointments to display in the Onsite Patient Portal')
1429 'appt_display_sets_option' => array(
1430 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1431 'bool', // data type
1432 '1', // default
1433 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1436 'appt_display_sets_color_1' => array(
1437 xl('Appointment Display Sets - Color 1'),
1438 'color_code',
1439 '#FFFFFF',
1440 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).')
1443 'appt_display_sets_color_2' => array(
1444 xl('Appointment Display Sets - Color 2'),
1445 'color_code',
1446 '#E6E6FF',
1447 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).')
1450 'appt_display_sets_color_3' => array(
1451 xl('Appointment Display Sets - Color 3'),
1452 'color_code',
1453 '#E6FFE6',
1454 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1457 'appt_display_sets_color_4' => array(
1458 xl('Appointment Display Sets - Color 4'),
1459 'color_code',
1460 '#FFE6FF',
1461 xl('Color for the last set when not all member appointments are displayed.')
1464 'appt_recurrences_widget' => array(
1465 xl('Recurrent Appointment Display Widget'),
1466 'bool', // data type
1467 '1', // default
1468 xl('Display the recurrent appointment widget in the patient summary.')
1471 'num_past_appointments_to_show' => array(
1472 xl('Past Appointment Display Widget'),
1473 'num', // data type
1474 '0', // default = false
1475 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)')
1478 'docs_see_entire_calendar' => array(
1479 xl('Providers See Entire Calendar'),
1480 'bool', // data type
1481 '0', // default
1482 xl('Check this if you want providers to see all appointments by default and not just their own.')
1485 'auto_create_new_encounters' => array(
1486 xl('Auto-Create New Encounters'),
1487 'bool', // data type
1488 '1', // default
1489 xl('Automatically create a new encounter when an appointment check in status is selected.')
1492 'disable_pat_trkr' => array(
1493 xl('Disable Patient Flow Board'),
1494 'bool', // data type
1495 '0', // default
1496 xl('Do not display the patient flow board.')
1499 'ptkr_visit_reason' => array(
1500 xl('Show Visit Reason in Patient Flow Board'),
1501 'bool', // data type
1502 '0', // default = false
1503 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1506 'ptkr_show_pid' => array(
1507 xl('Show Patient ID in Patient Flow Board'),
1508 'bool', // data type
1509 '1', // default = true
1510 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1513 'ptkr_show_encounter' => array(
1514 xl('Show Patient Encounter Number in Patient Flow Board'),
1515 'bool', // data type
1516 '1', // default = true
1517 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1520 'pat_trkr_timer' => array(
1521 xl('Patient Flow Board Timer Interval'),
1522 array(
1523 '0' => 'No automatic refresh',
1524 '0:10' => '10',
1525 '0:20' => '20',
1526 '0:30' => '30',
1527 '0:40' => '40',
1528 '0:50' => '50',
1529 '0:59' => '60',
1531 '0:20', // default
1532 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1535 'checkout_roll_off' => array(
1536 xl('Number of Minutes to display completed checkouts'),
1537 'num',
1538 '0', // default
1539 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1542 'drug_screen' => array(
1543 xl('Enable Random Drug Testing'),
1544 'bool', // data type
1545 '0', // default
1546 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1549 'drug_testing_percentage' => array(
1550 xl('Percentage of Patients to Drug Test'),
1551 'num',
1552 '33', // default
1553 xl('Percentage of Patients to select for Random Drug Testing.')
1556 'maximum_drug_test_yearly' => array(
1557 xl('Maximum number of times a Patient can be tested in a year'),
1558 'num',
1559 '0', // default
1560 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1563 'submit_changes_for_all_appts_at_once' => array(
1564 xl('Submit Changes For All Appts At Once'),
1565 'bool', // data type
1566 '1', // default
1567 xl('Enables to submit changes for all appointments of a recurrence at once.')
1573 // Security Tab
1575 'Security' => array(
1577 'timeout' => array(
1578 xl('Idle Session Timeout Seconds'),
1579 'num', // data type
1580 '7200', // default
1581 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1584 'secure_password' => array(
1585 xl('Require Strong Passwords'),
1586 'bool', // data type
1587 '0', // default
1588 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1591 'password_history' => array(
1592 xl('Require Unique Passwords'),
1593 'bool', // data type
1594 '0', // default
1595 xl('Means none of last three passwords are allowed when changing a password.')
1597 'password_compatibility' => array(
1598 xl('Permit unsalted passwords'),
1599 'bool', // data type
1600 '1', // default
1601 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')
1604 'password_expiration_days' => array(
1605 xl('Default Password Expiration Days'),
1606 'num', // data type
1607 '0', // default
1608 xl('Default password expiration period in days. 0 means this feature is disabled.')
1611 'password_grace_time' => array(
1612 xl('Password Expiration Grace Period'),
1613 'num', // data type
1614 '0', // default
1615 xl('Period in days where a user may login with an expired password.')
1618 'is_client_ssl_enabled' => array(
1619 xl('Enable Client SSL'),
1620 'bool', // data type
1621 '0', // default
1622 xl('Enable client SSL certificate authentication.')
1625 'certificate_authority_crt' => array(
1626 xl('Path to CA Certificate File'),
1627 'text', // data type
1628 '', // default
1629 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1632 'certificate_authority_key' => array(
1633 xl('Path to CA Key File'),
1634 'text', // data type
1635 '', // default
1636 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1639 'client_certificate_valid_in_days' => array(
1640 xl('Client Certificate Expiration Days'),
1641 'num', // data type
1642 '365', // default
1643 xl('Number of days that the client certificate is valid.')
1646 'Emergency_Login_email_id' => array(
1647 xl('Emergency Login Email Address'),
1648 'text', // data type
1649 '', // default
1650 xl('Email address, if any, to receive emergency login user activation messages.')
1652 'new_validate' => array(
1653 xl('New form validation'),
1654 'bool',
1655 '1',
1656 xl('New form validation')
1658 'allow_multiple_databases' => array(
1659 xl('Allow multiple databases'),
1660 'bool',
1661 '0',
1662 xl('Allow to use with multiple database')
1664 'safe_key_database' => array(
1665 xl('Safe key database'),
1666 'text', // data type
1667 '', // default
1668 xl('Key for multiple database credentials encryption')
1672 // Notifications Tab
1674 'Notifications' => array(
1676 'patient_reminder_sender_name' => array(
1677 xl('Patient Reminder Sender Name'),
1678 'text', // data type
1679 '', // default
1680 xl('Name of the sender for patient reminders.')
1683 'patient_reminder_sender_email' => array(
1684 xl('Patient Reminder Sender Email'),
1685 'text', // data type
1686 '', // default
1687 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.')
1690 'practice_return_email_path' => array(
1691 xl('Notification Email Address'),
1692 'text', // data type
1693 '', // default
1694 xl('Email address, if any, to receive administrative notifications.')
1697 'EMAIL_METHOD' => array(
1698 xl('Email Transport Method'),
1699 array(
1700 'PHPMAIL' => 'PHPMAIL',
1701 'SENDMAIL' => 'SENDMAIL',
1702 'SMTP' => 'SMTP',
1704 'SMTP', // default
1705 xl('Method for sending outgoing email.')
1708 'SMTP_HOST' => array(
1709 xl('SMTP Server Hostname'),
1710 'text', // data type
1711 'localhost', // default
1712 xl('If SMTP is used, the server`s hostname or IP address.')
1715 'SMTP_PORT' => array(
1716 xl('SMTP Server Port Number'),
1717 'num', // data type
1718 '25', // default
1719 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1722 'SMTP_USER' => array(
1723 xl('SMTP User for Authentication'),
1724 'text', // data type
1725 '', // default
1726 xl('Must be empty if SMTP authentication is not used.')
1729 'SMTP_PASS' => array(
1730 xl('SMTP Password for Authentication'),
1731 'text', // data type
1732 '', // default
1733 xl('Must be empty if SMTP authentication is not used.')
1736 'SMTP_SECURE' => array(
1737 xl('SMTP Security Protocol'),
1738 array(
1739 '' => xl('None'),
1740 'ssl' => 'SSL',
1741 'tls' => 'TLS'
1744 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1747 'EMAIL_NOTIFICATION_HOUR' => array(
1748 xl('Email Notification Hours'),
1749 'num', // data type
1750 '50', // default
1751 xl('Number of hours in advance to send email notifications.')
1754 'SMS_NOTIFICATION_HOUR' => array(
1755 xl('SMS Notification Hours'),
1756 'num', // data type
1757 '50', // default
1758 xl('Number of hours in advance to send SMS notifications.')
1761 'SMS_GATEWAY_USENAME' => array(
1762 xl('SMS Gateway Username'),
1763 'text', // data type
1764 '', // default
1765 xl('Username for SMS Gateway.')
1768 'SMS_GATEWAY_PASSWORD' => array(
1769 xl('SMS Gateway Password'),
1770 'text', // data type
1771 '', // default
1772 xl('Password for SMS Gateway.')
1775 'SMS_GATEWAY_APIKEY' => array(
1776 xl('SMS Gateway API Key'),
1777 'text', // data type
1778 '', // default
1779 xl('API key for SMS Gateway.')
1782 'phone_notification_hour' => array(
1783 xl('Phone Notification Hour'),
1784 'num', // data type
1785 '50', // default
1786 xl('Number of hours in advance to send Phone notification.')
1789 'phone_gateway_username' => array(
1790 xl('Phone Gateway Username'),
1791 'text', // data type
1792 '', // default
1793 xl('Username for Phone Gateway.')
1796 'phone_gateway_password' => array(
1797 xl('Phone Gateway Password'),
1798 'text', // data type
1799 '', // default
1800 xl('Password for Phone Gateway.')
1803 'phone_gateway_url' => array(
1804 xl('Phone Gateway URL'),
1805 'text', // data type
1806 '', // default
1807 xl('URL for Phone Gateway.')
1812 // CDR (Clinical Decision Rules)
1814 'CDR' => array(
1816 'enable_cdr' => array(
1817 xl('Enable Clinical Decisions Rules (CDR)'),
1818 'bool', // data type
1819 '1', // default
1820 xl('Enable Clinical Decisions Rules (CDR)')
1823 'enable_allergy_check' => array(
1824 xl('Enable Allergy Check'),
1825 'bool', // data type
1826 '1', // default
1827 xl('Enable Allergy Check Against Medications and Prescriptions')
1830 'enable_alert_log' => array(
1831 xl('Enable Alert Log'),
1832 'bool', // data type
1833 '1', // default
1834 xl('Enable Alert Logging')
1837 'enable_cdr_new_crp' => array(
1838 xl('Enable Clinical Passive New Reminder(s) Popup'),
1839 'bool', // data type
1840 '1', // default
1841 xl('Enable Clinical Passive New Reminder(s) Popup')
1844 'enable_cdr_crw' => array(
1845 xl('Enable Clinical Passive Reminder Widget'),
1846 'bool', // data type
1847 '1', // default
1848 xl('Enable Clinical Passive Reminder Widget')
1851 'enable_cdr_crp' => array(
1852 xl('Enable Clinical Active Reminder Popup'),
1853 'bool', // data type
1854 '1', // default
1855 xl('Enable Clinical Active Reminder Popup')
1858 'enable_cdr_prw' => array(
1859 xl('Enable Patient Reminder Widget'),
1860 'bool', // data type
1861 '1', // default
1862 xl('Enable Patient Reminder Widget')
1865 'enable_cqm' => array(
1866 xl('Enable CQM Reporting'),
1867 'bool', // data type
1868 '1', // default
1869 xl('Enable Clinical Quality Measure (CQM) Reporting')
1872 'pqri_registry_name' => array(
1873 xl('PQRI Registry Name'),
1874 'text', // data type
1875 'Model Registry', // default
1876 xl('PQRI Registry Name')
1879 'pqri_registry_id' => array(
1880 xl('PQRI Registry ID'),
1881 'text', // data type
1882 '125789123', // default
1883 xl('PQRI Registry ID')
1886 'enable_amc' => array(
1887 xl('Enable AMC Reporting'),
1888 'bool', // data type
1889 '1', // default
1890 xl('Enable Automated Measure Calculations (AMC) Reporting')
1893 'enable_amc_prompting' => array(
1894 xl('Enable AMC Prompting'),
1895 'bool', // data type
1896 '1', // default
1897 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1900 'enable_amc_tracking' => array(
1901 xl('Enable AMC Tracking'),
1902 'bool', // data type
1903 '1', // default
1904 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
1907 'cdr_report_nice' => array(
1908 xl('CDR Reports Processing Priority'),
1909 array(
1910 '' => xl('Default Priority'),
1911 '5' => xl('Moderate Priority'),
1912 '10' => xl('Moderate/Low Priority'),
1913 '15' => xl('Low Priority'),
1914 '20' => xl('Lowest Priority')
1916 '', // default
1917 xl('Set processing priority for CDR engine based reports.')
1920 'pat_rem_clin_nice' => array(
1921 xl('Patient Reminder Creation Processing Priority'),
1922 array(
1923 '' => xl('Default Priority'),
1924 '5' => xl('Moderate Priority'),
1925 '10' => xl('Moderate/Low Priority'),
1926 '15' => xl('Low Priority'),
1927 '20' => xl('Lowest Priority')
1929 '', // default
1930 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
1933 'report_itemizing_standard' => array(
1934 xl('Enable Standard Report Itemization'),
1935 'bool', // data type
1936 '1', // default
1937 xl('Enable Itemization of Standard Clinical Rules Reports')
1940 'report_itemizing_cqm' => array(
1941 xl('Enable CQM Report Itemization'),
1942 'bool', // data type
1943 '1', // default
1944 xl('Enable Itemization of CQM Reports')
1947 'report_itemizing_amc' => array(
1948 xl('Enable AMC Report Itemization'),
1949 'bool', // data type
1950 '1', // default
1951 xl('Enable Itemization of AMC Reports')
1953 'dated_reminders_max_alerts_to_show' => array(
1954 xl('Dated reminders maximum alerts to show'),
1955 'num', // data type
1956 '5', // default
1957 xl('Dated reminders maximum alerts to show')
1961 // Logging
1963 'Logging' => array(
1965 'enable_auditlog' => array(
1966 xl('Enable Audit Logging'),
1967 'bool', // data type
1968 '1', // default
1969 xl('Enable Audit Logging')
1972 'audit_events_patient-record' => array(
1973 xl('Audit Logging Patient Record'),
1974 'bool', // data type
1975 '1', // default
1976 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1979 'audit_events_scheduling' => array(
1980 xl('Audit Logging Scheduling'),
1981 'bool', // data type
1982 '1', // default
1983 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1986 'audit_events_order' => array(
1987 xl('Audit Logging Order'),
1988 'bool', // data type
1989 '1', // default
1990 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1993 'audit_events_security-administration' => array(
1994 xl('Audit Logging Security Administration'),
1995 'bool', // data type
1996 '1', // default
1997 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2000 'audit_events_backup' => array(
2001 xl('Audit Logging Backups'),
2002 'bool', // data type
2003 '1', // default
2004 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2007 'audit_events_other' => array(
2008 xl('Audit Logging Miscellaneous'),
2009 'bool', // data type
2010 '1', // default
2011 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2014 'audit_events_query' => array(
2015 xl('Audit Logging SELECT Query'),
2016 'bool', // data type
2017 '0', // default
2018 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2021 'audit_events_cdr' => array(
2022 xl('Audit CDR Engine Queries'),
2023 'bool', // data type
2024 '0', // default
2025 xl('Enable logging of CDR Engine Queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
2028 'enable_atna_audit' => array(
2029 xl('Enable ATNA Auditing'),
2030 'bool', // data type
2031 '0', // default
2032 xl('Enable Audit Trail and Node Authentication (ATNA).')
2035 'atna_audit_host' => array(
2036 xl('ATNA audit host'),
2037 'text', // data type
2038 '', // default
2039 xl('The hostname of the ATNA audit repository machine.')
2042 'atna_audit_port' => array(
2043 xl('ATNA audit port'),
2044 'text', // data type
2045 '6514', // default
2046 xl('Listening port of the RFC 5425 TLS syslog server.')
2049 'atna_audit_localcert' => array(
2050 xl('ATNA audit local certificate'),
2051 'text', // data type
2052 '', // default
2053 xl('Certificate to send to RFC 5425 TLS syslog server.')
2056 'atna_audit_cacert' => array(
2057 xl('ATNA audit CA certificate'),
2058 'text', // data type
2059 '', // default
2060 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2063 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
2064 'enable_auditlog_encryption' => array(
2065 xl('Enable Audit Log Encryption'),
2066 'bool', // data type
2067 '0', // default
2068 xl('Enable Audit Log Encryption')
2071 'billing_log_option' => array(
2072 xl('Billing Log Option'),
2073 array(
2074 '1' => xl('Billing Log Append'),
2075 '2' => xl('Billing Log Overwrite')
2077 '1', // default
2078 xl('Billing log setting to append or overwrite the log file.')
2081 'gbl_print_log_option' => array(
2082 xl('Printing Log Option'),
2083 array(
2084 '0' => xl('No logging'),
2085 '1' => xl('Hide print feature'),
2086 '2' => xl('Log entire document'),
2088 '0', // default
2089 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2094 // Miscellaneous Tab
2096 'Miscellaneous' => array(
2098 'mysql_bin_dir' => array(
2099 xl('Path to MySQL Binaries'),
2100 'text', // data type
2101 $mysql_bin_dir, // default
2102 xl('Full path to directory containing MySQL executables.')
2105 'perl_bin_dir' => array(
2106 xl('Path to Perl Binaries'),
2107 'text', // data type
2108 $perl_bin_dir, // default
2109 xl('Full path to directory containing Perl executables.')
2112 'temporary_files_dir' => array(
2113 xl('Path to Temporary Files'),
2114 'text', // data type
2115 $temporary_files_dir, // default
2116 xl('Full path to directory used for temporary files.')
2119 'backup_log_dir' => array(
2120 xl('Path for Event Log Backup'),
2121 'text', // data type
2122 $backup_log_dir, // default
2123 xl('Full path to directory for event log backup.')
2126 'state_data_type' => array(
2127 xl('State Data Type'),
2128 array(
2129 '2' => xl('Text field'),
2130 '1' => xl('Single-selection list'),
2131 '26' => xl('Single-selection list with ability to add to the list'),
2133 '26', // default
2134 xl('Field type to use for employer or subscriber state in demographics.')
2137 'state_list' => array(
2138 xl('State list'),
2139 'text', // data type
2140 'state', // default
2141 xl('List used by above State Data Type option.')
2144 'state_custom_addlist_widget' => array(
2145 xl('State List Widget Custom Fields'),
2146 'bool', // data type
2147 '1', // default
2148 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2151 'country_data_type' => array(
2152 xl('Country Data Type'),
2153 array(
2154 '2' => xl('Text field'),
2155 '1' => xl('Single-selection list'),
2156 '26' => xl('Single-selection list with ability to add to the list'),
2158 '26', // default
2159 xl('Field type to use for employer or subscriber country in demographics.')
2162 'country_list' => array(
2163 xl('Country list'),
2164 'text', // data type
2165 'country', // default
2166 xl('List used by above Country Data Type option.')
2169 'print_command' => array(
2170 xl('Print Command'),
2171 'text', // data type
2172 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2173 xl('Shell command for printing from the server.')
2176 'default_chief_complaint' => array(
2177 xl('Default Reason for Visit'),
2178 'text', // data type
2180 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2183 'default_new_encounter_form' => array(
2184 xl('Default Encounter Form ID'),
2185 'text', // data type
2187 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
2190 'MedicareReferrerIsRenderer' => array(
2191 xl('Medicare Referrer Is Renderer'),
2192 'bool', // data type
2193 '0', // default = true
2194 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2197 'post_to_date_benchmark' => array(
2198 xl('Financial Close Date (yyyy-mm-dd)'),
2199 'text', // data type
2200 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
2201 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2204 'enable_hylafax' => array(
2205 xl('Enable Hylafax Support'),
2206 'bool', // data type
2207 '0', // default
2208 xl('Enable Hylafax Support')
2211 'hylafax_server' => array(
2212 xl('Hylafax Server'),
2213 'text', // data type
2214 'localhost', // default
2215 xl('Hylafax server hostname.')
2218 'hylafax_basedir' => array(
2219 xl('Hylafax Directory'),
2220 'text', // data type
2221 '/var/spool/fax', // default
2222 xl('Location where Hylafax stores faxes.')
2225 'hylafax_enscript' => array(
2226 xl('Hylafax Enscript Command'),
2227 'text', // data type
2228 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2229 xl('Enscript command used by Hylafax.')
2232 'enable_scanner' => array(
2233 xl('Enable Scanner Support'),
2234 'bool', // data type
2235 '0', // default
2236 xl('Enable Scanner Support')
2239 'scanner_output_directory' => array(
2240 xl('Scanner Directory'),
2241 'text', // data type
2242 '/mnt/scan_docs', // default
2243 xl('Location where scans are stored.')
2247 // Portal Tab
2249 'Portal' => array(
2251 'portal_onsite_enable' => array(
2252 xl('Enable Onsite Patient Portal'),
2253 'bool', // data type
2254 '0',
2255 xl('Enable Onsite Patient Portal.')
2258 'portal_onsite_address' => array(
2259 xl('Onsite Patient Portal Site Address'),
2260 'text', // data type
2261 'https://your_web_site.com/openemr/patients',
2262 xl('Website link for the Onsite Patient Portal.')
2265 'portal_onsite_document_download' => array(
2266 xl('Enable Onsite Patient Portal Document Download'),
2267 'bool', // data type
2268 '1',
2269 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2272 'portal_offsite_enable' => array(
2273 xl('Enable Offsite Patient Portal'),
2274 'bool', // data type
2275 '0',
2276 xl('Enable Offsite Patient Portal.')
2279 'portal_offsite_providerid' => array(
2280 xl('Offsite Patient Portal Provider ID'),
2281 'text', // data type
2283 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2286 'portal_offsite_username' => array(
2287 xl('Offsite Patient Portal Username'),
2288 'text', // data type
2290 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2293 'portal_offsite_password' => array(
2294 xl('Offsite Patient Portal Password'),
2295 'pwd', // data type
2297 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2300 'portal_offsite_address' => array(
2301 xl('Offsite Patient Portal Site Address'),
2302 'text', // data type
2303 'https://ssh.mydocsportal.com/provider.php',
2304 xl('Offsite Https link for the Patient Portal.')
2307 'portal_offsite_address_patient_link' => array(
2308 xl('Offsite Patient Portal Site Address (Patient Link)'),
2309 'text', // data type
2310 'https://ssh.mydocsportal.com',
2311 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2314 // Currently the "CMS Portal" supports WordPress. Other Content Management
2315 // Systems may be supported in the future.
2317 'gbl_portal_cms_enable' => array(
2318 xl('Enable CMS Portal'),
2319 'bool', // data type
2320 '0',
2321 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2324 'gbl_portal_cms_address' => array(
2325 xl('CMS Portal Site Address'),
2326 'text', // data type
2327 'https://your_cms_site.com/',
2328 xl('URL for the WordPress site that supports the portal')
2331 'gbl_portal_cms_username' => array(
2332 xl('CMS Portal Username'),
2333 'text', // data type
2335 xl('Login name of WordPress user for portal access')
2338 'gbl_portal_cms_password' => array(
2339 xl('CMS Portal Password'),
2340 'text', // data type
2342 xl('Password for the above user')
2347 // Connectors Tab
2349 'Connectors' => array(
2351 'erx_enable' => array(
2352 xl('Enable NewCrop eRx Service'),
2353 'bool',
2354 '0',
2355 xl('Enable NewCrop eRx Service.') + ' ' +
2356 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.')
2359 'erx_newcrop_path' => array(
2360 xl('NewCrop eRx Site Address'),
2361 'text',
2362 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2363 xl('URL for NewCrop eRx Site Address.')
2366 'erx_newcrop_path_soap' => array(
2367 xl('NewCrop eRx Web Service Address'),
2368 'text',
2369 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2370 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2373 'erx_soap_ttl_allergies' => array(
2374 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2375 'num',
2376 '21600',
2377 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2380 'erx_soap_ttl_medications' => array(
2381 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2382 'num',
2383 '21600',
2384 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2387 'erx_account_partner_name' => array(
2388 xl('NewCrop eRx Partner Name'),
2389 'text',
2391 xl('Partner Name issued for NewCrop eRx service.')
2394 'erx_account_name' => array(
2395 xl('NewCrop eRx Name'),
2396 'text',
2398 xl('Account Name issued for NewCrop eRx service.')
2401 'erx_account_password' => array(
2402 xl('NewCrop eRx Password'),
2403 'pass',
2405 xl('Account Password issued for NewCrop eRx service.')
2408 'erx_account_id' => array(
2409 xl('NewCrop eRx Account Id'),
2410 'text',
2411 '1',
2412 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2415 'erx_upload_active' => array(
2416 xl('Only upload active prescriptions'),
2417 'bool',
2418 '0',
2419 xl('Only upload active prescriptions to NewCrop eRx.')
2422 'erx_import_status_message' => array(
2423 xl('Enable NewCrop eRx import status message'),
2424 'bool',
2425 '0',
2426 xl('Enable import status message after visiting NewCrop eRx.')
2429 'erx_medication_display' => array(
2430 xl('Do not display NewCrop eRx Medications uploaded'),
2431 'bool',
2432 '0',
2433 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2436 'erx_allergy_display' => array(
2437 xl('Do not display NewCrop eRx Allergy uploaded'),
2438 'bool',
2439 '0',
2440 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2443 'erx_default_patient_country' => array(
2444 xl('NewCrop eRx Default Patient Country'),
2445 array(
2446 '' => '',
2447 'US' => xl('USA'),
2448 'CA' => xl('Canada'),
2449 'MX' => xl('Mexico'),
2452 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2455 'erx_debug_setting' => array(
2456 xl('NewCrop eRx Debug Setting'),
2457 array(
2458 0 => xl('None'),
2459 1 => xl('Request Only'),
2460 2 => xl('Response Only'),
2461 3 => xl('Request & Response'),
2463 '0',
2464 xl('Log all NewCrop eRx Requests and / or Responses.'),
2467 'phimail_enable' => array(
2468 xl('Enable phiMail Direct Messaging Service'),
2469 'bool', // data type
2470 '0',
2471 xl('Enable phiMail Direct Messaging Service')
2474 'phimail_server_address' => array(
2475 xl('phiMail Server Address'),
2476 'text', // data type
2477 'https://phimail.example.com:32541',
2478 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2481 'phimail_username' => array(
2482 xl('phiMail Username'),
2483 'text', // data type
2485 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2488 'phimail_password' => array(
2489 xl('phiMail Password'),
2490 'pass', // data type
2492 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2495 'phimail_notify' => array(
2496 xl('phiMail notification user'),
2497 'text', // data type
2498 'admin',
2499 xl('This user will receive notification of new incoming Direct messages')
2502 'phimail_interval' => array(
2503 xl('phiMail Message Check Interval (minutes)'),
2504 'num', // data type
2505 '5',
2506 xl('Interval between message checks (set to zero for manual checks only)')
2509 'phimail_ccd_enable' => array(
2510 xl('phiMail Allow CCD Send'),
2511 'bool', // data type
2512 '0',
2513 xl('phiMail Allow CCD Send')
2516 'phimail_ccr_enable' => array(
2517 xl('phiMail Allow CCR Send'),
2518 'bool', // data type
2519 '0',
2520 xl('phiMail Allow CCR Send')
2524 'Rx' => array(
2525 'rx_enable_DEA' => array(
2526 xl('Rx Enable DEA #'),
2527 'bool', // data type
2528 '1',
2529 xl('Rx Enable DEA #')
2531 'rx_show_DEA' => array(
2532 xl('Rx Show DEA #'),
2533 'bool', // data type
2534 '0',
2535 xl('Rx Show DEA #')
2537 'rx_enable_NPI' => array(
2538 xl('Rx Enable NPI'),
2539 'bool', // data type
2540 '0',
2541 xl('Rx Enable NPI')
2543 'rx_show_NPI' => array(
2544 xl('Rx Show NPI'),
2545 'bool', // data type
2546 '0',
2547 xl('Rx Show NPI')
2549 'rx_enable_SLN' => array(
2550 xl('Rx Enable State Lic. #'),
2551 'bool', // data type
2552 '0',
2553 xl('Rx Enable State Lic. #')
2555 'rx_show_SLN' => array(
2556 xl('Rx Show State Lic. #'),
2557 'bool', // data type
2558 '0',
2559 xl('Rx Show State Lic. #')
2561 'rx_show_drug-drug' => array(
2562 xl('Rx NLM Drug-Drug'),
2563 'bool', // data type
2564 '0',
2565 xl('Rx NLM Drug-Drug')
2567 'rx_paper_size' => array(
2568 xl('Rx Paper Size'), // descriptive name
2569 array(
2570 'LETTER' => xl('Letter Paper Size'),
2571 'LEGAL' => xl('Legal Paper Size'),
2572 'FOLIO' => xl('Folio Paper Size'),
2573 'EXECUTIVE' => xl('Executive Paper Size'),
2574 '4A0' => ('4A0' . " " . xl('Paper Size')),
2575 '2A0' => ('2A0' . " " . xl('Paper Size')),
2576 'A0' => ('A0' . " " . xl('Paper Size')),
2577 'A1' => ('A1' . " " . xl('Paper Size')),
2578 'A2' => ('A2' . " " . xl('Paper Size')),
2579 'A3' => ('A3' . " " . xl('Paper Size')),
2580 'A4' => ('A4' . " " . xl('Paper Size')),
2581 'A5' => ('A5' . " " . xl('Paper Size')),
2582 'A6' => ('A6' . " " . xl('Paper Size')),
2583 'A7' => ('A7' . " " . xl('Paper Size')),
2584 'A8' => ('A8' . " " . xl('Paper Size')),
2585 'A9' => ('A9' . " " . xl('Paper Size')),
2586 'A10' => ('A10' . " " . xl('Paper Size')),
2587 'B0' => ('B0' . " " . xl('Paper Size')),
2588 'B1' => ('B1' . " " . xl('Paper Size')),
2589 'B2' => ('B2' . " " . xl('Paper Size')),
2590 'B3' => ('B3' . " " . xl('Paper Size')),
2591 'B4' => ('B4' . " " . xl('Paper Size')),
2592 'B5' => ('B5' . " " . xl('Paper Size')),
2593 'B6' => ('B6' . " " . xl('Paper Size')),
2594 'B7' => ('B7' . " " . xl('Paper Size')),
2595 'B8' => ('B8' . " " . xl('Paper Size')),
2596 'B9' => ('B9' . " " . xl('Paper Size')),
2597 'B10' => ('B10' . " " . xl('Paper Size')),
2598 'C0' => ('C0' . " " . xl('Paper Size')),
2599 'C1' => ('C1' . " " . xl('Paper Size')),
2600 'C2' => ('C2' . " " . xl('Paper Size')),
2601 'C3' => ('C3' . " " . xl('Paper Size')),
2602 'C4' => ('C4' . " " . xl('Paper Size')),
2603 'C5' => ('C5' . " " . xl('Paper Size')),
2604 'C6' => ('C6' . " " . xl('Paper Size')),
2605 'C7' => ('C7' . " " . xl('Paper Size')),
2606 'C8' => ('C8' . " " . xl('Paper Size')),
2607 'C9' => ('C9' . " " . xl('Paper Size')),
2608 'C10' => ('C10' . " " . xl('Paper Size')),
2609 'RA0' => ('RA0' . " " . xl('Paper Size')),
2610 'RA1' => ('RA1' . " " . xl('Paper Size')),
2611 'RA2' => ('RA2' . " " . xl('Paper Size')),
2612 'RA3' => ('RA3' . " " . xl('Paper Size')),
2613 'RA4' => ('RA4' . " " . xl('Paper Size')),
2614 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2615 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2616 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2617 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2618 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2620 'LETTER', // default = tree menu
2621 xl('Rx Paper Size')
2623 'rx_left_margin' => array(
2624 xl('Rx Left Margin (px)'),
2625 'num',
2626 '30',
2627 xl('Rx Left Margin (px)')
2629 'rx_right_margin' => array(
2630 xl('Rx Right Margin (px)'),
2631 'num',
2632 '30',
2633 xl('Rx Right Margin (px)')
2635 'rx_top_margin' => array(
2636 xl('Rx Top Margin (px)'),
2637 'num',
2638 '72',
2639 xl('Rx Top Margin (px)')
2641 'rx_bottom_margin' => array(
2642 xl('Rx Bottom Margin (px)'),
2643 'num',
2644 '30',
2645 xl('Rx Bottom Margin (px)')
2649 'PDF' => array (
2650 'pdf_layout' => array (
2651 xl('Layout'),
2652 array(
2653 'P' => xl('Portrait'),
2654 'L' => xl('Landscape')
2656 'P', //defaut
2657 xl("Choose Layout Direction"),
2659 'pdf_language' => array (
2660 xl('PDF Language'),
2661 array(
2662 'aa' => xl('Afar'),
2663 'af' => xl('Afrikaans'),
2664 'ak' => xl('Akan'),
2665 'sq' => xl('Albanian'),
2666 'am' => xl('Amharic'),
2667 'ar' => xl('Arabic'),
2668 'an' => xl('Aragonese'),
2669 'hy' => xl('Armenian'),
2670 'as' => xl('Assamese'),
2671 'av' => xl('Avaric'),
2672 'ae' => xl('Avestan'),
2673 'ay' => xl('Aymara'),
2674 'az' => xl('Azerbaijani'),
2675 'bm' => xl('Bambara'),
2676 'ba' => xl('Bashkir'),
2677 'eu' => xl('Basque'),
2678 'be' => xl('Belarusian'),
2679 'bn' => xl('Bengali- Bangla'),
2680 'bh' => xl('Bihari'),
2681 'bi' => xl('Bislama'),
2682 'bs' => xl('Bosnian'),
2683 'br' => xl('Breton'),
2684 'bg' => xl('Bulgarian'),
2685 'my' => xl('Burmese'),
2686 'ca' => xl('Catalan- Valencian'),
2687 'ch' => xl('Chamorro'),
2688 'ce' => xl('Chechen'),
2689 'ny' => xl('Chichewa- Chewa- Nyanja'),
2690 'zh' => xl('Chinese'),
2691 'cv' => xl('Chuvash'),
2692 'kw' => xl('Cornish'),
2693 'co' => xl('Corsican'),
2694 'cr' => xl('Cree'),
2695 'hr' => xl('Croatian'),
2696 'cs' => xl('Czech'),
2697 'da' => xl('Danish'),
2698 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2699 'nl' => xl('Dutch'),
2700 'dz' => xl('Dzongkha'),
2701 'en' => xl('English'),
2702 'eo' => xl('Esperanto'),
2703 'et' => xl('Estonian'),
2704 'ee' => xl('Ewe'),
2705 'fo' => xl('Faroese'),
2706 'fj' => xl('Fijian'),
2707 'fi' => xl('Finnish'),
2708 'fr' => xl('French'),
2709 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2710 'gl' => xl('Galician'),
2711 'ka' => xl('Georgian'),
2712 'de' => xl('German'),
2713 'el' => xl('Greek, Modern'),
2714 'gn' => xl('Guaraní'),
2715 'gu' => xl('Gujarati'),
2716 'ht' => xl('Haitian- Haitian Creole'),
2717 'ha' => xl('Hausa'),
2718 'he' => xl('Hebrew (modern)'),
2719 'hz' => xl('Herero'),
2720 'hi' => xl('Hindi'),
2721 'ho' => xl('Hiri Motu'),
2722 'hu' => xl('Hungarian'),
2723 'ia' => xl('Interlingua'),
2724 'id' => xl('Indonesian'),
2725 'ie' => xl('Interlingue'),
2726 'ga' => xl('Irish'),
2727 'ig' => xl('Igbo'),
2728 'ik' => xl('Inupiaq'),
2729 'io' => xl('Ido'),
2730 'is' => xl('Icelandic'),
2731 'it' => xl('Italian'),
2732 'iu' => xl('Inuktitut'),
2733 'ja' => xl('Japanese'),
2734 'jv' => xl('Javanese'),
2735 'kl' => xl('Kalaallisut, Greenlandic'),
2736 'kn' => xl('Kannada'),
2737 'kr' => xl('Kanuri'),
2738 'ks' => xl('Kashmiri'),
2739 'kk' => xl('Kazakh'),
2740 'km' => xl('Khmer'),
2741 'ki' => xl('Kikuyu, Gikuyu'),
2742 'rw' => xl('Kinyarwanda'),
2743 'ky' => xl('Kyrgyz'),
2744 'kv' => xl('Komi'),
2745 'kg' => xl('Kongo'),
2746 'ko' => xl('Korean'),
2747 'ku' => xl('Kurdish'),
2748 'kj' => xl('Kwanyama, Kuanyama'),
2749 'la' => xl('Latin'),
2750 'lb' => xl('Luxembourgish, Letzeburgesch'),
2751 'lg' => xl('Ganda'),
2752 'li' => xl('Limburgish, Limburgan, Limburger'),
2753 'ln' => xl('Lingala'),
2754 'lo' => xl('Lao'),
2755 'lt' => xl('Lithuanian'),
2756 'lu' => xl('Luba-Katanga'),
2757 'lv' => xl('Latvian'),
2758 'gv' => xl('Manx'),
2759 'mk' => xl('Macedonian'),
2760 'mg' => xl('Malagasy'),
2761 'ms' => xl('Malay'),
2762 'ml' => xl('Malayalam'),
2763 'mt' => xl('Maltese'),
2764 'mi' => xl('Māori'),
2765 'mr' => xl('Marathi (Marāṭhī)'),
2766 'mh' => xl('Marshallese'),
2767 'mn' => xl('Mongolian'),
2768 'na' => xl('Nauru'),
2769 'nv' => xl('Navajo, Navaho'),
2770 'nb' => xl('Norwegian Bokmål'),
2771 'nd' => xl('North Ndebele'),
2772 'ne' => xl('Nepali'),
2773 'ng' => xl('Ndonga'),
2774 'nn' => xl('Norwegian Nynorsk'),
2775 'no' => xl('Norwegian'),
2776 'ii' => xl('Nuosu'),
2777 'nr' => xl('South Ndebele'),
2778 'oc' => xl('Occitan'),
2779 'oj' => xl('Ojibwe, Ojibwa'),
2780 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2781 'om' => xl('Oromo'),
2782 'or' => xl('Oriya'),
2783 'os' => xl('Ossetian, Ossetic'),
2784 'pa' => xl('Panjabi, Punjabi'),
2785 'pi' => xl('Pāli'),
2786 'fa' => xl('Persian (Farsi)'),
2787 'pl' => xl('Polish'),
2788 'ps' => xl('Pashto, Pushto'),
2789 'pt' => xl('Portuguese'),
2790 'qu' => xl('Quechua'),
2791 'rm' => xl('Romansh'),
2792 'rn' => xl('Kirundi'),
2793 'ro' => xl('Romanian'),
2794 'ru' => xl('Russian'),
2795 'sa' => xl('Sanskrit (Saṁskṛta)'),
2796 'sc' => xl('Sardinian'),
2797 'sd' => xl('Sindhi'),
2798 'se' => xl('Northern Sami'),
2799 'sm' => xl('Samoan'),
2800 'sg' => xl('Sango'),
2801 'sr' => xl('Serbian'),
2802 'gd' => xl('Scottish Gaelic- Gaelic'),
2803 'sn' => xl('Shona'),
2804 'si' => xl('Sinhala, Sinhalese'),
2805 'sk' => xl('Slovak'),
2806 'sl' => xl('Slovene'),
2807 'so' => xl('Somali'),
2808 'st' => xl('Southern Sotho'),
2809 'es' => xl('Spanish- Castilian'),
2810 'su' => xl('Sundanese'),
2811 'sw' => xl('Swahili'),
2812 'ss' => xl('Swati'),
2813 'sv' => xl('Swedish'),
2814 'ta' => xl('Tamil'),
2815 'te' => xl('Telugu'),
2816 'tg' => xl('Tajik'),
2817 'th' => xl('Thai'),
2818 'ti' => xl('Tigrinya'),
2819 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2820 'tk' => xl('Turkmen'),
2821 'tl' => xl('Tagalog'),
2822 'tn' => xl('Tswana'),
2823 'to' => xl('Tonga (Tonga Islands)'),
2824 'tr' => xl('Turkish'),
2825 'ts' => xl('Tsonga'),
2826 'tt' => xl('Tatar'),
2827 'tw' => xl('Twi'),
2828 'ty' => xl('Tahitian'),
2829 'ug' => xl('Uyghur, Uighur'),
2830 'uk' => xl('Ukrainian'),
2831 'ur' => xl('Urdu'),
2832 'uz' => xl('Uzbek'),
2833 've' => xl('Venda'),
2834 'vi' => xl('Vietnamese'),
2835 'vo' => xl('Volapük'),
2836 'wa' => xl('Walloon'),
2837 'cy' => xl('Welsh'),
2838 'wo' => xl('Wolof'),
2839 'fy' => xl('Western Frisian'),
2840 'xh' => xl('Xhosa'),
2841 'yi' => xl('Yiddish'),
2842 'yo' => xl('Yoruba'),
2843 'za' => xl('Zhuang, Chuang'),
2844 'zu' => xl('Zulu'),
2846 'en', // default English
2847 xl('Choose PDF languange Preference'),
2849 'pdf_size' => array(
2850 xl('Paper Size'), // Descriptive Name
2851 array(
2852 'LETTER' => xl('Letter Paper Size'),
2853 'LEGAL' => xl('Legal Paper Size'),
2854 'FOLIO' => xl('Folio Paper Size'),
2855 'EXECUTIVE' => xl('Executive Paper Size'),
2856 '4A0' => ('4A0' . " " . xl('Paper Size')),
2857 '2A0' => ('2A0' . " " . xl('Paper Size')),
2858 'A0' => ('A0' . " " . xl('Paper Size')),
2859 'A1' => ('A1' . " " . xl('Paper Size')),
2860 'A2' => ('A2' . " " . xl('Paper Size')),
2861 'A3' => ('A3' . " " . xl('Paper Size')),
2862 'A4' => ('A4' . " " . xl('Paper Size')),
2863 'A5' => ('A5' . " " . xl('Paper Size')),
2864 'A6' => ('A6' . " " . xl('Paper Size')),
2865 'A7' => ('A7' . " " . xl('Paper Size')),
2866 'A8' => ('A8' . " " . xl('Paper Size')),
2867 'A9' => ('A9' . " " . xl('Paper Size')),
2868 'A10' => ('A10' . " " . xl('Paper Size')),
2869 'B0' => ('B0' . " " . xl('Paper Size')),
2870 'B1' => ('B1' . " " . xl('Paper Size')),
2871 'B2' => ('B2' . " " . xl('Paper Size')),
2872 'B3' => ('B3' . " " . xl('Paper Size')),
2873 'B4' => ('B4' . " " . xl('Paper Size')),
2874 'B5' => ('B5' . " " . xl('Paper Size')),
2875 'B6' => ('B6' . " " . xl('Paper Size')),
2876 'B7' => ('B7' . " " . xl('Paper Size')),
2877 'B8' => ('B8' . " " . xl('Paper Size')),
2878 'B9' => ('B9' . " " . xl('Paper Size')),
2879 'B10' => ('B10' . " " . xl('Paper Size')),
2880 'C0' => ('C0' . " " . xl('Paper Size')),
2881 'C1' => ('C1' . " " . xl('Paper Size')),
2882 'C2' => ('C2' . " " . xl('Paper Size')),
2883 'C3' => ('C3' . " " . xl('Paper Size')),
2884 'C4' => ('C4' . " " . xl('Paper Size')),
2885 'C5' => ('C5' . " " . xl('Paper Size')),
2886 'C6' => ('C6' . " " . xl('Paper Size')),
2887 'C7' => ('C7' . " " . xl('Paper Size')),
2888 'C8' => ('C8' . " " . xl('Paper Size')),
2889 'C9' => ('C9' . " " . xl('Paper Size')),
2890 'C10' => ('C10' . " " . xl('Paper Size')),
2891 'RA0' => ('RA0' . " " . xl('Paper Size')),
2892 'RA1' => ('RA1' . " " . xl('Paper Size')),
2893 'RA2' => ('RA2' . " " . xl('Paper Size')),
2894 'RA3' => ('RA3' . " " . xl('Paper Size')),
2895 'RA4' => ('RA4' . " " . xl('Paper Size')),
2896 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2897 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2898 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2899 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2900 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2902 'LETTER',
2903 xl('Choose Paper Size')
2905 'pdf_left_margin' => array(
2906 xl('Left Margin (mm)'),
2907 'num',
2908 '5',
2909 xl('Left Margin (mm)')
2911 'pdf_right_margin' => array(
2912 xl('Right Margin (mm)'),
2913 'num',
2914 '5',
2915 xl('Right Margin (mm)')
2917 'pdf_top_margin' => array(
2918 xl('Top Margin (mm)'),
2919 'num',
2920 '5',
2921 xl('Top Margin (mm)')
2923 'pdf_bottom_margin' => array(
2924 xl('Bottom Margin (px)'),
2925 'num',
2926 '8',
2927 xl('Bottom Margin (px)')
2929 'pdf_output' => array (
2930 xl('Output Type'),
2931 array(
2932 'D' => xl('Download'),
2933 'I' => xl('Inline')
2935 'D', //defaut
2936 xl("Choose Download or Display Inline"),
2939 'chart_label_type' => array(
2940 xl('Patient Label Type'),
2941 array(
2942 '0' => xl('None'),
2943 '1' => '5160',
2944 '2' => '5161',
2945 '3' => '5162'
2947 '1', // default
2948 xl('Avery Label type for printing patient labels from popups in left nav screen'),
2951 'barcode_label_type' => array(
2952 xl('Barcode Label Type'),
2953 array(
2954 '0' => xl('None'),
2955 '1' => 'std25',
2956 '2' => 'int25',
2957 '3' => 'ean8',
2958 '4' => 'ean13',
2959 '5' => 'upc',
2960 '6' => 'code11',
2961 '7' => 'code39',
2962 '8' => 'code93',
2963 '9' => 'code128',
2964 '10' => 'codabar',
2965 '11' => 'msi',
2966 '12' => 'datamatrix'
2968 '9', // default = None
2969 xl('Barcode type for printing barcode labels from popups in left nav screen.')
2972 'addr_label_type' => array(
2973 xl('Print Patient Address Label'),
2974 'bool', // data type
2975 '1', // default = false
2976 xl('Select to print patient address labels from popups in left nav screen.')