removed unused tab theme files
[openemr.git] / library / globals.inc.php
blobafeb46e7b03dd12f9165b86fdd4d04461d158591
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 // Turkish // xl('Turkish')
66 // Ukrainian // xl('Ukrainian')
67 // Vietnamese // xl('Vietnamese')
69 // OS-dependent stuff.
70 if (stristr(PHP_OS, 'WIN')) {
71 // MS Windows
72 $mysql_bin_dir = 'C:/xampp/mysql/bin';
73 $perl_bin_dir = 'C:/xampp/perl/bin';
74 $temporary_files_dir = 'C:/windows/temp';
75 $backup_log_dir = 'C:/windows/temp';
77 else {
78 // Everything else
79 $mysql_bin_dir = '/usr/bin';
80 $perl_bin_dir = '/usr/bin';
81 $temporary_files_dir = '/tmp';
82 $backup_log_dir = '/tmp';
85 // Language constant declarations:
86 // xl('Appearance')
87 // xl('Locale')
88 // xl('Features')
89 // xl('Calendar')
90 // xl('Security')
91 // xl('Notifications')
92 // xl('Miscellaneous')
94 // List of user specific tabs and globals
95 $USER_SPECIFIC_TABS = array('Appearance',
96 'Locale',
97 'Report',
98 'Calendar',
99 'Connectors');
100 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
101 'new_tabs_layout',
102 'theme_tabs_layout',
103 'concurrent_layout',
104 'css_header',
105 'gbl_pt_list_page_size',
106 'gbl_pt_list_new_window',
107 'drop_bottom',
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('Tabs Layout (need to logout/login after change this setting)'),
141 array(
142 '0' => xl('Off'),
143 '1' => xl('On'),
145 '1', // default = off
146 xl('Use the tabs 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_compact.css',
153 xl('Theme of the tabs layout (need to logout and then login to see this new setting).')
156 'concurrent_layout' => array(
157 xl('Layout Style'), // descriptive name
158 array(
159 '0' => xl('Old style layout with no left menu'),
160 '1' => xl('Navigation menu consists of pairs of radio buttons'),
161 '2' => xl('Navigation menu is a tree view'),
162 '3' => xl('Navigation uses a sliding menu'),
164 '3', // default = tree menu
165 xl('Type of screen layout')
168 'default_encounter_view' => array(
169 xl('Default Encounter View'), // descriptive name
170 array(
171 '0' => xl('Clinical View'),
172 '1' => xl('Billing View'),
174 '0', // default = tree menu
175 xl('Choose your default encounter view')
178 'css_header' => array(
179 xl('Theme'),
180 'css',
181 'style_light.css',
182 xl('Pick a CSS theme.')
185 'gbl_nav_area_width' => array(
186 xl('Navigation Area Width'),
187 'num',
188 '150',
189 xl('Width in pixels of the left navigation frame.')
192 'openemr_name' => array(
193 xl('Application Title'),
194 'text',
195 'OpenEMR',
196 xl('Application name for login page and main window title.')
199 'full_new_patient_form' => array(
200 xl('New Patient Form'),
202 array(
203 '0' => xl('Old-style static form without search or duplication check'),
204 '1' => xl('All demographics fields, with search and duplication check'),
205 '2' => xl('Mandatory or specified fields only, search and dup check'),
206 '3' => xl('Mandatory or specified fields only, dup check, no search'),
207 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
209 '1', // default
210 xl('Style of form used for adding new patients')
213 'gbl_edit_patient_form' => array(
214 xl('Modify Patient Form'),
216 array(
217 '0' => xl('Standard check'),
218 '1' => xl('Zend Module check in addition to standard check')
220 '0', // default
221 xl('Validation mechanism for when modifying patient demographics.')
224 'patient_search_results_style' => array(
225 xl('Patient Search Results Style'),
226 array(
227 '0' => xl('Encounter statistics'),
228 '1' => xl('Mandatory and specified fields'),
230 '0', // default
231 xl('Type of columns displayed for patient search results')
234 'gbl_tall_nav_area' => array(
235 xl('Tall Navigation Area'),
236 'bool', // data type
237 '0', // default = false
238 xl('Navigation area uses full height of frameset')
241 'gbl_nav_visit_forms' => array(
242 xl('Navigation Area Visit Forms'),
243 'bool', // data type
244 '1', // default = true
245 xl('Navigation area includes encounter forms')
248 'simplified_demographics' => array(
249 xl('Simplified Demographics'),
250 'bool', // data type
251 '0', // default = false
252 xl('Omit insurance and some other things from the demographics form')
255 'simplified_prescriptions' => array(
256 xl('Simplified Prescriptions'),
257 'bool', // data type
258 '0', // default = false
259 xl('Omit form, route and interval which then become part of dosage')
262 'simplified_copay' => array(
263 xl('Simplified Co-Pay'),
264 'bool', // data type
265 '0', // default = false
266 xl('Omit method of payment from the co-pay panel')
269 'use_charges_panel' => array(
270 xl('Use Charges Panel'),
271 'bool', // data type
272 '0', // default = false
273 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
276 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
277 'enable_fees_in_left_menu' => array(
278 xl('Enable Fees In Left Menu'),
279 'bool', // data type
280 '1', // default = true
281 xl('Enable Fees In Left Menu')
283 // EDI history 2012-09-13
284 'enable_edihistory_in_left_menu' => array(
285 xl('Enable EDI History In Left Menu'),
286 'bool', // data type
287 '1', // default = true
288 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
291 'online_support_link' => array(
292 xl('Online Support Link'),
293 'text', // data type
294 'http://open-emr.org/',
295 xl('URL for OpenEMR support.')
298 'support_phone_number' => array(
299 xl('Support Phone Number'),
300 'text',
302 xl('Phone Number for Vendor Support that Appears on the About Page.')
305 'drop_bottom' => array(
306 xl('Remove Bottom Pane'),
307 'bool', // data type
308 '0', // default = false
309 xl('Removes the bottom pane by default on start up.')
312 'encounter_page_size' => array(
313 xl('Encounter Page Size'),
314 array(
315 '0' => xl('Show All'),
316 '5' => '5',
317 '10' => '10',
318 '15' => '15',
319 '20' => '20',
320 '25' => '25',
321 '50' => '50',
323 '20',
324 xl('Number of encounters to display per page.')
327 'gbl_pt_list_page_size' => array(
328 xl('Patient List Page Size'),
329 array(
330 '10' => '10',
331 '25' => '25',
332 '50' => '50',
333 '100' => '100',
335 '10',
336 xl('Number of patients to display per page in the patient list.')
339 'gbl_pt_list_new_window' => array(
340 xl('Patient List New Window'),
341 'bool', // data type
342 '0', // default = false
343 xl('Default state of New Window checkbox in the patient list.')
346 'gbl_vitals_options' => array(
347 xl('Vitals Form Options'),
348 array(
349 '0' => xl('Standard'),
350 '1' => xl('Omit circumferences'),
352 '0', // default
353 xl('Special treatment for the Vitals form')
356 'insurance_information' => array(
357 xl('Show Additional Insurance Information'), // descriptive name
358 array(
359 '0' => xl('None'),
360 '1' => xl('Address Only'),
361 '2' => xl('Address and Postal Code'),
362 '3' => xl('Address and State'),
363 '4' => xl('Address, State and Postal Code'),
364 '5' => xl('Postal Code and Box Number'),
366 '4', // default
367 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
370 'gb_how_sort_list' => array(
371 xl('How to sort a drop-lists'),
372 array(
373 '0' => 'Sort by seq',
374 '1' => 'Sort alphabetically'
376 '0',
377 xl('What kind of sorting will be in the drop lists.')
380 'show_label_login' => array(
381 xl('Show Title on Login'),
382 'bool', // data type
383 '0', // default = false
384 xl('Show Title on Login')
387 'extra_logo_login' => array(
388 xl('Show Extra Logo on Login'),
389 'bool', // data type
390 '0', // default = false
391 xl('Show Extra Logo on Login')
394 'tiny_logo_1' => array(
395 xl('Show Mini Logo 1'),
396 'bool', // data type
397 '0', // default = false
398 xl('Show Mini Logo 1')
401 'tiny_logo_2' => array(
402 xl('Show Mini Logo 2'),
403 'bool', // data type
404 '0', // default = false
405 xl('Show Mini Logo 2')
410 // Locale Tab
412 'Locale' => array(
414 'language_default' => array(
415 xl('Default Language'),
416 'lang', // data type
417 'English (Standard)', // default = english
418 xl('Default language if no other is allowed or chosen.')
421 'language_menu_showall' => array(
422 xl('All Languages Allowed'),
423 'bool', // data type
424 '1', // default = true
425 xl('Allow all available languages as choices on menu at login.')
428 'language_menu_other' => array(
429 xl('Allowed Languages'),
430 'm_lang', // data type
431 '', // default = none
432 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
435 'allow_debug_language' => array(
436 xl('Allow Debugging Language'),
437 'bool', // data type
438 '1', // default = true during development and false for production releases
439 xl('This will allow selection of the debugging (\'dummy\') language.')
442 'translate_layout' => array(
443 xl('Translate Layouts'),
444 'bool', // data type
445 '1', // default = true
446 xl('Is text from form layouts to be translated?')
449 'translate_lists' => array(
450 xl('Translate Lists'),
451 'bool', // data type
452 '1', // default = true
453 xl('Is text from lists to be translated?')
456 'translate_gacl_groups' => array(
457 xl('Translate Access Control Groups'),
458 'bool', // data type
459 '1', // default = true
460 xl('Are access control group names to be translated?')
463 'translate_form_titles' => array(
464 xl('Translate Patient Note Titles'),
465 'bool', // data type
466 '1', // default = true
467 xl('Are patient note titles to be translated?')
470 'translate_document_categories' => array(
471 xl('Translate Document Categories'),
472 'bool', // data type
473 '1', // default = true
474 xl('Are document category names to be translated?')
477 'translate_appt_categories' => array(
478 xl('Translate Appointment Categories'),
479 'bool', // data type
480 '1', // default = true
481 xl('Are appointment category names to be translated?')
484 'units_of_measurement' => array(
485 xl('Units for Visit Forms'),
486 array(
487 '1' => xl('Show both US and metric (main unit is US)'),
488 '2' => xl('Show both US and metric (main unit is metric)'),
489 '3' => xl('Show US only'),
490 '4' => xl('Show metric only'),
492 '1', // default = Both/US
493 xl('Applies to the Vitals form and Growth Chart')
496 'us_weight_format' => array(
497 xl('Display Format for US Weights'),
498 array(
499 '1'=>xl('Show pounds as decimal value'),
500 '2'=>xl('Show pounds and ounces')
502 '1',
503 xl('Applies to Vitals form')
506 'disable_deprecated_metrics_form' => array(
507 xl('Disable Old Metric Vitals Form'),
508 'bool', // data type
509 '1', // default = true
510 xl('This was the older metric-only Vitals form, now deprecated.')
513 'phone_country_code' => array(
514 xl('Telephone Country Code'),
515 'num',
516 '1', // default = North America
517 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
520 'date_display_format' => array(
521 xl('Date Display Format'),
522 array(
523 '0' => xl('YYYY-MM-DD'),
524 '1' => xl('MM/DD/YYYY'),
525 '2' => xl('DD/MM/YYYY'),
527 '0',
528 xl('Format used to display most dates.')
531 'time_display_format' => array(
532 xl('Time Display Format'),
533 array(
534 '0' => xl('24 hr'),
535 '1' => xl('12 hr'),
537 '0',
538 xl('Format used to display most times.')
541 'currency_decimals' => array(
542 xl('Currency Decimal Places'),
543 array(
544 '0' => xl('0'),
545 '1' => xl('1'),
546 '2' => xl('2'),
548 '2',
549 xl('Number of digits after decimal point for currency, usually 0 or 2.')
552 'currency_dec_point' => array(
553 xl('Currency Decimal Point Symbol'),
554 array(
555 '.' => xl('Period'),
556 ',' => xl('Comma'),
558 '.',
559 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
562 'currency_thousands_sep' => array(
563 xl('Currency Thousands Separator'),
564 array(
565 ',' => xl('Comma'),
566 '.' => xl('Period'),
567 ' ' => xl('Space'),
568 '' => xl('None'),
570 ',',
571 xl('Symbol used to separate thousands for currency.')
574 'gbl_currency_symbol' => array(
575 xl('Currency Designator'),
576 'text', // data type
577 '$', // default
578 xl('Code or symbol to indicate currency')
580 'age_display_format'=>array(xl('Age Display Format'),
581 array(
582 '0'=>xl('Years or months'),
583 '1'=>xl('Years, months and days')
585 '0',
586 xl('Format for age display')
588 'age_display_limit' => array(
589 xl('Age in Years for Display Format Change'),
590 'num',
591 '3',
592 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
594 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
595 'weekend_days' => array(
596 xl('Your weekend days'),
597 array(
598 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
599 '0' => xl('Sunday'),
600 '5' => xl('Friday'),
601 '6' => xl('Saturday'),
602 '5,6' => xl('Friday') .' - ' . xl('Saturday'),
604 '6,0'
605 ,xl('which days are your weekend days?')
610 // Features Tab
612 'Features' => array(
614 'specific_application' => array(
615 xl('Specific Application'),
616 array(
617 '0' => xl('None'),
618 '2' => xl('IPPF'),
619 '3' => xl('Weight loss clinic'),
621 '0', // default
622 xl('Indicator for specialized usage')
625 'inhouse_pharmacy' => array(
626 xl('Drugs and Products'),
627 array(
628 '0' => xl('Do not inventory and sell any products'),
629 '1' => xl('Inventory and sell drugs only'),
630 '2' => xl('Inventory and sell both drugs and non-drug products'),
631 '3' => xl('Products but no prescription drugs and no templates'),
633 '0', // default
634 xl('Option to support inventory and sales of products')
637 'disable_chart_tracker' => array(
638 xl('Disable Chart Tracker'),
639 'bool', // data type
640 '0', // default = false
641 xl('Removes the Chart Tracker feature')
644 'disable_phpmyadmin_link' => array(
645 xl('Disable phpMyAdmin'),
646 'bool', // data type
647 '0', // default = false
648 xl('Removes support for phpMyAdmin')
651 'disable_immunizations' => array(
652 xl('Disable Immunizations'),
653 'bool', // data type
654 '0', // default = false
655 xl('Removes support for immunizations')
658 'disable_prescriptions' => array(
659 xl('Disable Prescriptions'),
660 'bool', // data type
661 '0', // default = false
662 xl('Removes support for prescriptions')
665 'omit_employers' => array(
666 xl('Omit Employers'),
667 'bool', // data type
668 '0', // default = false
669 xl('Omit employer information in patient demographics')
672 'select_multi_providers' => array(
673 xl('Support Multi-Provider Events'),
674 'bool', // data type
675 '0', // default = false
676 xl('Support calendar events that apply to multiple providers')
679 'disable_non_default_groups' => array(
680 xl('Disable User Groups'),
681 'bool', // data type
682 '1', // default = true
683 xl('Normally this should be checked. Not related to access control.')
686 'ignore_pnotes_authorization' => array(
687 xl('Skip Authorization of Patient Notes'),
688 'bool', // data type
689 '1', // default = true
690 xl('Do not require patient notes to be authorized')
693 'support_encounter_claims' => array(
694 xl('Allow Encounter Claims'),
695 'bool', // data type
696 '0', // default = false
697 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
700 'advance_directives_warning' => array(
701 xl('Advance Directives Warning'),
702 'bool', // data type
703 '0', // default = false
704 xl('Display advance directives in the demographics page.')
707 'configuration_import_export' => array(
708 xl('Configuration Export/Import'),
709 'bool', // data type
710 '0', // default = false
711 xl('Support export/import of configuration data via the Backup page.')
714 'restrict_user_facility' => array(
715 xl('Restrict Users to Facilities'),
716 'bool', // data type
717 '0', // default
718 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
721 'set_facility_cookie' => array(
722 xl('Remember Selected Facility'),
723 'bool', // data type
724 '0', // default
725 xl('Set a facility cookie to remember the selected facility between logins.')
728 'receipts_by_provider' => array(
729 xl('Print Receipts by Provider'),
730 'bool',
731 '0', // default
732 xl('Causes Receipts to Print Encounter/Primary Provider Info')
735 'discount_by_money' => array(
736 xl('Discounts as Monetary Amounts'),
737 'bool', // data type
738 '1', // default = true
739 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
742 'gbl_visit_referral_source' => array(
743 xl('Referral Source for Encounters'),
744 'bool', // data type
745 '0', // default = false
746 xl('A referral source may be specified for each visit.')
749 'gbl_mask_patient_id' => array(
750 xl('Mask for Patient IDs'),
751 'text', // data type
752 '', // default
753 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
756 'gbl_mask_invoice_number' => array(
757 xl('Mask for Invoice Numbers'),
758 'text', // data type
759 '', // default
760 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
763 'gbl_mask_product_id' => array(
764 xl('Mask for Product IDs'),
765 'text', // data type
766 '', // default
767 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
770 'hide_billing_widget' => array(
771 xl('Hide Billing Widget'),
772 'bool', // data type
773 '0', // default = false
774 xl('This will hide the Billing Widget in the Patient Summary screen')
777 'force_billing_widget_open' => array(
778 xl('Force Billing Widget Open'),
779 'bool', // data type
780 '0', // default = false
781 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
784 'activate_ccr_ccd_report' => array(
785 xl('Activate CCR/CCD Reporting'),
786 'bool', // data type
787 '1', // default = true
788 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
791 'hide_document_encryption' => array(
792 xl('Hide Encryption/Decryption Options In Document Management'),
793 'bool', // data type
794 '1', // default = true
795 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
798 'use_custom_immun_list' => array(
799 xl('Use Custom Immunization List'),
800 'bool', // data type
801 '0', // default = true
802 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
805 'cms_1500' => array(
806 xl('CMS 1500 Paper Form Format'),
807 array(
808 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
809 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
811 '1', // default
812 xl('This specifies which revision of the form the billing module should generate')
815 'cms_1500_box_31_format' => array(
816 xl('CMS 1500: Box 31 Format'),
817 array(
818 '0' => xl('Signature on File'),
819 '1' => xl('Firstname Lastname'),
820 '2' => xl('None'),
822 '0', // default
823 xl('This specifies whether to include date in Box 31.')
826 'cms_1500_box_31_date' => array(
827 xl('CMS 1500: Date in Box 31 (Signature)'),
828 array(
829 '0' => xl('None'),
830 '1' => xl('Date of Service'),
831 '2' => xl('Today'),
833 '0', // default
834 xl('This specifies whether to include date in Box 31.')
837 'amendments' => array (
838 xl('Amendments'),
839 'bool', // data type
840 '1', // default = true
841 xl('Enable amendments feature')
844 'allow_pat_delete' => array(
845 xl('Allow Administrators to Delete Patients'),
846 'bool', // data type
847 '0', // default = false
848 xl('Allow Administrators to Delete Patients')
852 'observation_results_immunization' => array(
853 xl('Immunization Observation Results'),
854 'bool', // data type
855 '1', // default
856 xl('Observation Results in Immunization')
860 // Report Tab
862 'Report' => array(
864 'use_custom_daysheet' => array(
865 xl('Use Custom End of Day Report'),
866 array(
867 '0' => xl('None'),
868 '1' => xl('Print End of Day Report 1'),
869 '2' => xl('Print End of Day Report 2'),
870 '3' => xl('Print End of Day Report 3'),
871 ), // data type
872 '1', // default = Print End of Day Report 1
873 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
876 'daysheet_provider_totals' => array(
877 xl('End of Day by Provider or allow Totals Only'),
878 array(
879 '0' => xl('Provider'),
880 '1' => xl('Totals Only'),
882 '1', // default
883 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
886 'ledger_begin_date' => array(
887 xl('Beginning Date for Ledger Report'),
888 array(
889 'Y1' => xl('One Year Ago'),
890 'Y2' => xl('Two Years Ago'),
891 'M6' => xl('Six Months Ago'),
892 'M3' => xl('Three Months Ago'),
893 'M1' => xl('One Month Ago'),
894 'D1' => xl('One Day Ago'),
896 'Y1', // default = One Year
897 xl('This is the Beginning date for the Ledger Report.')
900 'print_next_appointment_on_ledger' => array(
901 xl('Print the Next Appointment on the Bottom of the Ledger'),
902 'bool', // data type
903 '1', // default = true
904 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
907 'sales_report_invoice' => array(
908 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
909 array(
910 '0' => xl('Invoice Number'),
911 '1' => xl('Patient Name and ID'),
912 '2' => xl('Patient Name and Invoice'),
914 '2', // default = 2
915 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
918 'cash_receipts_report_invoice' => array(
919 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
920 array(
921 '0' => xl('Invoice Number'),
922 '1' => xl('Patient Name'),
924 '0', // default = 0
925 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
930 // Billing Tab
932 'Billing' => array(
934 'default_search_code_type' => array(
935 xl('Default Search Code Type'),
936 'all_code_types', // data type
937 'ICD10', // default
938 xl('The default code type to search for in the Fee Sheet.')
941 'support_fee_sheet_line_item_provider' => array(
942 xl('Support provider in line item in fee sheet'),
943 'bool', // data type
944 '0', // default = false
945 xl('This Enables provider in line item in the fee sheet')
948 'default_fee_sheet_line_item_provider' => array(
949 xl('Default to a provider for line item in the fee sheet'),
950 'bool', // data type
951 '0', // default = false
952 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
955 'replicate_justification' => array(
956 xl('Automatically replicate justification codes in Fee Sheet'),
957 'bool', // data type
958 '0', // default = false
959 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
962 'display_units_in_billing' => array(
963 xl('Display the Units Column on the Billing Screen'),
964 'bool', // data type
965 '0', // default = false
966 xl('Display the Units Column on the Billing Screen')
969 'notes_to_display_in_Billing' => array(
970 xl('Which notes are to be displayed in the Billing Screen'),
971 array(
972 '0' => xl('None'),
973 '1' => xl('Encounter Billing Note'),
974 '2' => xl('Patient Billing Note'),
975 '3' => xl('All'),
977 '3',
978 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
981 'set_pos_code_encounter' => array(
982 xl('Set POS code in encounter'),
983 'bool', // data type
984 '0', // default = false
985 xl('This feature will allow the default POS facility code to be overriden from the encounter.')
988 'use_custom_statement' => array(
989 xl('Use Custom Statement'),
990 'bool', // data type
991 '0', // default = false
992 xl('This will use the custom Statment showing the description instead of the codes.')
995 'show_aging_on_custom_statement' => array(
996 xl('Show Aging on Custom Statement'),
997 'bool', // data type
998 '0', // default = false
999 xl('This will Show Aging on the custom Statement.')
1002 'use_statement_print_exclusion' => array(
1003 xl('Allow Statement Exclusions from Printing'),
1004 'bool', // data type
1005 '0', // default = false
1006 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1009 'minimum_amount_to_print' => array(
1010 xl('Total Minimum Amount of Statement to Allow Printing'),
1011 'num', // data type
1012 '1.00',
1013 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1016 'statement_bill_note_print' => array(
1017 xl('Print Patient Billing Note'),
1018 'bool', // data type
1019 '0', // default = false
1020 xl('This will allow printing of the Patient Billing Note on the statements.')
1023 'number_appointments_on_statement' => array(
1024 xl('Number of Appointments on Statement'),
1025 'num', // data type
1026 '0', // default = 0
1027 xl('The Number of Future Appointments to Display on the Statement.')
1030 'statement_message_to_patient' => array(
1031 xl('Print Custom Message'),
1032 'bool', // data type
1033 '0', // default = false
1034 xl('This will allow printing of a custom Message on the statements.')
1037 'statement_msg_text' => array(
1038 xl('Custom Statement message'),
1039 'text', // data type
1041 xl('Text for Custom statement message.')
1044 'use_dunning_message' => array(
1045 xl('Use Custom Dunning Messages'),
1046 'bool', // data type
1047 '0', // default = false
1048 xl('This will allow use of the custom Dunning Messages on the statements.')
1051 'first_dun_msg_set' => array(
1052 xl('Number of days before showing first account message'),
1053 'num', // data type
1054 '30',
1055 xl('Number of days before showing first account message.')
1058 'first_dun_msg_text' => array(
1059 xl('First account message'),
1060 'text', // data type
1062 xl('Text for first account message.')
1065 'second_dun_msg_set' => array(
1066 xl('Number of days before showing second account message'),
1067 'num', // data type
1068 '60',
1069 xl('Number of days before showing second account message')
1072 'second_dun_msg_text' => array(
1073 xl('Second account message'),
1074 'text', // data type
1076 xl('Text for second account message.')
1079 'third_dun_msg_set' => array(
1080 xl('Number of days before showing third account message'),
1081 'num', // data type
1082 '90',
1083 xl('Number of days before showing third account message')
1086 'third_dun_msg_text' => array(
1087 xl('Third account message'),
1088 'text', // data type
1090 xl('Text for third account message.')
1093 'fourth_dun_msg_set' => array(
1094 xl('Number of days before showing fourth account message'),
1095 'num', // data type
1096 '120',
1097 xl('Number of days before showing fourth account message')
1100 'fourth_dun_msg_text' => array(
1101 xl('Fourth account message'),
1102 'text', // data type
1104 xl('Text for fourth account message.')
1107 'fifth_dun_msg_set' => array(
1108 xl('Number of days before showing fifth account message'),
1109 'num', // data type
1110 '150',
1111 xl('Number of days before showing fifth account message')
1114 'fifth_dun_msg_text' => array(
1115 xl('Fifth account message'),
1116 'text', // data type
1118 xl('Text for fifth account message.')
1122 // E-Sign Tab
1124 'E-Sign' => array(
1126 'esign_all' => array(
1127 xl('Allows E-Sign on the entire encounter'),
1128 'bool', // data type
1129 '0', // default = false
1130 xl('This will enable signing an entire encounter, rather than individual forms')
1133 'lock_esign_all' => array(
1134 xl('Lock e-signed encounters and their forms'),
1135 'bool', // data type
1136 '0', // default = false
1137 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1140 'esign_individual' => array(
1141 xl('Allows E-Signing Individual Forms'),
1142 'bool', // data type
1143 '1', // default = false
1144 xl('This will enable signing individual forms separately')
1147 'lock_esign_individual' => array(
1148 xl('Lock an e-signed form individually'),
1149 'bool', // data type
1150 '1', // default = false
1151 xl('This will disable the Edit button on any form that is e-signed')
1154 'esign_lock_toggle' => array(
1155 xl('Enable lock toggle'),
1156 'bool', // data type
1157 '0', // default = false
1158 xl('This will give the user the option to lock (separate locking and signing)')
1161 'esign_report_hide_empty_sig' => array(
1162 xl('Hide Empty E-Sign Logs On Report'),
1163 'bool', // data type
1164 '1', // default = false
1165 xl('This will hide empty e-sign logs on the patient report')
1169 //Documents Tab
1170 'Documents' => array(
1172 'document_storage_method' => array(
1173 xl('Document Storage Method'),
1174 array(
1175 '0' => xl('Hard Disk'),
1176 '1' => xl('CouchDB')
1178 '0', // default
1179 xl('Option to save method of document storage.')
1181 'couchdb_host' => array(
1182 xl('CouchDB HostName'),
1183 'text',
1184 'localhost',
1185 xl('CouchDB host'),
1187 'couchdb_user' => array(
1188 xl('CouchDB UserName'),
1189 'text',
1191 xl('Username to connect to CouchDB'),
1193 'couchdb_pass' => array(
1194 xl('CouchDB Password'),
1195 'text',
1197 xl('Password to connect to CouchDB'),
1199 'couchdb_port' => array(
1200 xl('CouchDB Port'),
1201 'text',
1202 '5984',
1203 xl('CouchDB port'),
1205 'couchdb_dbase' => array(
1206 xl('CouchDB Database'),
1207 'text',
1209 xl('CouchDB database name'),
1211 'couchdb_log' => array(
1212 xl('CouchDB Log Enable'),
1213 'bool',
1214 '0',
1215 xl('Enable log for document uploads/downloads to CouchDB'),
1218 'expand_document_tree' => array(
1219 xl('Expand All Document Categories'),
1220 'bool', // data type
1221 '0', // default = false
1222 xl('Expand All Document Categories by Default')
1225 'patient_id_category_name' => array(
1226 xl('Patient ID Category Name'),
1227 'text', // data type
1228 'Patient ID card', // default
1229 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1232 'patient_photo_category_name' => array(
1233 xl('Patient Photo Category Name'),
1234 'text', // data type
1235 'Patient Photograph', // default
1236 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1239 'lab_results_category_name' => array(
1240 xl('Lab Results Category Name'),
1241 'text', // data type
1242 'Lab Report', // default
1243 xl('Document category name for storage of electronically received lab results.')
1246 'gbl_mdm_category_name' => array(
1247 xl('MDM Document Category Name'),
1248 'text', // data type
1249 'Lab Report', // default
1250 xl('Document category name for storage of electronically received MDM documents.')
1252 'generate_doc_thumb' => array(
1253 xl('Generate thumbnail'),
1254 'bool',
1255 '0',
1256 xl('Generate thumbnail images'),
1258 'thumb_doc_max_size' => array(
1259 xl('Thumbnail size'),
1260 'text', // data type
1261 '100', // default
1262 xl('Maximum size of thumbnail file')
1266 // Calendar Tab
1268 'Calendar' => array(
1270 'disable_calendar' => array(
1271 xl('Disable Calendar'),
1272 'bool', // data type
1273 '0', // default
1274 xl('Do not display the calendar.')
1277 'schedule_start' => array(
1278 xl('Calendar Starting Hour'),
1279 'hour',
1280 '8', // default
1281 xl('Beginning hour of day for calendar events.')
1284 'schedule_end' => array(
1285 xl('Calendar Ending Hour'),
1286 'hour',
1287 '17', // default
1288 xl('Ending hour of day for calendar events.')
1291 'calendar_interval' => array(
1292 xl('Calendar Interval'),
1293 array(
1294 '5' => '5',
1295 '10' => '10',
1296 '15' => '15',
1297 '20' => '20',
1298 '30' => '30',
1299 '60' => '60',
1301 '15', // default
1302 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1305 'calendar_view_type' => array(
1306 xl('Default Calendar View'),
1307 array(
1308 'day' => xl('Day'),
1309 'week' => xl('Week'),
1310 'month' => xl('Month'),
1312 'day', // default
1313 xl('This sets the Default Calendar View, Default is Day.')
1315 'first_day_week' => array(
1316 xl('First day in the week') ,
1317 array(
1318 '1' => xl('Monday'),
1319 '0' => xl('Sunday'),
1320 '6' => xl('Saturday')
1322 '1',
1323 xl('Your first day in the week.')
1325 'calendar_appt_style' => array(
1326 xl('Appointment Display Style'),
1327 array(
1328 '1' => 'Last name',
1329 '2' => 'Last name, first name',
1330 '3' => 'Last name, first name (title)',
1331 '4' => 'Last name, first name (title: description)',
1333 '2', // default
1334 xl('This determines how appointments display on the calendar.')
1337 'event_color' => array(
1338 xl('Appointment/Event Color'),
1339 array(
1340 '1' => 'Category Color Schema',
1341 '2' => 'Facility Color Schema',
1342 ), // data type
1343 '1', // default
1344 xl('This determines which color schema used for appointment')
1347 'number_of_appts_to_show' => array(
1348 xl('Appointments - Patient Summary - Number to Display'),
1349 'num',
1350 '10',
1351 xl('Number of Appointments to display in the Patient Summary')
1355 'patient_portal_appt_display_num' => array(
1356 xl('Appointments - Onsite Patient Portal - Number to Display'),
1357 'num',
1358 '20',
1359 xl('Number of Appointments to display in the Onsite Patient Portal')
1362 'appt_display_sets_option' => array(
1363 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1364 'bool', // data type
1365 '1', // default
1366 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1369 'appt_display_sets_color_1' => array(
1370 xl('Appointment Display Sets - Color 1'),
1371 'color_code',
1372 '#FFFFFF',
1373 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).')
1376 'appt_display_sets_color_2' => array(
1377 xl('Appointment Display Sets - Color 2'),
1378 'color_code',
1379 '#E6E6FF',
1380 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).')
1383 'appt_display_sets_color_3' => array(
1384 xl('Appointment Display Sets - Color 3'),
1385 'color_code',
1386 '#E6FFE6',
1387 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1390 'appt_display_sets_color_4' => array(
1391 xl('Appointment Display Sets - Color 4'),
1392 'color_code',
1393 '#FFE6FF',
1394 xl('Color for the last set when not all member appointments are displayed.')
1397 'appt_recurrences_widget' => array(
1398 xl('Recurrent Appointment Display Widget'),
1399 'bool', // data type
1400 '1', // default
1401 xl('Display the recurrent appointment widget in the patient summary.')
1404 'num_past_appointments_to_show' => array(
1405 xl('Past Appointment Display Widget'),
1406 'num', // data type
1407 '0', // default = false
1408 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)')
1411 'docs_see_entire_calendar' => array(
1412 xl('Providers See Entire Calendar'),
1413 'bool', // data type
1414 '0', // default
1415 xl('Check this if you want providers to see all appointments by default and not just their own.')
1418 'auto_create_new_encounters' => array(
1419 xl('Auto-Create New Encounters'),
1420 'bool', // data type
1421 '1', // default
1422 xl('Automatically create a new encounter when an appointment check in status is selected.')
1425 'disable_pat_trkr' => array(
1426 xl('Disable Patient Flow Board'),
1427 'bool', // data type
1428 '0', // default
1429 xl('Do not display the patient flow board.')
1432 'ptkr_visit_reason' => array(
1433 xl('Show Visit Reason in Patient Flow Board'),
1434 'bool', // data type
1435 '0', // default = false
1436 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1439 'ptkr_show_pid' => array(
1440 xl('Show Patient ID in Patient Flow Board'),
1441 'bool', // data type
1442 '1', // default = true
1443 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1446 'ptkr_show_encounter' => array(
1447 xl('Show Patient Encounter Number in Patient Flow Board'),
1448 'bool', // data type
1449 '1', // default = true
1450 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1453 'pat_trkr_timer' => array(
1454 xl('Patient Flow Board Timer Interval'),
1455 array(
1456 '0' => 'No automatic refresh',
1457 '0:10' => '10',
1458 '0:20' => '20',
1459 '0:30' => '30',
1460 '0:40' => '40',
1461 '0:50' => '50',
1462 '0:59' => '60',
1464 '0:20', // default
1465 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1468 'checkout_roll_off' => array(
1469 xl('Number of Minutes to display completed checkouts'),
1470 'num',
1471 '0', // default
1472 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1475 'drug_screen' => array(
1476 xl('Enable Random Drug Testing'),
1477 'bool', // data type
1478 '0', // default
1479 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1482 'drug_testing_percentage' => array(
1483 xl('Percentage of Patients to Drug Test'),
1484 'num',
1485 '33', // default
1486 xl('Percentage of Patients to select for Random Drug Testing.')
1489 'maximum_drug_test_yearly' => array(
1490 xl('Maximum number of times a Patient can be tested in a year'),
1491 'num',
1492 '0', // default
1493 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1498 // Security Tab
1500 'Security' => array(
1502 'timeout' => array(
1503 xl('Idle Session Timeout Seconds'),
1504 'num', // data type
1505 '7200', // default
1506 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1509 'secure_password' => array(
1510 xl('Require Strong Passwords'),
1511 'bool', // data type
1512 '0', // default
1513 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1516 'password_history' => array(
1517 xl('Require Unique Passwords'),
1518 'bool', // data type
1519 '0', // default
1520 xl('Means none of last three passwords are allowed when changing a password.')
1522 'password_compatibility' => array(
1523 xl('Permit unsalted passwords'),
1524 'bool', // data type
1525 '1', // default
1526 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')
1529 'password_expiration_days' => array(
1530 xl('Default Password Expiration Days'),
1531 'num', // data type
1532 '0', // default
1533 xl('Default password expiration period in days. 0 means this feature is disabled.')
1536 'password_grace_time' => array(
1537 xl('Password Expiration Grace Period'),
1538 'num', // data type
1539 '0', // default
1540 xl('Period in days where a user may login with an expired password.')
1543 'is_client_ssl_enabled' => array(
1544 xl('Enable Client SSL'),
1545 'bool', // data type
1546 '0', // default
1547 xl('Enable client SSL certificate authentication.')
1550 'certificate_authority_crt' => array(
1551 xl('Path to CA Certificate File'),
1552 'text', // data type
1553 '', // default
1554 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1557 'certificate_authority_key' => array(
1558 xl('Path to CA Key File'),
1559 'text', // data type
1560 '', // default
1561 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1564 'client_certificate_valid_in_days' => array(
1565 xl('Client Certificate Expiration Days'),
1566 'num', // data type
1567 '365', // default
1568 xl('Number of days that the client certificate is valid.')
1571 'Emergency_Login_email_id' => array(
1572 xl('Emergency Login Email Address'),
1573 'text', // data type
1574 '', // default
1575 xl('Email address, if any, to receive emergency login user activation messages.')
1577 'new_validate' => array(
1578 xl('New form validation'),
1579 'bool',
1580 '1',
1581 xl('New form validation')
1586 // Notifications Tab
1588 'Notifications' => array(
1590 'patient_reminder_sender_name' => array(
1591 xl('Patient Reminder Sender Name'),
1592 'text', // data type
1593 '', // default
1594 xl('Name of the sender for patient reminders.')
1597 'patient_reminder_sender_email' => array(
1598 xl('Patient Reminder Sender Email'),
1599 'text', // data type
1600 '', // default
1601 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.')
1604 'practice_return_email_path' => array(
1605 xl('Notification Email Address'),
1606 'text', // data type
1607 '', // default
1608 xl('Email address, if any, to receive administrative notifications.')
1611 'EMAIL_METHOD' => array(
1612 xl('Email Transport Method'),
1613 array(
1614 'PHPMAIL' => 'PHPMAIL',
1615 'SENDMAIL' => 'SENDMAIL',
1616 'SMTP' => 'SMTP',
1618 'SMTP', // default
1619 xl('Method for sending outgoing email.')
1622 'SMTP_HOST' => array(
1623 xl('SMTP Server Hostname'),
1624 'text', // data type
1625 'localhost', // default
1626 xl('If SMTP is used, the server`s hostname or IP address.')
1629 'SMTP_PORT' => array(
1630 xl('SMTP Server Port Number'),
1631 'num', // data type
1632 '25', // default
1633 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1636 'SMTP_USER' => array(
1637 xl('SMTP User for Authentication'),
1638 'text', // data type
1639 '', // default
1640 xl('Must be empty if SMTP authentication is not used.')
1643 'SMTP_PASS' => array(
1644 xl('SMTP Password for Authentication'),
1645 'text', // data type
1646 '', // default
1647 xl('Must be empty if SMTP authentication is not used.')
1650 'SMTP_SECURE' => array(
1651 xl('SMTP Security Protocol'),
1652 array(
1653 '' => xl('None'),
1654 'ssl' => 'SSL',
1655 'tls' => 'TLS'
1658 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1661 'EMAIL_NOTIFICATION_HOUR' => array(
1662 xl('Email Notification Hours'),
1663 'num', // data type
1664 '50', // default
1665 xl('Number of hours in advance to send email notifications.')
1668 'SMS_NOTIFICATION_HOUR' => array(
1669 xl('SMS Notification Hours'),
1670 'num', // data type
1671 '50', // default
1672 xl('Number of hours in advance to send SMS notifications.')
1675 'SMS_GATEWAY_USENAME' => array(
1676 xl('SMS Gateway Username'),
1677 'text', // data type
1678 '', // default
1679 xl('Username for SMS Gateway.')
1682 'SMS_GATEWAY_PASSWORD' => array(
1683 xl('SMS Gateway Password'),
1684 'text', // data type
1685 '', // default
1686 xl('Password for SMS Gateway.')
1689 'SMS_GATEWAY_APIKEY' => array(
1690 xl('SMS Gateway API Key'),
1691 'text', // data type
1692 '', // default
1693 xl('API key for SMS Gateway.')
1696 'phone_notification_hour' => array(
1697 xl('Phone Notification Hour'),
1698 'num', // data type
1699 '50', // default
1700 xl('Number of hours in advance to send Phone notification.')
1703 'phone_gateway_username' => array(
1704 xl('Phone Gateway Username'),
1705 'text', // data type
1706 '', // default
1707 xl('Username for Phone Gateway.')
1710 'phone_gateway_password' => array(
1711 xl('Phone Gateway Password'),
1712 'text', // data type
1713 '', // default
1714 xl('Password for Phone Gateway.')
1717 'phone_gateway_url' => array(
1718 xl('Phone Gateway URL'),
1719 'text', // data type
1720 '', // default
1721 xl('URL for Phone Gateway.')
1726 // CDR (Clinical Decision Rules)
1728 'CDR' => array(
1730 'enable_cdr' => array(
1731 xl('Enable Clinical Decisions Rules (CDR)'),
1732 'bool', // data type
1733 '1', // default
1734 xl('Enable Clinical Decisions Rules (CDR)')
1737 'enable_allergy_check' => array(
1738 xl('Enable Allergy Check'),
1739 'bool', // data type
1740 '1', // default
1741 xl('Enable Allergy Check Against Medications and Prescriptions')
1744 'enable_alert_log' => array(
1745 xl('Enable Alert Log'),
1746 'bool', // data type
1747 '1', // default
1748 xl('Enable Alert Logging')
1751 'enable_cdr_new_crp' => array(
1752 xl('Enable Clinical Passive New Reminder(s) Popup'),
1753 'bool', // data type
1754 '1', // default
1755 xl('Enable Clinical Passive New Reminder(s) Popup')
1758 'enable_cdr_crw' => array(
1759 xl('Enable Clinical Passive Reminder Widget'),
1760 'bool', // data type
1761 '1', // default
1762 xl('Enable Clinical Passive Reminder Widget')
1765 'enable_cdr_crp' => array(
1766 xl('Enable Clinical Active Reminder Popup'),
1767 'bool', // data type
1768 '1', // default
1769 xl('Enable Clinical Active Reminder Popup')
1772 'enable_cdr_prw' => array(
1773 xl('Enable Patient Reminder Widget'),
1774 'bool', // data type
1775 '1', // default
1776 xl('Enable Patient Reminder Widget')
1779 'enable_cqm' => array(
1780 xl('Enable CQM Reporting'),
1781 'bool', // data type
1782 '1', // default
1783 xl('Enable Clinical Quality Measure (CQM) Reporting')
1786 'pqri_registry_name' => array(
1787 xl('PQRI Registry Name'),
1788 'text', // data type
1789 'Model Registry', // default
1790 xl('PQRI Registry Name')
1793 'pqri_registry_id' => array(
1794 xl('PQRI Registry ID'),
1795 'text', // data type
1796 '125789123', // default
1797 xl('PQRI Registry ID')
1800 'enable_amc' => array(
1801 xl('Enable AMC Reporting'),
1802 'bool', // data type
1803 '1', // default
1804 xl('Enable Automated Measure Calculations (AMC) Reporting')
1807 'enable_amc_prompting' => array(
1808 xl('Enable AMC Prompting'),
1809 'bool', // data type
1810 '1', // default
1811 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1814 'enable_amc_tracking' => array(
1815 xl('Enable AMC Tracking'),
1816 'bool', // data type
1817 '1', // default
1818 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
1821 'cdr_report_nice' => array(
1822 xl('CDR Reports Processing Priority'),
1823 array(
1824 '' => xl('Default Priority'),
1825 '5' => xl('Moderate Priority'),
1826 '10' => xl('Moderate/Low Priority'),
1827 '15' => xl('Low Priority'),
1828 '20' => xl('Lowest Priority')
1830 '', // default
1831 xl('Set processing priority for CDR engine based reports.')
1834 'pat_rem_clin_nice' => array(
1835 xl('Patient Reminder Creation Processing Priority'),
1836 array(
1837 '' => xl('Default Priority'),
1838 '5' => xl('Moderate Priority'),
1839 '10' => xl('Moderate/Low Priority'),
1840 '15' => xl('Low Priority'),
1841 '20' => xl('Lowest Priority')
1843 '', // default
1844 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
1847 'report_itemizing_standard' => array(
1848 xl('Enable Standard Report Itemization'),
1849 'bool', // data type
1850 '1', // default
1851 xl('Enable Itemization of Standard Clinical Rules Reports')
1854 'report_itemizing_cqm' => array(
1855 xl('Enable CQM Report Itemization'),
1856 'bool', // data type
1857 '1', // default
1858 xl('Enable Itemization of CQM Reports')
1861 'report_itemizing_amc' => array(
1862 xl('Enable AMC Report Itemization'),
1863 'bool', // data type
1864 '1', // default
1865 xl('Enable Itemization of AMC Reports')
1870 // Logging
1872 'Logging' => array(
1874 'enable_auditlog' => array(
1875 xl('Enable Audit Logging'),
1876 'bool', // data type
1877 '1', // default
1878 xl('Enable Audit Logging')
1881 'audit_events_patient-record' => array(
1882 xl('Audit Logging Patient Record'),
1883 'bool', // data type
1884 '1', // default
1885 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1888 'audit_events_scheduling' => array(
1889 xl('Audit Logging Scheduling'),
1890 'bool', // data type
1891 '1', // default
1892 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1895 'audit_events_order' => array(
1896 xl('Audit Logging Order'),
1897 'bool', // data type
1898 '1', // default
1899 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1902 'audit_events_security-administration' => array(
1903 xl('Audit Logging Security Administration'),
1904 'bool', // data type
1905 '1', // default
1906 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1909 'audit_events_backup' => array(
1910 xl('Audit Logging Backups'),
1911 'bool', // data type
1912 '1', // default
1913 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1916 'audit_events_other' => array(
1917 xl('Audit Logging Miscellaneous'),
1918 'bool', // data type
1919 '1', // default
1920 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1923 'audit_events_query' => array(
1924 xl('Audit Logging SELECT Query'),
1925 'bool', // data type
1926 '0', // default
1927 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1930 'audit_events_cdr' => array(
1931 xl('Audit CDR Engine Queries'),
1932 'bool', // data type
1933 '0', // default
1934 xl('Enable logging of CDR Engine Queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1937 'enable_atna_audit' => array(
1938 xl('Enable ATNA Auditing'),
1939 'bool', // data type
1940 '0', // default
1941 xl('Enable Audit Trail and Node Authentication (ATNA).')
1944 'atna_audit_host' => array(
1945 xl('ATNA audit host'),
1946 'text', // data type
1947 '', // default
1948 xl('The hostname of the ATNA audit repository machine.')
1951 'atna_audit_port' => array(
1952 xl('ATNA audit port'),
1953 'text', // data type
1954 '6514', // default
1955 xl('Listening port of the RFC 5425 TLS syslog server.')
1958 'atna_audit_localcert' => array(
1959 xl('ATNA audit local certificate'),
1960 'text', // data type
1961 '', // default
1962 xl('Certificate to send to RFC 5425 TLS syslog server.')
1965 'atna_audit_cacert' => array(
1966 xl('ATNA audit CA certificate'),
1967 'text', // data type
1968 '', // default
1969 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
1972 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
1973 'enable_auditlog_encryption' => array(
1974 xl('Enable Audit Log Encryption'),
1975 'bool', // data type
1976 '0', // default
1977 xl('Enable Audit Log Encryption')
1980 'billing_log_option' => array(
1981 xl('Billing Log Option'),
1982 array(
1983 '1' => xl('Billing Log Append'),
1984 '2' => xl('Billing Log Overwrite')
1986 '1', // default
1987 xl('Billing log setting to append or overwrite the log file.')
1990 'gbl_print_log_option' => array(
1991 xl('Printing Log Option'),
1992 array(
1993 '0' => xl('No logging'),
1994 '1' => xl('Hide print feature'),
1995 '2' => xl('Log entire document'),
1997 '0', // default
1998 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2003 // Miscellaneous Tab
2005 'Miscellaneous' => array(
2007 'mysql_bin_dir' => array(
2008 xl('Path to MySQL Binaries'),
2009 'text', // data type
2010 $mysql_bin_dir, // default
2011 xl('Full path to directory containing MySQL executables.')
2014 'perl_bin_dir' => array(
2015 xl('Path to Perl Binaries'),
2016 'text', // data type
2017 $perl_bin_dir, // default
2018 xl('Full path to directory containing Perl executables.')
2021 'temporary_files_dir' => array(
2022 xl('Path to Temporary Files'),
2023 'text', // data type
2024 $temporary_files_dir, // default
2025 xl('Full path to directory used for temporary files.')
2028 'backup_log_dir' => array(
2029 xl('Path for Event Log Backup'),
2030 'text', // data type
2031 $backup_log_dir, // default
2032 xl('Full path to directory for event log backup.')
2035 'state_data_type' => array(
2036 xl('State Data Type'),
2037 array(
2038 '2' => xl('Text field'),
2039 '1' => xl('Single-selection list'),
2040 '26' => xl('Single-selection list with ability to add to the list'),
2042 '26', // default
2043 xl('Field type to use for employer or subscriber state in demographics.')
2046 'state_list' => array(
2047 xl('State list'),
2048 'text', // data type
2049 'state', // default
2050 xl('List used by above State Data Type option.')
2053 'state_custom_addlist_widget' => array(
2054 xl('State List Widget Custom Fields'),
2055 'bool', // data type
2056 '1', // default
2057 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2060 'country_data_type' => array(
2061 xl('Country Data Type'),
2062 array(
2063 '2' => xl('Text field'),
2064 '1' => xl('Single-selection list'),
2065 '26' => xl('Single-selection list with ability to add to the list'),
2067 '26', // default
2068 xl('Field type to use for employer or subscriber country in demographics.')
2071 'country_list' => array(
2072 xl('Country list'),
2073 'text', // data type
2074 'country', // default
2075 xl('List used by above Country Data Type option.')
2078 'print_command' => array(
2079 xl('Print Command'),
2080 'text', // data type
2081 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2082 xl('Shell command for printing from the server.')
2085 'default_chief_complaint' => array(
2086 xl('Default Reason for Visit'),
2087 'text', // data type
2089 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2092 'default_new_encounter_form' => array(
2093 xl('Default Encounter Form ID'),
2094 'text', // data type
2096 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
2099 'MedicareReferrerIsRenderer' => array(
2100 xl('Medicare Referrer Is Renderer'),
2101 'bool', // data type
2102 '0', // default = true
2103 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2106 'post_to_date_benchmark' => array(
2107 xl('Financial Close Date (yyyy-mm-dd)'),
2108 'text', // data type
2109 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
2110 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2113 'enable_hylafax' => array(
2114 xl('Enable Hylafax Support'),
2115 'bool', // data type
2116 '0', // default
2117 xl('Enable Hylafax Support')
2120 'hylafax_server' => array(
2121 xl('Hylafax Server'),
2122 'text', // data type
2123 'localhost', // default
2124 xl('Hylafax server hostname.')
2127 'hylafax_basedir' => array(
2128 xl('Hylafax Directory'),
2129 'text', // data type
2130 '/var/spool/fax', // default
2131 xl('Location where Hylafax stores faxes.')
2134 'hylafax_enscript' => array(
2135 xl('Hylafax Enscript Command'),
2136 'text', // data type
2137 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2138 xl('Enscript command used by Hylafax.')
2141 'enable_scanner' => array(
2142 xl('Enable Scanner Support'),
2143 'bool', // data type
2144 '0', // default
2145 xl('Enable Scanner Support')
2148 'scanner_output_directory' => array(
2149 xl('Scanner Directory'),
2150 'text', // data type
2151 '/mnt/scan_docs', // default
2152 xl('Location where scans are stored.')
2156 // Portal Tab
2158 'Portal' => array(
2160 'portal_onsite_enable' => array(
2161 xl('Enable Onsite Patient Portal'),
2162 'bool', // data type
2163 '0',
2164 xl('Enable Onsite Patient Portal.')
2167 'portal_onsite_address' => array(
2168 xl('Onsite Patient Portal Site Address'),
2169 'text', // data type
2170 'https://your_web_site.com/openemr/patients',
2171 xl('Website link for the Onsite Patient Portal.')
2174 'portal_onsite_document_download' => array(
2175 xl('Enable Onsite Patient Portal Document Download'),
2176 'bool', // data type
2177 '1',
2178 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2181 'portal_offsite_enable' => array(
2182 xl('Enable Offsite Patient Portal'),
2183 'bool', // data type
2184 '0',
2185 xl('Enable Offsite Patient Portal.')
2188 'portal_offsite_providerid' => array(
2189 xl('Offsite Patient Portal Provider ID'),
2190 'text', // data type
2192 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2195 'portal_offsite_username' => array(
2196 xl('Offsite Patient Portal Username'),
2197 'text', // data type
2199 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2202 'portal_offsite_password' => array(
2203 xl('Offsite Patient Portal Password'),
2204 'pwd', // data type
2206 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2209 'portal_offsite_address' => array(
2210 xl('Offsite Patient Portal Site Address'),
2211 'text', // data type
2212 'https://ssh.mydocsportal.com/provider.php',
2213 xl('Offsite Https link for the Patient Portal.')
2216 'portal_offsite_address_patient_link' => array(
2217 xl('Offsite Patient Portal Site Address (Patient Link)'),
2218 'text', // data type
2219 'https://ssh.mydocsportal.com',
2220 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2223 // Currently the "CMS Portal" supports WordPress. Other Content Management
2224 // Systems may be supported in the future.
2226 'gbl_portal_cms_enable' => array(
2227 xl('Enable CMS Portal'),
2228 'bool', // data type
2229 '0',
2230 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2233 'gbl_portal_cms_address' => array(
2234 xl('CMS Portal Site Address'),
2235 'text', // data type
2236 'https://your_cms_site.com/',
2237 xl('URL for the WordPress site that supports the portal')
2240 'gbl_portal_cms_username' => array(
2241 xl('CMS Portal Username'),
2242 'text', // data type
2244 xl('Login name of WordPress user for portal access')
2247 'gbl_portal_cms_password' => array(
2248 xl('CMS Portal Password'),
2249 'text', // data type
2251 xl('Password for the above user')
2256 // Connectors Tab
2258 'Connectors' => array(
2260 'erx_enable' => array(
2261 xl('Enable NewCrop eRx Service'),
2262 'bool',
2263 '0',
2264 xl('Enable NewCrop eRx Service.') + ' ' +
2265 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.')
2268 'erx_newcrop_path' => array(
2269 xl('NewCrop eRx Site Address'),
2270 'text',
2271 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2272 xl('URL for NewCrop eRx Site Address.')
2275 'erx_newcrop_path_soap' => array(
2276 xl('NewCrop eRx Web Service Address'),
2277 'text',
2278 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2279 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2282 'erx_soap_ttl_allergies' => array(
2283 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2284 'num',
2285 '21600',
2286 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2289 'erx_soap_ttl_medications' => array(
2290 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2291 'num',
2292 '21600',
2293 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2296 'erx_account_partner_name' => array(
2297 xl('NewCrop eRx Partner Name'),
2298 'text',
2300 xl('Partner Name issued for NewCrop eRx service.')
2303 'erx_account_name' => array(
2304 xl('NewCrop eRx Name'),
2305 'text',
2307 xl('Account Name issued for NewCrop eRx service.')
2310 'erx_account_password' => array(
2311 xl('NewCrop eRx Password'),
2312 'pass',
2314 xl('Account Password issued for NewCrop eRx service.')
2317 'erx_account_id' => array(
2318 xl('NewCrop eRx Account Id'),
2319 'text',
2320 '1',
2321 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2324 'erx_upload_active' => array(
2325 xl('Only upload active prescriptions'),
2326 'bool',
2327 '0',
2328 xl('Only upload active prescriptions to NewCrop eRx.')
2331 'erx_import_status_message' => array(
2332 xl('Enable NewCrop eRx import status message'),
2333 'bool',
2334 '0',
2335 xl('Enable import status message after visiting NewCrop eRx.')
2338 'erx_medication_display' => array(
2339 xl('Do not display NewCrop eRx Medications uploaded'),
2340 'bool',
2341 '0',
2342 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2345 'erx_allergy_display' => array(
2346 xl('Do not display NewCrop eRx Allergy uploaded'),
2347 'bool',
2348 '0',
2349 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2352 'erx_default_patient_country' => array(
2353 xl('NewCrop eRx Default Patient Country'),
2354 array(
2355 '' => '',
2356 'US' => xl('USA'),
2357 'CA' => xl('Canada'),
2358 'MX' => xl('Mexico'),
2361 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2364 'erx_debug_setting' => array(
2365 xl('NewCrop eRx Debug Setting'),
2366 array(
2367 0 => xl('None'),
2368 1 => xl('Request Only'),
2369 2 => xl('Response Only'),
2370 3 => xl('Request & Response'),
2372 '0',
2373 xl('Log all NewCrop eRx Requests and / or Responses.'),
2376 'phimail_enable' => array(
2377 xl('Enable phiMail Direct Messaging Service'),
2378 'bool', // data type
2379 '0',
2380 xl('Enable phiMail Direct Messaging Service')
2383 'phimail_server_address' => array(
2384 xl('phiMail Server Address'),
2385 'text', // data type
2386 'https://phimail.example.com:32541',
2387 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2390 'phimail_username' => array(
2391 xl('phiMail Username'),
2392 'text', // data type
2394 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2397 'phimail_password' => array(
2398 xl('phiMail Password'),
2399 'pass', // data type
2401 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2404 'phimail_notify' => array(
2405 xl('phiMail notification user'),
2406 'text', // data type
2407 'admin',
2408 xl('This user will receive notification of new incoming Direct messages')
2411 'phimail_interval' => array(
2412 xl('phiMail Message Check Interval (minutes)'),
2413 'num', // data type
2414 '5',
2415 xl('Interval between message checks (set to zero for manual checks only)')
2418 'phimail_ccd_enable' => array(
2419 xl('phiMail Allow CCD Send'),
2420 'bool', // data type
2421 '0',
2422 xl('phiMail Allow CCD Send')
2425 'phimail_ccr_enable' => array(
2426 xl('phiMail Allow CCR Send'),
2427 'bool', // data type
2428 '0',
2429 xl('phiMail Allow CCR Send')
2433 'Rx' => array(
2434 'rx_enable_DEA' => array(
2435 xl('Rx Enable DEA #'),
2436 'bool', // data type
2437 '1',
2438 xl('Rx Enable DEA #')
2440 'rx_show_DEA' => array(
2441 xl('Rx Show DEA #'),
2442 'bool', // data type
2443 '0',
2444 xl('Rx Show DEA #')
2446 'rx_enable_NPI' => array(
2447 xl('Rx Enable NPI'),
2448 'bool', // data type
2449 '0',
2450 xl('Rx Enable NPI')
2452 'rx_show_NPI' => array(
2453 xl('Rx Show NPI'),
2454 'bool', // data type
2455 '0',
2456 xl('Rx Show NPI')
2458 'rx_enable_SLN' => array(
2459 xl('Rx Enable State Lic. #'),
2460 'bool', // data type
2461 '0',
2462 xl('Rx Enable State Lic. #')
2464 'rx_show_SLN' => array(
2465 xl('Rx Show State Lic. #'),
2466 'bool', // data type
2467 '0',
2468 xl('Rx Show State Lic. #')
2470 'rx_paper_size' => array(
2471 xl('Rx Paper Size'), // descriptive name
2472 array(
2473 'LETTER' => xl('Letter Paper Size'),
2474 'LEGAL' => xl('Legal Paper Size'),
2475 'FOLIO' => xl('Folio Paper Size'),
2476 'EXECUTIVE' => xl('Executive Paper Size'),
2477 '4A0' => ('4A0' . " " . xl('Paper Size')),
2478 '2A0' => ('2A0' . " " . xl('Paper Size')),
2479 'A0' => ('A0' . " " . xl('Paper Size')),
2480 'A1' => ('A1' . " " . xl('Paper Size')),
2481 'A2' => ('A2' . " " . xl('Paper Size')),
2482 'A3' => ('A3' . " " . xl('Paper Size')),
2483 'A4' => ('A4' . " " . xl('Paper Size')),
2484 'A5' => ('A5' . " " . xl('Paper Size')),
2485 'A6' => ('A6' . " " . xl('Paper Size')),
2486 'A7' => ('A7' . " " . xl('Paper Size')),
2487 'A8' => ('A8' . " " . xl('Paper Size')),
2488 'A9' => ('A9' . " " . xl('Paper Size')),
2489 'A10' => ('A10' . " " . xl('Paper Size')),
2490 'B0' => ('B0' . " " . xl('Paper Size')),
2491 'B1' => ('B1' . " " . xl('Paper Size')),
2492 'B2' => ('B2' . " " . xl('Paper Size')),
2493 'B3' => ('B3' . " " . xl('Paper Size')),
2494 'B4' => ('B4' . " " . xl('Paper Size')),
2495 'B5' => ('B5' . " " . xl('Paper Size')),
2496 'B6' => ('B6' . " " . xl('Paper Size')),
2497 'B7' => ('B7' . " " . xl('Paper Size')),
2498 'B8' => ('B8' . " " . xl('Paper Size')),
2499 'B9' => ('B9' . " " . xl('Paper Size')),
2500 'B10' => ('B10' . " " . xl('Paper Size')),
2501 'C0' => ('C0' . " " . xl('Paper Size')),
2502 'C1' => ('C1' . " " . xl('Paper Size')),
2503 'C2' => ('C2' . " " . xl('Paper Size')),
2504 'C3' => ('C3' . " " . xl('Paper Size')),
2505 'C4' => ('C4' . " " . xl('Paper Size')),
2506 'C5' => ('C5' . " " . xl('Paper Size')),
2507 'C6' => ('C6' . " " . xl('Paper Size')),
2508 'C7' => ('C7' . " " . xl('Paper Size')),
2509 'C8' => ('C8' . " " . xl('Paper Size')),
2510 'C9' => ('C9' . " " . xl('Paper Size')),
2511 'C10' => ('C10' . " " . xl('Paper Size')),
2512 'RA0' => ('RA0' . " " . xl('Paper Size')),
2513 'RA1' => ('RA1' . " " . xl('Paper Size')),
2514 'RA2' => ('RA2' . " " . xl('Paper Size')),
2515 'RA3' => ('RA3' . " " . xl('Paper Size')),
2516 'RA4' => ('RA4' . " " . xl('Paper Size')),
2517 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2518 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2519 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2520 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2521 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2523 'LETTER', // default = tree menu
2524 xl('Rx Paper Size')
2526 'rx_left_margin' => array(
2527 xl('Rx Left Margin (px)'),
2528 'num',
2529 '30',
2530 xl('Rx Left Margin (px)')
2532 'rx_right_margin' => array(
2533 xl('Rx Right Margin (px)'),
2534 'num',
2535 '30',
2536 xl('Rx Right Margin (px)')
2538 'rx_top_margin' => array(
2539 xl('Rx Top Margin (px)'),
2540 'num',
2541 '72',
2542 xl('Rx Top Margin (px)')
2544 'rx_bottom_margin' => array(
2545 xl('Rx Bottom Margin (px)'),
2546 'num',
2547 '30',
2548 xl('Rx Bottom Margin (px)')
2552 'PDF' => array (
2553 'pdf_layout' => array (
2554 xl('Layout'),
2555 array(
2556 'P' => xl('Portrait'),
2557 'L' => xl('Landscape')
2559 'P', //defaut
2560 xl("Choose Layout Direction"),
2562 'pdf_language' => array (
2563 xl('PDF Language'),
2564 array(
2565 'aa' => xl('Afar'),
2566 'af' => xl('Afrikaans'),
2567 'ak' => xl('Akan'),
2568 'sq' => xl('Albanian'),
2569 'am' => xl('Amharic'),
2570 'ar' => xl('Arabic'),
2571 'an' => xl('Aragonese'),
2572 'hy' => xl('Armenian'),
2573 'as' => xl('Assamese'),
2574 'av' => xl('Avaric'),
2575 'ae' => xl('Avestan'),
2576 'ay' => xl('Aymara'),
2577 'az' => xl('Azerbaijani'),
2578 'bm' => xl('Bambara'),
2579 'ba' => xl('Bashkir'),
2580 'eu' => xl('Basque'),
2581 'be' => xl('Belarusian'),
2582 'bn' => xl('Bengali- Bangla'),
2583 'bh' => xl('Bihari'),
2584 'bi' => xl('Bislama'),
2585 'bs' => xl('Bosnian'),
2586 'br' => xl('Breton'),
2587 'bg' => xl('Bulgarian'),
2588 'my' => xl('Burmese'),
2589 'ca' => xl('Catalan- Valencian'),
2590 'ch' => xl('Chamorro'),
2591 'ce' => xl('Chechen'),
2592 'ny' => xl('Chichewa- Chewa- Nyanja'),
2593 'zh' => xl('Chinese'),
2594 'cv' => xl('Chuvash'),
2595 'kw' => xl('Cornish'),
2596 'co' => xl('Corsican'),
2597 'cr' => xl('Cree'),
2598 'hr' => xl('Croatian'),
2599 'cs' => xl('Czech'),
2600 'da' => xl('Danish'),
2601 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2602 'nl' => xl('Dutch'),
2603 'dz' => xl('Dzongkha'),
2604 'en' => xl('English'),
2605 'eo' => xl('Esperanto'),
2606 'et' => xl('Estonian'),
2607 'ee' => xl('Ewe'),
2608 'fo' => xl('Faroese'),
2609 'fj' => xl('Fijian'),
2610 'fi' => xl('Finnish'),
2611 'fr' => xl('French'),
2612 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2613 'gl' => xl('Galician'),
2614 'ka' => xl('Georgian'),
2615 'de' => xl('German'),
2616 'el' => xl('Greek, Modern'),
2617 'gn' => xl('Guaraní'),
2618 'gu' => xl('Gujarati'),
2619 'ht' => xl('Haitian- Haitian Creole'),
2620 'ha' => xl('Hausa'),
2621 'he' => xl('Hebrew (modern)'),
2622 'hz' => xl('Herero'),
2623 'hi' => xl('Hindi'),
2624 'ho' => xl('Hiri Motu'),
2625 'hu' => xl('Hungarian'),
2626 'ia' => xl('Interlingua'),
2627 'id' => xl('Indonesian'),
2628 'ie' => xl('Interlingue'),
2629 'ga' => xl('Irish'),
2630 'ig' => xl('Igbo'),
2631 'ik' => xl('Inupiaq'),
2632 'io' => xl('Ido'),
2633 'is' => xl('Icelandic'),
2634 'it' => xl('Italian'),
2635 'iu' => xl('Inuktitut'),
2636 'ja' => xl('Japanese'),
2637 'jv' => xl('Javanese'),
2638 'kl' => xl('Kalaallisut, Greenlandic'),
2639 'kn' => xl('Kannada'),
2640 'kr' => xl('Kanuri'),
2641 'ks' => xl('Kashmiri'),
2642 'kk' => xl('Kazakh'),
2643 'km' => xl('Khmer'),
2644 'ki' => xl('Kikuyu, Gikuyu'),
2645 'rw' => xl('Kinyarwanda'),
2646 'ky' => xl('Kyrgyz'),
2647 'kv' => xl('Komi'),
2648 'kg' => xl('Kongo'),
2649 'ko' => xl('Korean'),
2650 'ku' => xl('Kurdish'),
2651 'kj' => xl('Kwanyama, Kuanyama'),
2652 'la' => xl('Latin'),
2653 'lb' => xl('Luxembourgish, Letzeburgesch'),
2654 'lg' => xl('Ganda'),
2655 'li' => xl('Limburgish, Limburgan, Limburger'),
2656 'ln' => xl('Lingala'),
2657 'lo' => xl('Lao'),
2658 'lt' => xl('Lithuanian'),
2659 'lu' => xl('Luba-Katanga'),
2660 'lv' => xl('Latvian'),
2661 'gv' => xl('Manx'),
2662 'mk' => xl('Macedonian'),
2663 'mg' => xl('Malagasy'),
2664 'ms' => xl('Malay'),
2665 'ml' => xl('Malayalam'),
2666 'mt' => xl('Maltese'),
2667 'mi' => xl('Māori'),
2668 'mr' => xl('Marathi (Marāṭhī)'),
2669 'mh' => xl('Marshallese'),
2670 'mn' => xl('Mongolian'),
2671 'na' => xl('Nauru'),
2672 'nv' => xl('Navajo, Navaho'),
2673 'nb' => xl('Norwegian Bokmål'),
2674 'nd' => xl('North Ndebele'),
2675 'ne' => xl('Nepali'),
2676 'ng' => xl('Ndonga'),
2677 'nn' => xl('Norwegian Nynorsk'),
2678 'no' => xl('Norwegian'),
2679 'ii' => xl('Nuosu'),
2680 'nr' => xl('South Ndebele'),
2681 'oc' => xl('Occitan'),
2682 'oj' => xl('Ojibwe, Ojibwa'),
2683 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2684 'om' => xl('Oromo'),
2685 'or' => xl('Oriya'),
2686 'os' => xl('Ossetian, Ossetic'),
2687 'pa' => xl('Panjabi, Punjabi'),
2688 'pi' => xl('Pāli'),
2689 'fa' => xl('Persian (Farsi)'),
2690 'pl' => xl('Polish'),
2691 'ps' => xl('Pashto, Pushto'),
2692 'pt' => xl('Portuguese'),
2693 'qu' => xl('Quechua'),
2694 'rm' => xl('Romansh'),
2695 'rn' => xl('Kirundi'),
2696 'ro' => xl('Romanian'),
2697 'ru' => xl('Russian'),
2698 'sa' => xl('Sanskrit (Saṁskṛta)'),
2699 'sc' => xl('Sardinian'),
2700 'sd' => xl('Sindhi'),
2701 'se' => xl('Northern Sami'),
2702 'sm' => xl('Samoan'),
2703 'sg' => xl('Sango'),
2704 'sr' => xl('Serbian'),
2705 'gd' => xl('Scottish Gaelic- Gaelic'),
2706 'sn' => xl('Shona'),
2707 'si' => xl('Sinhala, Sinhalese'),
2708 'sk' => xl('Slovak'),
2709 'sl' => xl('Slovene'),
2710 'so' => xl('Somali'),
2711 'st' => xl('Southern Sotho'),
2712 'es' => xl('Spanish- Castilian'),
2713 'su' => xl('Sundanese'),
2714 'sw' => xl('Swahili'),
2715 'ss' => xl('Swati'),
2716 'sv' => xl('Swedish'),
2717 'ta' => xl('Tamil'),
2718 'te' => xl('Telugu'),
2719 'tg' => xl('Tajik'),
2720 'th' => xl('Thai'),
2721 'ti' => xl('Tigrinya'),
2722 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2723 'tk' => xl('Turkmen'),
2724 'tl' => xl('Tagalog'),
2725 'tn' => xl('Tswana'),
2726 'to' => xl('Tonga (Tonga Islands)'),
2727 'tr' => xl('Turkish'),
2728 'ts' => xl('Tsonga'),
2729 'tt' => xl('Tatar'),
2730 'tw' => xl('Twi'),
2731 'ty' => xl('Tahitian'),
2732 'ug' => xl('Uyghur, Uighur'),
2733 'uk' => xl('Ukrainian'),
2734 'ur' => xl('Urdu'),
2735 'uz' => xl('Uzbek'),
2736 've' => xl('Venda'),
2737 'vi' => xl('Vietnamese'),
2738 'vo' => xl('Volapük'),
2739 'wa' => xl('Walloon'),
2740 'cy' => xl('Welsh'),
2741 'wo' => xl('Wolof'),
2742 'fy' => xl('Western Frisian'),
2743 'xh' => xl('Xhosa'),
2744 'yi' => xl('Yiddish'),
2745 'yo' => xl('Yoruba'),
2746 'za' => xl('Zhuang, Chuang'),
2747 'zu' => xl('Zulu'),
2749 'en', // default English
2750 xl('Choose PDF languange Preference'),
2752 'pdf_size' => array(
2753 xl('Paper Size'), // Descriptive Name
2754 array(
2755 'LETTER' => xl('Letter Paper Size'),
2756 'LEGAL' => xl('Legal Paper Size'),
2757 'FOLIO' => xl('Folio Paper Size'),
2758 'EXECUTIVE' => xl('Executive Paper Size'),
2759 '4A0' => ('4A0' . " " . xl('Paper Size')),
2760 '2A0' => ('2A0' . " " . xl('Paper Size')),
2761 'A0' => ('A0' . " " . xl('Paper Size')),
2762 'A1' => ('A1' . " " . xl('Paper Size')),
2763 'A2' => ('A2' . " " . xl('Paper Size')),
2764 'A3' => ('A3' . " " . xl('Paper Size')),
2765 'A4' => ('A4' . " " . xl('Paper Size')),
2766 'A5' => ('A5' . " " . xl('Paper Size')),
2767 'A6' => ('A6' . " " . xl('Paper Size')),
2768 'A7' => ('A7' . " " . xl('Paper Size')),
2769 'A8' => ('A8' . " " . xl('Paper Size')),
2770 'A9' => ('A9' . " " . xl('Paper Size')),
2771 'A10' => ('A10' . " " . xl('Paper Size')),
2772 'B0' => ('B0' . " " . xl('Paper Size')),
2773 'B1' => ('B1' . " " . xl('Paper Size')),
2774 'B2' => ('B2' . " " . xl('Paper Size')),
2775 'B3' => ('B3' . " " . xl('Paper Size')),
2776 'B4' => ('B4' . " " . xl('Paper Size')),
2777 'B5' => ('B5' . " " . xl('Paper Size')),
2778 'B6' => ('B6' . " " . xl('Paper Size')),
2779 'B7' => ('B7' . " " . xl('Paper Size')),
2780 'B8' => ('B8' . " " . xl('Paper Size')),
2781 'B9' => ('B9' . " " . xl('Paper Size')),
2782 'B10' => ('B10' . " " . xl('Paper Size')),
2783 'C0' => ('C0' . " " . xl('Paper Size')),
2784 'C1' => ('C1' . " " . xl('Paper Size')),
2785 'C2' => ('C2' . " " . xl('Paper Size')),
2786 'C3' => ('C3' . " " . xl('Paper Size')),
2787 'C4' => ('C4' . " " . xl('Paper Size')),
2788 'C5' => ('C5' . " " . xl('Paper Size')),
2789 'C6' => ('C6' . " " . xl('Paper Size')),
2790 'C7' => ('C7' . " " . xl('Paper Size')),
2791 'C8' => ('C8' . " " . xl('Paper Size')),
2792 'C9' => ('C9' . " " . xl('Paper Size')),
2793 'C10' => ('C10' . " " . xl('Paper Size')),
2794 'RA0' => ('RA0' . " " . xl('Paper Size')),
2795 'RA1' => ('RA1' . " " . xl('Paper Size')),
2796 'RA2' => ('RA2' . " " . xl('Paper Size')),
2797 'RA3' => ('RA3' . " " . xl('Paper Size')),
2798 'RA4' => ('RA4' . " " . xl('Paper Size')),
2799 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2800 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2801 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2802 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2803 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2805 'LETTER',
2806 xl('Choose Paper Size')
2808 'pdf_left_margin' => array(
2809 xl('Left Margin (mm)'),
2810 'num',
2811 '5',
2812 xl('Left Margin (mm)')
2814 'pdf_right_margin' => array(
2815 xl('Right Margin (mm)'),
2816 'num',
2817 '5',
2818 xl('Right Margin (mm)')
2820 'pdf_top_margin' => array(
2821 xl('Top Margin (mm)'),
2822 'num',
2823 '5',
2824 xl('Top Margin (mm)')
2826 'pdf_bottom_margin' => array(
2827 xl('Bottom Margin (px)'),
2828 'num',
2829 '8',
2830 xl('Bottom Margin (px)')
2832 'pdf_output' => array (
2833 xl('Output Type'),
2834 array(
2835 'D' => xl('Download'),
2836 'I' => xl('Inline')
2838 'D', //defaut
2839 xl("Choose Download or Display Inline"),
2842 'chart_label_type' => array(
2843 xl('Patient Label Type'),
2844 array(
2845 '0' => xl('None'),
2846 '1' => '5160',
2847 '2' => '5161',
2848 '3' => '5162'
2850 '1', // default
2851 xl('Avery Label type for printing patient labels from popups in left nav screen'),
2854 'barcode_label_type' => array(
2855 xl('Barcode Label Type'),
2856 array(
2857 '0' => xl('None'),
2858 '1' => 'std25',
2859 '2' => 'int25',
2860 '3' => 'ean8',
2861 '4' => 'ean13',
2862 '5' => 'upc',
2863 '6' => 'code11',
2864 '7' => 'code39',
2865 '8' => 'code93',
2866 '9' => 'code128',
2867 '10' => 'codabar',
2868 '11' => 'msi',
2869 '12' => 'datamatrix'
2871 '9', // default = None
2872 xl('Barcode type for printing barcode labels from popups in left nav screen.')
2875 'addr_label_type' => array(
2876 xl('Print Patient Address Label'),
2877 'bool', // data type
2878 '1', // default = false
2879 xl('Select to print patient address labels from popups in left nav screen.')