added global for showing 'all' option when editing/viewing recursive appointment...
[openemr.git] / library / globals.inc.php
blob57a078c857480ca5be27ffc720cccb9cef7139b5
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')
1641 // Notifications Tab
1643 'Notifications' => array(
1645 'patient_reminder_sender_name' => array(
1646 xl('Patient Reminder Sender Name'),
1647 'text', // data type
1648 '', // default
1649 xl('Name of the sender for patient reminders.')
1652 'patient_reminder_sender_email' => array(
1653 xl('Patient Reminder Sender Email'),
1654 'text', // data type
1655 '', // default
1656 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.')
1659 'practice_return_email_path' => array(
1660 xl('Notification Email Address'),
1661 'text', // data type
1662 '', // default
1663 xl('Email address, if any, to receive administrative notifications.')
1666 'EMAIL_METHOD' => array(
1667 xl('Email Transport Method'),
1668 array(
1669 'PHPMAIL' => 'PHPMAIL',
1670 'SENDMAIL' => 'SENDMAIL',
1671 'SMTP' => 'SMTP',
1673 'SMTP', // default
1674 xl('Method for sending outgoing email.')
1677 'SMTP_HOST' => array(
1678 xl('SMTP Server Hostname'),
1679 'text', // data type
1680 'localhost', // default
1681 xl('If SMTP is used, the server`s hostname or IP address.')
1684 'SMTP_PORT' => array(
1685 xl('SMTP Server Port Number'),
1686 'num', // data type
1687 '25', // default
1688 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1691 'SMTP_USER' => array(
1692 xl('SMTP User for Authentication'),
1693 'text', // data type
1694 '', // default
1695 xl('Must be empty if SMTP authentication is not used.')
1698 'SMTP_PASS' => array(
1699 xl('SMTP Password for Authentication'),
1700 'text', // data type
1701 '', // default
1702 xl('Must be empty if SMTP authentication is not used.')
1705 'SMTP_SECURE' => array(
1706 xl('SMTP Security Protocol'),
1707 array(
1708 '' => xl('None'),
1709 'ssl' => 'SSL',
1710 'tls' => 'TLS'
1713 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1716 'EMAIL_NOTIFICATION_HOUR' => array(
1717 xl('Email Notification Hours'),
1718 'num', // data type
1719 '50', // default
1720 xl('Number of hours in advance to send email notifications.')
1723 'SMS_NOTIFICATION_HOUR' => array(
1724 xl('SMS Notification Hours'),
1725 'num', // data type
1726 '50', // default
1727 xl('Number of hours in advance to send SMS notifications.')
1730 'SMS_GATEWAY_USENAME' => array(
1731 xl('SMS Gateway Username'),
1732 'text', // data type
1733 '', // default
1734 xl('Username for SMS Gateway.')
1737 'SMS_GATEWAY_PASSWORD' => array(
1738 xl('SMS Gateway Password'),
1739 'text', // data type
1740 '', // default
1741 xl('Password for SMS Gateway.')
1744 'SMS_GATEWAY_APIKEY' => array(
1745 xl('SMS Gateway API Key'),
1746 'text', // data type
1747 '', // default
1748 xl('API key for SMS Gateway.')
1751 'phone_notification_hour' => array(
1752 xl('Phone Notification Hour'),
1753 'num', // data type
1754 '50', // default
1755 xl('Number of hours in advance to send Phone notification.')
1758 'phone_gateway_username' => array(
1759 xl('Phone Gateway Username'),
1760 'text', // data type
1761 '', // default
1762 xl('Username for Phone Gateway.')
1765 'phone_gateway_password' => array(
1766 xl('Phone Gateway Password'),
1767 'text', // data type
1768 '', // default
1769 xl('Password for Phone Gateway.')
1772 'phone_gateway_url' => array(
1773 xl('Phone Gateway URL'),
1774 'text', // data type
1775 '', // default
1776 xl('URL for Phone Gateway.')
1781 // CDR (Clinical Decision Rules)
1783 'CDR' => array(
1785 'enable_cdr' => array(
1786 xl('Enable Clinical Decisions Rules (CDR)'),
1787 'bool', // data type
1788 '1', // default
1789 xl('Enable Clinical Decisions Rules (CDR)')
1792 'enable_allergy_check' => array(
1793 xl('Enable Allergy Check'),
1794 'bool', // data type
1795 '1', // default
1796 xl('Enable Allergy Check Against Medications and Prescriptions')
1799 'enable_alert_log' => array(
1800 xl('Enable Alert Log'),
1801 'bool', // data type
1802 '1', // default
1803 xl('Enable Alert Logging')
1806 'enable_cdr_new_crp' => array(
1807 xl('Enable Clinical Passive New Reminder(s) Popup'),
1808 'bool', // data type
1809 '1', // default
1810 xl('Enable Clinical Passive New Reminder(s) Popup')
1813 'enable_cdr_crw' => array(
1814 xl('Enable Clinical Passive Reminder Widget'),
1815 'bool', // data type
1816 '1', // default
1817 xl('Enable Clinical Passive Reminder Widget')
1820 'enable_cdr_crp' => array(
1821 xl('Enable Clinical Active Reminder Popup'),
1822 'bool', // data type
1823 '1', // default
1824 xl('Enable Clinical Active Reminder Popup')
1827 'enable_cdr_prw' => array(
1828 xl('Enable Patient Reminder Widget'),
1829 'bool', // data type
1830 '1', // default
1831 xl('Enable Patient Reminder Widget')
1834 'enable_cqm' => array(
1835 xl('Enable CQM Reporting'),
1836 'bool', // data type
1837 '1', // default
1838 xl('Enable Clinical Quality Measure (CQM) Reporting')
1841 'pqri_registry_name' => array(
1842 xl('PQRI Registry Name'),
1843 'text', // data type
1844 'Model Registry', // default
1845 xl('PQRI Registry Name')
1848 'pqri_registry_id' => array(
1849 xl('PQRI Registry ID'),
1850 'text', // data type
1851 '125789123', // default
1852 xl('PQRI Registry ID')
1855 'enable_amc' => array(
1856 xl('Enable AMC Reporting'),
1857 'bool', // data type
1858 '1', // default
1859 xl('Enable Automated Measure Calculations (AMC) Reporting')
1862 'enable_amc_prompting' => array(
1863 xl('Enable AMC Prompting'),
1864 'bool', // data type
1865 '1', // default
1866 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1869 'enable_amc_tracking' => array(
1870 xl('Enable AMC Tracking'),
1871 'bool', // data type
1872 '1', // default
1873 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
1876 'cdr_report_nice' => array(
1877 xl('CDR Reports Processing Priority'),
1878 array(
1879 '' => xl('Default Priority'),
1880 '5' => xl('Moderate Priority'),
1881 '10' => xl('Moderate/Low Priority'),
1882 '15' => xl('Low Priority'),
1883 '20' => xl('Lowest Priority')
1885 '', // default
1886 xl('Set processing priority for CDR engine based reports.')
1889 'pat_rem_clin_nice' => array(
1890 xl('Patient Reminder Creation Processing Priority'),
1891 array(
1892 '' => xl('Default Priority'),
1893 '5' => xl('Moderate Priority'),
1894 '10' => xl('Moderate/Low Priority'),
1895 '15' => xl('Low Priority'),
1896 '20' => xl('Lowest Priority')
1898 '', // default
1899 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
1902 'report_itemizing_standard' => array(
1903 xl('Enable Standard Report Itemization'),
1904 'bool', // data type
1905 '1', // default
1906 xl('Enable Itemization of Standard Clinical Rules Reports')
1909 'report_itemizing_cqm' => array(
1910 xl('Enable CQM Report Itemization'),
1911 'bool', // data type
1912 '1', // default
1913 xl('Enable Itemization of CQM Reports')
1916 'report_itemizing_amc' => array(
1917 xl('Enable AMC Report Itemization'),
1918 'bool', // data type
1919 '1', // default
1920 xl('Enable Itemization of AMC Reports')
1922 'dated_reminders_max_alerts_to_show' => array(
1923 xl('Dated reminders maximum alerts to show'),
1924 'num', // data type
1925 '5', // default
1926 xl('Dated reminders maximum alerts to show')
1930 // Logging
1932 'Logging' => array(
1934 'enable_auditlog' => array(
1935 xl('Enable Audit Logging'),
1936 'bool', // data type
1937 '1', // default
1938 xl('Enable Audit Logging')
1941 'audit_events_patient-record' => array(
1942 xl('Audit Logging Patient Record'),
1943 'bool', // data type
1944 '1', // default
1945 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1948 'audit_events_scheduling' => array(
1949 xl('Audit Logging Scheduling'),
1950 'bool', // data type
1951 '1', // default
1952 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1955 'audit_events_order' => array(
1956 xl('Audit Logging Order'),
1957 'bool', // data type
1958 '1', // default
1959 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1962 'audit_events_security-administration' => array(
1963 xl('Audit Logging Security Administration'),
1964 'bool', // data type
1965 '1', // default
1966 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1969 'audit_events_backup' => array(
1970 xl('Audit Logging Backups'),
1971 'bool', // data type
1972 '1', // default
1973 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1976 'audit_events_other' => array(
1977 xl('Audit Logging Miscellaneous'),
1978 'bool', // data type
1979 '1', // default
1980 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1983 'audit_events_query' => array(
1984 xl('Audit Logging SELECT Query'),
1985 'bool', // data type
1986 '0', // default
1987 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1990 'audit_events_cdr' => array(
1991 xl('Audit CDR Engine Queries'),
1992 'bool', // data type
1993 '0', // default
1994 xl('Enable logging of CDR Engine Queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1997 'enable_atna_audit' => array(
1998 xl('Enable ATNA Auditing'),
1999 'bool', // data type
2000 '0', // default
2001 xl('Enable Audit Trail and Node Authentication (ATNA).')
2004 'atna_audit_host' => array(
2005 xl('ATNA audit host'),
2006 'text', // data type
2007 '', // default
2008 xl('The hostname of the ATNA audit repository machine.')
2011 'atna_audit_port' => array(
2012 xl('ATNA audit port'),
2013 'text', // data type
2014 '6514', // default
2015 xl('Listening port of the RFC 5425 TLS syslog server.')
2018 'atna_audit_localcert' => array(
2019 xl('ATNA audit local certificate'),
2020 'text', // data type
2021 '', // default
2022 xl('Certificate to send to RFC 5425 TLS syslog server.')
2025 'atna_audit_cacert' => array(
2026 xl('ATNA audit CA certificate'),
2027 'text', // data type
2028 '', // default
2029 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2032 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
2033 'enable_auditlog_encryption' => array(
2034 xl('Enable Audit Log Encryption'),
2035 'bool', // data type
2036 '0', // default
2037 xl('Enable Audit Log Encryption')
2040 'billing_log_option' => array(
2041 xl('Billing Log Option'),
2042 array(
2043 '1' => xl('Billing Log Append'),
2044 '2' => xl('Billing Log Overwrite')
2046 '1', // default
2047 xl('Billing log setting to append or overwrite the log file.')
2050 'gbl_print_log_option' => array(
2051 xl('Printing Log Option'),
2052 array(
2053 '0' => xl('No logging'),
2054 '1' => xl('Hide print feature'),
2055 '2' => xl('Log entire document'),
2057 '0', // default
2058 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2063 // Miscellaneous Tab
2065 'Miscellaneous' => array(
2067 'mysql_bin_dir' => array(
2068 xl('Path to MySQL Binaries'),
2069 'text', // data type
2070 $mysql_bin_dir, // default
2071 xl('Full path to directory containing MySQL executables.')
2074 'perl_bin_dir' => array(
2075 xl('Path to Perl Binaries'),
2076 'text', // data type
2077 $perl_bin_dir, // default
2078 xl('Full path to directory containing Perl executables.')
2081 'temporary_files_dir' => array(
2082 xl('Path to Temporary Files'),
2083 'text', // data type
2084 $temporary_files_dir, // default
2085 xl('Full path to directory used for temporary files.')
2088 'backup_log_dir' => array(
2089 xl('Path for Event Log Backup'),
2090 'text', // data type
2091 $backup_log_dir, // default
2092 xl('Full path to directory for event log backup.')
2095 'state_data_type' => array(
2096 xl('State Data Type'),
2097 array(
2098 '2' => xl('Text field'),
2099 '1' => xl('Single-selection list'),
2100 '26' => xl('Single-selection list with ability to add to the list'),
2102 '26', // default
2103 xl('Field type to use for employer or subscriber state in demographics.')
2106 'state_list' => array(
2107 xl('State list'),
2108 'text', // data type
2109 'state', // default
2110 xl('List used by above State Data Type option.')
2113 'state_custom_addlist_widget' => array(
2114 xl('State List Widget Custom Fields'),
2115 'bool', // data type
2116 '1', // default
2117 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2120 'country_data_type' => array(
2121 xl('Country Data Type'),
2122 array(
2123 '2' => xl('Text field'),
2124 '1' => xl('Single-selection list'),
2125 '26' => xl('Single-selection list with ability to add to the list'),
2127 '26', // default
2128 xl('Field type to use for employer or subscriber country in demographics.')
2131 'country_list' => array(
2132 xl('Country list'),
2133 'text', // data type
2134 'country', // default
2135 xl('List used by above Country Data Type option.')
2138 'print_command' => array(
2139 xl('Print Command'),
2140 'text', // data type
2141 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2142 xl('Shell command for printing from the server.')
2145 'default_chief_complaint' => array(
2146 xl('Default Reason for Visit'),
2147 'text', // data type
2149 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2152 'default_new_encounter_form' => array(
2153 xl('Default Encounter Form ID'),
2154 'text', // data type
2156 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
2159 'MedicareReferrerIsRenderer' => array(
2160 xl('Medicare Referrer Is Renderer'),
2161 'bool', // data type
2162 '0', // default = true
2163 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2166 'post_to_date_benchmark' => array(
2167 xl('Financial Close Date (yyyy-mm-dd)'),
2168 'text', // data type
2169 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
2170 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2173 'enable_hylafax' => array(
2174 xl('Enable Hylafax Support'),
2175 'bool', // data type
2176 '0', // default
2177 xl('Enable Hylafax Support')
2180 'hylafax_server' => array(
2181 xl('Hylafax Server'),
2182 'text', // data type
2183 'localhost', // default
2184 xl('Hylafax server hostname.')
2187 'hylafax_basedir' => array(
2188 xl('Hylafax Directory'),
2189 'text', // data type
2190 '/var/spool/fax', // default
2191 xl('Location where Hylafax stores faxes.')
2194 'hylafax_enscript' => array(
2195 xl('Hylafax Enscript Command'),
2196 'text', // data type
2197 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2198 xl('Enscript command used by Hylafax.')
2201 'enable_scanner' => array(
2202 xl('Enable Scanner Support'),
2203 'bool', // data type
2204 '0', // default
2205 xl('Enable Scanner Support')
2208 'scanner_output_directory' => array(
2209 xl('Scanner Directory'),
2210 'text', // data type
2211 '/mnt/scan_docs', // default
2212 xl('Location where scans are stored.')
2216 // Portal Tab
2218 'Portal' => array(
2220 'portal_onsite_enable' => array(
2221 xl('Enable Onsite Patient Portal'),
2222 'bool', // data type
2223 '0',
2224 xl('Enable Onsite Patient Portal.')
2227 'portal_onsite_address' => array(
2228 xl('Onsite Patient Portal Site Address'),
2229 'text', // data type
2230 'https://your_web_site.com/openemr/patients',
2231 xl('Website link for the Onsite Patient Portal.')
2234 'portal_onsite_document_download' => array(
2235 xl('Enable Onsite Patient Portal Document Download'),
2236 'bool', // data type
2237 '1',
2238 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2241 'portal_offsite_enable' => array(
2242 xl('Enable Offsite Patient Portal'),
2243 'bool', // data type
2244 '0',
2245 xl('Enable Offsite Patient Portal.')
2248 'portal_offsite_providerid' => array(
2249 xl('Offsite Patient Portal Provider ID'),
2250 'text', // data type
2252 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2255 'portal_offsite_username' => array(
2256 xl('Offsite Patient Portal Username'),
2257 'text', // data type
2259 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2262 'portal_offsite_password' => array(
2263 xl('Offsite Patient Portal Password'),
2264 'pwd', // data type
2266 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2269 'portal_offsite_address' => array(
2270 xl('Offsite Patient Portal Site Address'),
2271 'text', // data type
2272 'https://ssh.mydocsportal.com/provider.php',
2273 xl('Offsite Https link for the Patient Portal.')
2276 'portal_offsite_address_patient_link' => array(
2277 xl('Offsite Patient Portal Site Address (Patient Link)'),
2278 'text', // data type
2279 'https://ssh.mydocsportal.com',
2280 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2283 // Currently the "CMS Portal" supports WordPress. Other Content Management
2284 // Systems may be supported in the future.
2286 'gbl_portal_cms_enable' => array(
2287 xl('Enable CMS Portal'),
2288 'bool', // data type
2289 '0',
2290 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2293 'gbl_portal_cms_address' => array(
2294 xl('CMS Portal Site Address'),
2295 'text', // data type
2296 'https://your_cms_site.com/',
2297 xl('URL for the WordPress site that supports the portal')
2300 'gbl_portal_cms_username' => array(
2301 xl('CMS Portal Username'),
2302 'text', // data type
2304 xl('Login name of WordPress user for portal access')
2307 'gbl_portal_cms_password' => array(
2308 xl('CMS Portal Password'),
2309 'text', // data type
2311 xl('Password for the above user')
2316 // Connectors Tab
2318 'Connectors' => array(
2320 'erx_enable' => array(
2321 xl('Enable NewCrop eRx Service'),
2322 'bool',
2323 '0',
2324 xl('Enable NewCrop eRx Service.') + ' ' +
2325 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.')
2328 'erx_newcrop_path' => array(
2329 xl('NewCrop eRx Site Address'),
2330 'text',
2331 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2332 xl('URL for NewCrop eRx Site Address.')
2335 'erx_newcrop_path_soap' => array(
2336 xl('NewCrop eRx Web Service Address'),
2337 'text',
2338 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2339 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2342 'erx_soap_ttl_allergies' => array(
2343 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2344 'num',
2345 '21600',
2346 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2349 'erx_soap_ttl_medications' => array(
2350 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2351 'num',
2352 '21600',
2353 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2356 'erx_account_partner_name' => array(
2357 xl('NewCrop eRx Partner Name'),
2358 'text',
2360 xl('Partner Name issued for NewCrop eRx service.')
2363 'erx_account_name' => array(
2364 xl('NewCrop eRx Name'),
2365 'text',
2367 xl('Account Name issued for NewCrop eRx service.')
2370 'erx_account_password' => array(
2371 xl('NewCrop eRx Password'),
2372 'pass',
2374 xl('Account Password issued for NewCrop eRx service.')
2377 'erx_account_id' => array(
2378 xl('NewCrop eRx Account Id'),
2379 'text',
2380 '1',
2381 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2384 'erx_upload_active' => array(
2385 xl('Only upload active prescriptions'),
2386 'bool',
2387 '0',
2388 xl('Only upload active prescriptions to NewCrop eRx.')
2391 'erx_import_status_message' => array(
2392 xl('Enable NewCrop eRx import status message'),
2393 'bool',
2394 '0',
2395 xl('Enable import status message after visiting NewCrop eRx.')
2398 'erx_medication_display' => array(
2399 xl('Do not display NewCrop eRx Medications uploaded'),
2400 'bool',
2401 '0',
2402 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2405 'erx_allergy_display' => array(
2406 xl('Do not display NewCrop eRx Allergy uploaded'),
2407 'bool',
2408 '0',
2409 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2412 'erx_default_patient_country' => array(
2413 xl('NewCrop eRx Default Patient Country'),
2414 array(
2415 '' => '',
2416 'US' => xl('USA'),
2417 'CA' => xl('Canada'),
2418 'MX' => xl('Mexico'),
2421 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2424 'erx_debug_setting' => array(
2425 xl('NewCrop eRx Debug Setting'),
2426 array(
2427 0 => xl('None'),
2428 1 => xl('Request Only'),
2429 2 => xl('Response Only'),
2430 3 => xl('Request & Response'),
2432 '0',
2433 xl('Log all NewCrop eRx Requests and / or Responses.'),
2436 'phimail_enable' => array(
2437 xl('Enable phiMail Direct Messaging Service'),
2438 'bool', // data type
2439 '0',
2440 xl('Enable phiMail Direct Messaging Service')
2443 'phimail_server_address' => array(
2444 xl('phiMail Server Address'),
2445 'text', // data type
2446 'https://phimail.example.com:32541',
2447 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2450 'phimail_username' => array(
2451 xl('phiMail Username'),
2452 'text', // data type
2454 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2457 'phimail_password' => array(
2458 xl('phiMail Password'),
2459 'pass', // data type
2461 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2464 'phimail_notify' => array(
2465 xl('phiMail notification user'),
2466 'text', // data type
2467 'admin',
2468 xl('This user will receive notification of new incoming Direct messages')
2471 'phimail_interval' => array(
2472 xl('phiMail Message Check Interval (minutes)'),
2473 'num', // data type
2474 '5',
2475 xl('Interval between message checks (set to zero for manual checks only)')
2478 'phimail_ccd_enable' => array(
2479 xl('phiMail Allow CCD Send'),
2480 'bool', // data type
2481 '0',
2482 xl('phiMail Allow CCD Send')
2485 'phimail_ccr_enable' => array(
2486 xl('phiMail Allow CCR Send'),
2487 'bool', // data type
2488 '0',
2489 xl('phiMail Allow CCR Send')
2493 'Rx' => array(
2494 'rx_enable_DEA' => array(
2495 xl('Rx Enable DEA #'),
2496 'bool', // data type
2497 '1',
2498 xl('Rx Enable DEA #')
2500 'rx_show_DEA' => array(
2501 xl('Rx Show DEA #'),
2502 'bool', // data type
2503 '0',
2504 xl('Rx Show DEA #')
2506 'rx_enable_NPI' => array(
2507 xl('Rx Enable NPI'),
2508 'bool', // data type
2509 '0',
2510 xl('Rx Enable NPI')
2512 'rx_show_NPI' => array(
2513 xl('Rx Show NPI'),
2514 'bool', // data type
2515 '0',
2516 xl('Rx Show NPI')
2518 'rx_enable_SLN' => array(
2519 xl('Rx Enable State Lic. #'),
2520 'bool', // data type
2521 '0',
2522 xl('Rx Enable State Lic. #')
2524 'rx_show_SLN' => array(
2525 xl('Rx Show State Lic. #'),
2526 'bool', // data type
2527 '0',
2528 xl('Rx Show State Lic. #')
2530 'rx_show_drug-drug' => array(
2531 xl('Rx NLM Drug-Drug'),
2532 'bool', // data type
2533 '0',
2534 xl('Rx NLM Drug-Drug')
2536 'rx_paper_size' => array(
2537 xl('Rx Paper Size'), // descriptive name
2538 array(
2539 'LETTER' => xl('Letter Paper Size'),
2540 'LEGAL' => xl('Legal Paper Size'),
2541 'FOLIO' => xl('Folio Paper Size'),
2542 'EXECUTIVE' => xl('Executive Paper Size'),
2543 '4A0' => ('4A0' . " " . xl('Paper Size')),
2544 '2A0' => ('2A0' . " " . xl('Paper Size')),
2545 'A0' => ('A0' . " " . xl('Paper Size')),
2546 'A1' => ('A1' . " " . xl('Paper Size')),
2547 'A2' => ('A2' . " " . xl('Paper Size')),
2548 'A3' => ('A3' . " " . xl('Paper Size')),
2549 'A4' => ('A4' . " " . xl('Paper Size')),
2550 'A5' => ('A5' . " " . xl('Paper Size')),
2551 'A6' => ('A6' . " " . xl('Paper Size')),
2552 'A7' => ('A7' . " " . xl('Paper Size')),
2553 'A8' => ('A8' . " " . xl('Paper Size')),
2554 'A9' => ('A9' . " " . xl('Paper Size')),
2555 'A10' => ('A10' . " " . xl('Paper Size')),
2556 'B0' => ('B0' . " " . xl('Paper Size')),
2557 'B1' => ('B1' . " " . xl('Paper Size')),
2558 'B2' => ('B2' . " " . xl('Paper Size')),
2559 'B3' => ('B3' . " " . xl('Paper Size')),
2560 'B4' => ('B4' . " " . xl('Paper Size')),
2561 'B5' => ('B5' . " " . xl('Paper Size')),
2562 'B6' => ('B6' . " " . xl('Paper Size')),
2563 'B7' => ('B7' . " " . xl('Paper Size')),
2564 'B8' => ('B8' . " " . xl('Paper Size')),
2565 'B9' => ('B9' . " " . xl('Paper Size')),
2566 'B10' => ('B10' . " " . xl('Paper Size')),
2567 'C0' => ('C0' . " " . xl('Paper Size')),
2568 'C1' => ('C1' . " " . xl('Paper Size')),
2569 'C2' => ('C2' . " " . xl('Paper Size')),
2570 'C3' => ('C3' . " " . xl('Paper Size')),
2571 'C4' => ('C4' . " " . xl('Paper Size')),
2572 'C5' => ('C5' . " " . xl('Paper Size')),
2573 'C6' => ('C6' . " " . xl('Paper Size')),
2574 'C7' => ('C7' . " " . xl('Paper Size')),
2575 'C8' => ('C8' . " " . xl('Paper Size')),
2576 'C9' => ('C9' . " " . xl('Paper Size')),
2577 'C10' => ('C10' . " " . xl('Paper Size')),
2578 'RA0' => ('RA0' . " " . xl('Paper Size')),
2579 'RA1' => ('RA1' . " " . xl('Paper Size')),
2580 'RA2' => ('RA2' . " " . xl('Paper Size')),
2581 'RA3' => ('RA3' . " " . xl('Paper Size')),
2582 'RA4' => ('RA4' . " " . xl('Paper Size')),
2583 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2584 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2585 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2586 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2587 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2589 'LETTER', // default = tree menu
2590 xl('Rx Paper Size')
2592 'rx_left_margin' => array(
2593 xl('Rx Left Margin (px)'),
2594 'num',
2595 '30',
2596 xl('Rx Left Margin (px)')
2598 'rx_right_margin' => array(
2599 xl('Rx Right Margin (px)'),
2600 'num',
2601 '30',
2602 xl('Rx Right Margin (px)')
2604 'rx_top_margin' => array(
2605 xl('Rx Top Margin (px)'),
2606 'num',
2607 '72',
2608 xl('Rx Top Margin (px)')
2610 'rx_bottom_margin' => array(
2611 xl('Rx Bottom Margin (px)'),
2612 'num',
2613 '30',
2614 xl('Rx Bottom Margin (px)')
2618 'PDF' => array (
2619 'pdf_layout' => array (
2620 xl('Layout'),
2621 array(
2622 'P' => xl('Portrait'),
2623 'L' => xl('Landscape')
2625 'P', //defaut
2626 xl("Choose Layout Direction"),
2628 'pdf_language' => array (
2629 xl('PDF Language'),
2630 array(
2631 'aa' => xl('Afar'),
2632 'af' => xl('Afrikaans'),
2633 'ak' => xl('Akan'),
2634 'sq' => xl('Albanian'),
2635 'am' => xl('Amharic'),
2636 'ar' => xl('Arabic'),
2637 'an' => xl('Aragonese'),
2638 'hy' => xl('Armenian'),
2639 'as' => xl('Assamese'),
2640 'av' => xl('Avaric'),
2641 'ae' => xl('Avestan'),
2642 'ay' => xl('Aymara'),
2643 'az' => xl('Azerbaijani'),
2644 'bm' => xl('Bambara'),
2645 'ba' => xl('Bashkir'),
2646 'eu' => xl('Basque'),
2647 'be' => xl('Belarusian'),
2648 'bn' => xl('Bengali- Bangla'),
2649 'bh' => xl('Bihari'),
2650 'bi' => xl('Bislama'),
2651 'bs' => xl('Bosnian'),
2652 'br' => xl('Breton'),
2653 'bg' => xl('Bulgarian'),
2654 'my' => xl('Burmese'),
2655 'ca' => xl('Catalan- Valencian'),
2656 'ch' => xl('Chamorro'),
2657 'ce' => xl('Chechen'),
2658 'ny' => xl('Chichewa- Chewa- Nyanja'),
2659 'zh' => xl('Chinese'),
2660 'cv' => xl('Chuvash'),
2661 'kw' => xl('Cornish'),
2662 'co' => xl('Corsican'),
2663 'cr' => xl('Cree'),
2664 'hr' => xl('Croatian'),
2665 'cs' => xl('Czech'),
2666 'da' => xl('Danish'),
2667 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2668 'nl' => xl('Dutch'),
2669 'dz' => xl('Dzongkha'),
2670 'en' => xl('English'),
2671 'eo' => xl('Esperanto'),
2672 'et' => xl('Estonian'),
2673 'ee' => xl('Ewe'),
2674 'fo' => xl('Faroese'),
2675 'fj' => xl('Fijian'),
2676 'fi' => xl('Finnish'),
2677 'fr' => xl('French'),
2678 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2679 'gl' => xl('Galician'),
2680 'ka' => xl('Georgian'),
2681 'de' => xl('German'),
2682 'el' => xl('Greek, Modern'),
2683 'gn' => xl('Guaraní'),
2684 'gu' => xl('Gujarati'),
2685 'ht' => xl('Haitian- Haitian Creole'),
2686 'ha' => xl('Hausa'),
2687 'he' => xl('Hebrew (modern)'),
2688 'hz' => xl('Herero'),
2689 'hi' => xl('Hindi'),
2690 'ho' => xl('Hiri Motu'),
2691 'hu' => xl('Hungarian'),
2692 'ia' => xl('Interlingua'),
2693 'id' => xl('Indonesian'),
2694 'ie' => xl('Interlingue'),
2695 'ga' => xl('Irish'),
2696 'ig' => xl('Igbo'),
2697 'ik' => xl('Inupiaq'),
2698 'io' => xl('Ido'),
2699 'is' => xl('Icelandic'),
2700 'it' => xl('Italian'),
2701 'iu' => xl('Inuktitut'),
2702 'ja' => xl('Japanese'),
2703 'jv' => xl('Javanese'),
2704 'kl' => xl('Kalaallisut, Greenlandic'),
2705 'kn' => xl('Kannada'),
2706 'kr' => xl('Kanuri'),
2707 'ks' => xl('Kashmiri'),
2708 'kk' => xl('Kazakh'),
2709 'km' => xl('Khmer'),
2710 'ki' => xl('Kikuyu, Gikuyu'),
2711 'rw' => xl('Kinyarwanda'),
2712 'ky' => xl('Kyrgyz'),
2713 'kv' => xl('Komi'),
2714 'kg' => xl('Kongo'),
2715 'ko' => xl('Korean'),
2716 'ku' => xl('Kurdish'),
2717 'kj' => xl('Kwanyama, Kuanyama'),
2718 'la' => xl('Latin'),
2719 'lb' => xl('Luxembourgish, Letzeburgesch'),
2720 'lg' => xl('Ganda'),
2721 'li' => xl('Limburgish, Limburgan, Limburger'),
2722 'ln' => xl('Lingala'),
2723 'lo' => xl('Lao'),
2724 'lt' => xl('Lithuanian'),
2725 'lu' => xl('Luba-Katanga'),
2726 'lv' => xl('Latvian'),
2727 'gv' => xl('Manx'),
2728 'mk' => xl('Macedonian'),
2729 'mg' => xl('Malagasy'),
2730 'ms' => xl('Malay'),
2731 'ml' => xl('Malayalam'),
2732 'mt' => xl('Maltese'),
2733 'mi' => xl('Māori'),
2734 'mr' => xl('Marathi (Marāṭhī)'),
2735 'mh' => xl('Marshallese'),
2736 'mn' => xl('Mongolian'),
2737 'na' => xl('Nauru'),
2738 'nv' => xl('Navajo, Navaho'),
2739 'nb' => xl('Norwegian Bokmål'),
2740 'nd' => xl('North Ndebele'),
2741 'ne' => xl('Nepali'),
2742 'ng' => xl('Ndonga'),
2743 'nn' => xl('Norwegian Nynorsk'),
2744 'no' => xl('Norwegian'),
2745 'ii' => xl('Nuosu'),
2746 'nr' => xl('South Ndebele'),
2747 'oc' => xl('Occitan'),
2748 'oj' => xl('Ojibwe, Ojibwa'),
2749 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2750 'om' => xl('Oromo'),
2751 'or' => xl('Oriya'),
2752 'os' => xl('Ossetian, Ossetic'),
2753 'pa' => xl('Panjabi, Punjabi'),
2754 'pi' => xl('Pāli'),
2755 'fa' => xl('Persian (Farsi)'),
2756 'pl' => xl('Polish'),
2757 'ps' => xl('Pashto, Pushto'),
2758 'pt' => xl('Portuguese'),
2759 'qu' => xl('Quechua'),
2760 'rm' => xl('Romansh'),
2761 'rn' => xl('Kirundi'),
2762 'ro' => xl('Romanian'),
2763 'ru' => xl('Russian'),
2764 'sa' => xl('Sanskrit (Saṁskṛta)'),
2765 'sc' => xl('Sardinian'),
2766 'sd' => xl('Sindhi'),
2767 'se' => xl('Northern Sami'),
2768 'sm' => xl('Samoan'),
2769 'sg' => xl('Sango'),
2770 'sr' => xl('Serbian'),
2771 'gd' => xl('Scottish Gaelic- Gaelic'),
2772 'sn' => xl('Shona'),
2773 'si' => xl('Sinhala, Sinhalese'),
2774 'sk' => xl('Slovak'),
2775 'sl' => xl('Slovene'),
2776 'so' => xl('Somali'),
2777 'st' => xl('Southern Sotho'),
2778 'es' => xl('Spanish- Castilian'),
2779 'su' => xl('Sundanese'),
2780 'sw' => xl('Swahili'),
2781 'ss' => xl('Swati'),
2782 'sv' => xl('Swedish'),
2783 'ta' => xl('Tamil'),
2784 'te' => xl('Telugu'),
2785 'tg' => xl('Tajik'),
2786 'th' => xl('Thai'),
2787 'ti' => xl('Tigrinya'),
2788 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2789 'tk' => xl('Turkmen'),
2790 'tl' => xl('Tagalog'),
2791 'tn' => xl('Tswana'),
2792 'to' => xl('Tonga (Tonga Islands)'),
2793 'tr' => xl('Turkish'),
2794 'ts' => xl('Tsonga'),
2795 'tt' => xl('Tatar'),
2796 'tw' => xl('Twi'),
2797 'ty' => xl('Tahitian'),
2798 'ug' => xl('Uyghur, Uighur'),
2799 'uk' => xl('Ukrainian'),
2800 'ur' => xl('Urdu'),
2801 'uz' => xl('Uzbek'),
2802 've' => xl('Venda'),
2803 'vi' => xl('Vietnamese'),
2804 'vo' => xl('Volapük'),
2805 'wa' => xl('Walloon'),
2806 'cy' => xl('Welsh'),
2807 'wo' => xl('Wolof'),
2808 'fy' => xl('Western Frisian'),
2809 'xh' => xl('Xhosa'),
2810 'yi' => xl('Yiddish'),
2811 'yo' => xl('Yoruba'),
2812 'za' => xl('Zhuang, Chuang'),
2813 'zu' => xl('Zulu'),
2815 'en', // default English
2816 xl('Choose PDF languange Preference'),
2818 'pdf_size' => array(
2819 xl('Paper Size'), // Descriptive Name
2820 array(
2821 'LETTER' => xl('Letter Paper Size'),
2822 'LEGAL' => xl('Legal Paper Size'),
2823 'FOLIO' => xl('Folio Paper Size'),
2824 'EXECUTIVE' => xl('Executive Paper Size'),
2825 '4A0' => ('4A0' . " " . xl('Paper Size')),
2826 '2A0' => ('2A0' . " " . xl('Paper Size')),
2827 'A0' => ('A0' . " " . xl('Paper Size')),
2828 'A1' => ('A1' . " " . xl('Paper Size')),
2829 'A2' => ('A2' . " " . xl('Paper Size')),
2830 'A3' => ('A3' . " " . xl('Paper Size')),
2831 'A4' => ('A4' . " " . xl('Paper Size')),
2832 'A5' => ('A5' . " " . xl('Paper Size')),
2833 'A6' => ('A6' . " " . xl('Paper Size')),
2834 'A7' => ('A7' . " " . xl('Paper Size')),
2835 'A8' => ('A8' . " " . xl('Paper Size')),
2836 'A9' => ('A9' . " " . xl('Paper Size')),
2837 'A10' => ('A10' . " " . xl('Paper Size')),
2838 'B0' => ('B0' . " " . xl('Paper Size')),
2839 'B1' => ('B1' . " " . xl('Paper Size')),
2840 'B2' => ('B2' . " " . xl('Paper Size')),
2841 'B3' => ('B3' . " " . xl('Paper Size')),
2842 'B4' => ('B4' . " " . xl('Paper Size')),
2843 'B5' => ('B5' . " " . xl('Paper Size')),
2844 'B6' => ('B6' . " " . xl('Paper Size')),
2845 'B7' => ('B7' . " " . xl('Paper Size')),
2846 'B8' => ('B8' . " " . xl('Paper Size')),
2847 'B9' => ('B9' . " " . xl('Paper Size')),
2848 'B10' => ('B10' . " " . xl('Paper Size')),
2849 'C0' => ('C0' . " " . xl('Paper Size')),
2850 'C1' => ('C1' . " " . xl('Paper Size')),
2851 'C2' => ('C2' . " " . xl('Paper Size')),
2852 'C3' => ('C3' . " " . xl('Paper Size')),
2853 'C4' => ('C4' . " " . xl('Paper Size')),
2854 'C5' => ('C5' . " " . xl('Paper Size')),
2855 'C6' => ('C6' . " " . xl('Paper Size')),
2856 'C7' => ('C7' . " " . xl('Paper Size')),
2857 'C8' => ('C8' . " " . xl('Paper Size')),
2858 'C9' => ('C9' . " " . xl('Paper Size')),
2859 'C10' => ('C10' . " " . xl('Paper Size')),
2860 'RA0' => ('RA0' . " " . xl('Paper Size')),
2861 'RA1' => ('RA1' . " " . xl('Paper Size')),
2862 'RA2' => ('RA2' . " " . xl('Paper Size')),
2863 'RA3' => ('RA3' . " " . xl('Paper Size')),
2864 'RA4' => ('RA4' . " " . xl('Paper Size')),
2865 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2866 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2867 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2868 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2869 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2871 'LETTER',
2872 xl('Choose Paper Size')
2874 'pdf_left_margin' => array(
2875 xl('Left Margin (mm)'),
2876 'num',
2877 '5',
2878 xl('Left Margin (mm)')
2880 'pdf_right_margin' => array(
2881 xl('Right Margin (mm)'),
2882 'num',
2883 '5',
2884 xl('Right Margin (mm)')
2886 'pdf_top_margin' => array(
2887 xl('Top Margin (mm)'),
2888 'num',
2889 '5',
2890 xl('Top Margin (mm)')
2892 'pdf_bottom_margin' => array(
2893 xl('Bottom Margin (px)'),
2894 'num',
2895 '8',
2896 xl('Bottom Margin (px)')
2898 'pdf_output' => array (
2899 xl('Output Type'),
2900 array(
2901 'D' => xl('Download'),
2902 'I' => xl('Inline')
2904 'D', //defaut
2905 xl("Choose Download or Display Inline"),
2908 'chart_label_type' => array(
2909 xl('Patient Label Type'),
2910 array(
2911 '0' => xl('None'),
2912 '1' => '5160',
2913 '2' => '5161',
2914 '3' => '5162'
2916 '1', // default
2917 xl('Avery Label type for printing patient labels from popups in left nav screen'),
2920 'barcode_label_type' => array(
2921 xl('Barcode Label Type'),
2922 array(
2923 '0' => xl('None'),
2924 '1' => 'std25',
2925 '2' => 'int25',
2926 '3' => 'ean8',
2927 '4' => 'ean13',
2928 '5' => 'upc',
2929 '6' => 'code11',
2930 '7' => 'code39',
2931 '8' => 'code93',
2932 '9' => 'code128',
2933 '10' => 'codabar',
2934 '11' => 'msi',
2935 '12' => 'datamatrix'
2937 '9', // default = None
2938 xl('Barcode type for printing barcode labels from popups in left nav screen.')
2941 'addr_label_type' => array(
2942 xl('Print Patient Address Label'),
2943 'bool', // data type
2944 '1', // default = false
2945 xl('Select to print patient address labels from popups in left nav screen.')