Add optional tiny icons to the UI (#207)
[openemr.git] / library / globals.inc.php
blob7062eeefee5e2e33afd7ce2635fd2ecd1503ff11
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 // Norwegian // xl('Norwegian')
51 // Persian // xl('Persian')
52 // Polish // xl('Polish')
53 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
54 // Portuguese (European) // xl('Portuguese (European)')
55 // Romanian // xl('Romanian')
56 // Russian // xl('Russian')
57 // Serbian // xl('Serbian')
58 // Sinhala // xl('Sinhala')
59 // Slovak // xl('Slovak')
60 // Somali // xl('Somali')
61 // Spanish (Latin American) // xl('Spanish (Latin American)')
62 // Spanish (Spain) // xl('Spanish (Spain)')
63 // Swedish // xl('Swedish')
64 // Turkish // xl('Turkish')
65 // Ukrainian // xl('Ukrainian')
66 // Vietnamese // xl('Vietnamese')
68 // OS-dependent stuff.
69 if (stristr(PHP_OS, 'WIN')) {
70 // MS Windows
71 $mysql_bin_dir = 'C:/xampp/mysql/bin';
72 $perl_bin_dir = 'C:/xampp/perl/bin';
73 $temporary_files_dir = 'C:/windows/temp';
74 $backup_log_dir = 'C:/windows/temp';
76 else {
77 // Everything else
78 $mysql_bin_dir = '/usr/bin';
79 $perl_bin_dir = '/usr/bin';
80 $temporary_files_dir = '/tmp';
81 $backup_log_dir = '/tmp';
84 // Language constant declarations:
85 // xl('Appearance')
86 // xl('Locale')
87 // xl('Features')
88 // xl('Calendar')
89 // xl('Security')
90 // xl('Notifications')
91 // xl('Miscellaneous')
93 // List of user specific tabs and globals
94 $USER_SPECIFIC_TABS = array('Appearance',
95 'Locale',
96 'Report',
97 'Calendar',
98 'Connectors');
99 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
100 'concurrent_layout',
101 'css_header',
102 'gbl_pt_list_page_size',
103 'gbl_pt_list_new_window',
104 'drop_bottom',
105 'units_of_measurement',
106 'us_weight_format',
107 'date_display_format',
108 'time_display_format',
109 'ledger_begin_date',
110 'print_next_appointment_on_ledger',
111 'calendar_view_type',
112 'event_color',
113 'pat_trkr_timer',
114 'ptkr_visit_reason',
115 'checkout_roll_off',
116 'ptkr_pt_list_new_window',
117 'erx_import_status_message');
119 $GLOBALS_METADATA = array(
121 // Appearance Tab
123 'Appearance' => array(
125 'default_top_pane' => array(
126 xl('Main Top Pane Screen'), // descriptive name
127 array(
128 'main_info.php' => xl('Calendar Screen'),
129 '../new/new.php' => xl('Patient Search/Add Screen'),
130 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
132 'main_info.php', // default = calendar
133 xl('Type of screen layout')
136 'new_tabs_layout' => array(
137 xl('Tabs Layout Style (need to logout/login after change this setting)'),
138 array(
139 '0' => xl('Off'),
140 '1' => xl('On'),
142 '0', // default = off
143 xl('Use the new tabs layout style (need to logout and then login to see this new setting).')
146 'concurrent_layout' => array(
147 xl('Layout Style'), // descriptive name
148 array(
149 '0' => xl('Old style layout with no left menu'),
150 '1' => xl('Navigation menu consists of pairs of radio buttons'),
151 '2' => xl('Navigation menu is a tree view'),
152 '3' => xl('Navigation uses a sliding menu'),
154 '3', // default = tree menu
155 xl('Type of screen layout')
158 'default_encounter_view' => array(
159 xl('Default Encounter View'), // descriptive name
160 array(
161 '0' => xl('Clinical View'),
162 '1' => xl('Billing View'),
164 '0', // default = tree menu
165 xl('Choose your default encounter view')
168 'css_header' => array(
169 xl('Theme'),
170 'css',
171 'style_light.css',
172 xl('Pick a CSS theme.')
175 'gbl_nav_area_width' => array(
176 xl('Navigation Area Width'),
177 'num',
178 '150',
179 xl('Width in pixels of the left navigation frame.')
182 'openemr_name' => array(
183 xl('Application Title'),
184 'text',
185 'OpenEMR',
186 xl('Application name for login page and main window title.')
189 'full_new_patient_form' => array(
190 xl('New Patient Form'),
192 array(
193 '0' => xl('Old-style static form without search or duplication check'),
194 '1' => xl('All demographics fields, with search and duplication check'),
195 '2' => xl('Mandatory or specified fields only, search and dup check'),
196 '3' => xl('Mandatory or specified fields only, dup check, no search'),
197 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
199 '1', // default
200 xl('Style of form used for adding new patients')
203 'gbl_edit_patient_form' => array(
204 xl('Modify Patient Form'),
206 array(
207 '0' => xl('Standard check'),
208 '1' => xl('Zend Module check in addition to standard check')
210 '0', // default
211 xl('Validation mechanism for when modifying patient demographics.')
214 'patient_search_results_style' => array(
215 xl('Patient Search Results Style'),
216 array(
217 '0' => xl('Encounter statistics'),
218 '1' => xl('Mandatory and specified fields'),
220 '0', // default
221 xl('Type of columns displayed for patient search results')
224 'gbl_tall_nav_area' => array(
225 xl('Tall Navigation Area'),
226 'bool', // data type
227 '0', // default = false
228 xl('Navigation area uses full height of frameset')
231 'gbl_nav_visit_forms' => array(
232 xl('Navigation Area Visit Forms'),
233 'bool', // data type
234 '1', // default = true
235 xl('Navigation area includes encounter forms')
238 'simplified_demographics' => array(
239 xl('Simplified Demographics'),
240 'bool', // data type
241 '0', // default = false
242 xl('Omit insurance and some other things from the demographics form')
245 'simplified_prescriptions' => array(
246 xl('Simplified Prescriptions'),
247 'bool', // data type
248 '0', // default = false
249 xl('Omit form, route and interval which then become part of dosage')
252 'simplified_copay' => array(
253 xl('Simplified Co-Pay'),
254 'bool', // data type
255 '0', // default = false
256 xl('Omit method of payment from the co-pay panel')
259 'use_charges_panel' => array(
260 xl('Use Charges Panel'),
261 'bool', // data type
262 '0', // default = false
263 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
266 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
267 'enable_fees_in_left_menu' => array(
268 xl('Enable Fees In Left Menu'),
269 'bool', // data type
270 '1', // default = true
271 xl('Enable Fees In Left Menu')
273 // EDI history 2012-09-13
274 'enable_edihistory_in_left_menu' => array(
275 xl('Enable EDI History In Left Menu'),
276 'bool', // data type
277 '1', // default = true
278 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
281 'online_support_link' => array(
282 xl('Online Support Link'),
283 'text', // data type
284 'http://open-emr.org/',
285 xl('URL for OpenEMR support.')
288 'support_phone_number' => array(
289 xl('Support Phone Number'),
290 'text',
292 xl('Phone Number for Vendor Support that Appears on the About Page.')
295 'drop_bottom' => array(
296 xl('Remove Bottom Pane'),
297 'bool', // data type
298 '0', // default = false
299 xl('Removes the bottom pane by default on start up.')
302 'encounter_page_size' => array(
303 xl('Encounter Page Size'),
304 array(
305 '0' => xl('Show All'),
306 '5' => '5',
307 '10' => '10',
308 '15' => '15',
309 '20' => '20',
310 '25' => '25',
311 '50' => '50',
313 '20',
314 xl('Number of encounters to display per page.')
317 'gbl_pt_list_page_size' => array(
318 xl('Patient List Page Size'),
319 array(
320 '10' => '10',
321 '25' => '25',
322 '50' => '50',
323 '100' => '100',
325 '10',
326 xl('Number of patients to display per page in the patient list.')
329 'gbl_pt_list_new_window' => array(
330 xl('Patient List New Window'),
331 'bool', // data type
332 '0', // default = false
333 xl('Default state of New Window checkbox in the patient list.')
336 'gbl_vitals_options' => array(
337 xl('Vitals Form Options'),
338 array(
339 '0' => xl('Standard'),
340 '1' => xl('Omit circumferences'),
342 '0', // default
343 xl('Special treatment for the Vitals form')
346 'insurance_information' => array(
347 xl('Show Additional Insurance Information'), // descriptive name
348 array(
349 '0' => xl('None'),
350 '1' => xl('Address Only'),
351 '2' => xl('Address and Postal Code'),
352 '3' => xl('Address and State'),
353 '4' => xl('Address, State and Postal Code'),
354 '5' => xl('Postal Code and Box Number'),
356 '4', // default
357 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
360 'tiny_logo_1' => array(
361 xl('Show Mini Logo 1'),
362 'bool', // data type
363 '0', // default = false
364 xl('Show Mini Logo 1')
367 'tiny_logo_2' => array(
368 xl('Show Mini Logo 2'),
369 'bool', // data type
370 '0', // default = false
371 xl('Show Mini Logo 2')
376 // Locale Tab
378 'Locale' => array(
380 'language_default' => array(
381 xl('Default Language'),
382 'lang', // data type
383 'English (Standard)', // default = english
384 xl('Default language if no other is allowed or chosen.')
387 'language_menu_showall' => array(
388 xl('All Languages Allowed'),
389 'bool', // data type
390 '1', // default = true
391 xl('Allow all available languages as choices on menu at login.')
394 'language_menu_other' => array(
395 xl('Allowed Languages'),
396 'm_lang', // data type
397 '', // default = none
398 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
401 'allow_debug_language' => array(
402 xl('Allow Debugging Language'),
403 'bool', // data type
404 '1', // default = true during development and false for production releases
405 xl('This will allow selection of the debugging (\'dummy\') language.')
408 'translate_layout' => array(
409 xl('Translate Layouts'),
410 'bool', // data type
411 '1', // default = true
412 xl('Is text from form layouts to be translated?')
415 'translate_lists' => array(
416 xl('Translate Lists'),
417 'bool', // data type
418 '1', // default = true
419 xl('Is text from lists to be translated?')
422 'translate_gacl_groups' => array(
423 xl('Translate Access Control Groups'),
424 'bool', // data type
425 '1', // default = true
426 xl('Are access control group names to be translated?')
429 'translate_form_titles' => array(
430 xl('Translate Patient Note Titles'),
431 'bool', // data type
432 '1', // default = true
433 xl('Are patient note titles to be translated?')
436 'translate_document_categories' => array(
437 xl('Translate Document Categories'),
438 'bool', // data type
439 '1', // default = true
440 xl('Are document category names to be translated?')
443 'translate_appt_categories' => array(
444 xl('Translate Appointment Categories'),
445 'bool', // data type
446 '1', // default = true
447 xl('Are appointment category names to be translated?')
450 'units_of_measurement' => array(
451 xl('Units for Visit Forms'),
452 array(
453 '1' => xl('Show both US and metric (main unit is US)'),
454 '2' => xl('Show both US and metric (main unit is metric)'),
455 '3' => xl('Show US only'),
456 '4' => xl('Show metric only'),
458 '1', // default = Both/US
459 xl('Applies to the Vitals form and Growth Chart')
462 'us_weight_format' => array(
463 xl('Display Format for US Weights'),
464 array(
465 '1'=>xl('Show pounds as decimal value'),
466 '2'=>xl('Show pounds and ounces')
468 '1',
469 xl('Applies to Vitals form')
472 'disable_deprecated_metrics_form' => array(
473 xl('Disable Old Metric Vitals Form'),
474 'bool', // data type
475 '1', // default = true
476 xl('This was the older metric-only Vitals form, now deprecated.')
479 'phone_country_code' => array(
480 xl('Telephone Country Code'),
481 'num',
482 '1', // default = North America
483 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
486 'date_display_format' => array(
487 xl('Date Display Format'),
488 array(
489 '0' => xl('YYYY-MM-DD'),
490 '1' => xl('MM/DD/YYYY'),
491 '2' => xl('DD/MM/YYYY'),
493 '0',
494 xl('Format used to display most dates.')
497 'time_display_format' => array(
498 xl('Time Display Format'),
499 array(
500 '0' => xl('24 hr'),
501 '1' => xl('12 hr'),
503 '0',
504 xl('Format used to display most times.')
507 'currency_decimals' => array(
508 xl('Currency Decimal Places'),
509 array(
510 '0' => xl('0'),
511 '1' => xl('1'),
512 '2' => xl('2'),
514 '2',
515 xl('Number of digits after decimal point for currency, usually 0 or 2.')
518 'currency_dec_point' => array(
519 xl('Currency Decimal Point Symbol'),
520 array(
521 '.' => xl('Period'),
522 ',' => xl('Comma'),
524 '.',
525 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
528 'currency_thousands_sep' => array(
529 xl('Currency Thousands Separator'),
530 array(
531 ',' => xl('Comma'),
532 '.' => xl('Period'),
533 ' ' => xl('Space'),
534 '' => xl('None'),
536 ',',
537 xl('Symbol used to separate thousands for currency.')
540 'gbl_currency_symbol' => array(
541 xl('Currency Designator'),
542 'text', // data type
543 '$', // default
544 xl('Code or symbol to indicate currency')
546 'age_display_format'=>array(xl('Age Display Format'),
547 array(
548 '0'=>xl('Years or months'),
549 '1'=>xl('Years, months and days')
551 '0',
552 xl('Format for age display')
554 'age_display_limit' => array(
555 xl('Age in Years for Display Format Change'),
556 'num',
557 '3',
558 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
560 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
561 'weekend_days' => array(
562 xl('Your weekend days'),
563 array(
564 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
565 '0' => xl('Sunday'),
566 '5' => xl('Friday'),
567 '6' => xl('Saturday'),
568 '5,6' => xl('Friday') .' - ' . xl('Saturday'),
570 '6,0'
571 ,xl('which days are your weekend days?')
576 // Features Tab
578 'Features' => array(
580 'specific_application' => array(
581 xl('Specific Application'),
582 array(
583 '0' => xl('None'),
584 '2' => xl('IPPF'),
585 '3' => xl('Weight loss clinic'),
587 '0', // default
588 xl('Indicator for specialized usage')
591 'inhouse_pharmacy' => array(
592 xl('Drugs and Products'),
593 array(
594 '0' => xl('Do not inventory and sell any products'),
595 '1' => xl('Inventory and sell drugs only'),
596 '2' => xl('Inventory and sell both drugs and non-drug products'),
597 '3' => xl('Products but no prescription drugs and no templates'),
599 '0', // default
600 xl('Option to support inventory and sales of products')
603 'disable_chart_tracker' => array(
604 xl('Disable Chart Tracker'),
605 'bool', // data type
606 '0', // default = false
607 xl('Removes the Chart Tracker feature')
610 'disable_phpmyadmin_link' => array(
611 xl('Disable phpMyAdmin'),
612 'bool', // data type
613 '0', // default = false
614 xl('Removes support for phpMyAdmin')
617 'disable_immunizations' => array(
618 xl('Disable Immunizations'),
619 'bool', // data type
620 '0', // default = false
621 xl('Removes support for immunizations')
624 'disable_prescriptions' => array(
625 xl('Disable Prescriptions'),
626 'bool', // data type
627 '0', // default = false
628 xl('Removes support for prescriptions')
631 'omit_employers' => array(
632 xl('Omit Employers'),
633 'bool', // data type
634 '0', // default = false
635 xl('Omit employer information in patient demographics')
638 'select_multi_providers' => array(
639 xl('Support Multi-Provider Events'),
640 'bool', // data type
641 '0', // default = false
642 xl('Support calendar events that apply to multiple providers')
645 'disable_non_default_groups' => array(
646 xl('Disable User Groups'),
647 'bool', // data type
648 '1', // default = true
649 xl('Normally this should be checked. Not related to access control.')
652 'ignore_pnotes_authorization' => array(
653 xl('Skip Authorization of Patient Notes'),
654 'bool', // data type
655 '1', // default = true
656 xl('Do not require patient notes to be authorized')
659 'support_encounter_claims' => array(
660 xl('Allow Encounter Claims'),
661 'bool', // data type
662 '0', // default = false
663 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
666 'advance_directives_warning' => array(
667 xl('Advance Directives Warning'),
668 'bool', // data type
669 '0', // default = false
670 xl('Display advance directives in the demographics page.')
673 'configuration_import_export' => array(
674 xl('Configuration Export/Import'),
675 'bool', // data type
676 '0', // default = false
677 xl('Support export/import of configuration data via the Backup page.')
680 'restrict_user_facility' => array(
681 xl('Restrict Users to Facilities'),
682 'bool', // data type
683 '0', // default
684 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
687 'set_facility_cookie' => array(
688 xl('Remember Selected Facility'),
689 'bool', // data type
690 '0', // default
691 xl('Set a facility cookie to remember the selected facility between logins.')
694 'receipts_by_provider' => array(
695 xl('Print Receipts by Provider'),
696 'bool',
697 '0', // default
698 xl('Causes Receipts to Print Encounter/Primary Provider Info')
701 'discount_by_money' => array(
702 xl('Discounts as Monetary Amounts'),
703 'bool', // data type
704 '1', // default = true
705 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
708 'gbl_visit_referral_source' => array(
709 xl('Referral Source for Encounters'),
710 'bool', // data type
711 '0', // default = false
712 xl('A referral source may be specified for each visit.')
715 'gbl_mask_patient_id' => array(
716 xl('Mask for Patient IDs'),
717 'text', // data type
718 '', // default
719 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
722 'gbl_mask_invoice_number' => array(
723 xl('Mask for Invoice Numbers'),
724 'text', // data type
725 '', // default
726 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
729 'gbl_mask_product_id' => array(
730 xl('Mask for Product IDs'),
731 'text', // data type
732 '', // default
733 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
736 'hide_billing_widget' => array(
737 xl('Hide Billing Widget'),
738 'bool', // data type
739 '0', // default = false
740 xl('This will hide the Billing Widget in the Patient Summary screen')
743 'force_billing_widget_open' => array(
744 xl('Force Billing Widget Open'),
745 'bool', // data type
746 '0', // default = false
747 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
750 'activate_ccr_ccd_report' => array(
751 xl('Activate CCR/CCD Reporting'),
752 'bool', // data type
753 '1', // default = true
754 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
757 'hide_document_encryption' => array(
758 xl('Hide Encryption/Decryption Options In Document Management'),
759 'bool', // data type
760 '1', // default = true
761 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
764 'use_custom_immun_list' => array(
765 xl('Use Custom Immunization List'),
766 'bool', // data type
767 '0', // default = true
768 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
771 'cms_1500' => array(
772 xl('CMS 1500 Paper Form Format'),
773 array(
774 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
775 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
777 '1', // default
778 xl('This specifies which revision of the form the billing module should generate')
781 'cms_1500_box_31_format' => array(
782 xl('CMS 1500: Box 31 Format'),
783 array(
784 '0' => xl('Signature on File'),
785 '1' => xl('Firstname Lastname'),
786 '2' => xl('None'),
788 '0', // default
789 xl('This specifies whether to include date in Box 31.')
792 'cms_1500_box_31_date' => array(
793 xl('CMS 1500: Date in Box 31 (Signature)'),
794 array(
795 '0' => xl('None'),
796 '1' => xl('Date of Service'),
797 '2' => xl('Today'),
799 '0', // default
800 xl('This specifies whether to include date in Box 31.')
803 'amendments' => array (
804 xl('Amendments'),
805 'bool', // data type
806 '1', // default = true
807 xl('Enable amendments feature')
810 'allow_pat_delete' => array(
811 xl('Allow Administrators to Delete Patients'),
812 'bool', // data type
813 '0', // default = false
814 xl('Allow Administrators to Delete Patients')
818 'observation_results_immunization' => array(
819 xl('Immunization Observation Results'),
820 'bool', // data type
821 '1', // default
822 xl('Observation Results in Immunization')
826 // Report Tab
828 'Report' => array(
830 'use_custom_daysheet' => array(
831 xl('Use Custom End of Day Report'),
832 array(
833 '0' => xl('None'),
834 '1' => xl('Print End of Day Report 1'),
835 '2' => xl('Print End of Day Report 2'),
836 '3' => xl('Print End of Day Report 3'),
837 ), // data type
838 '1', // default = Print End of Day Report 1
839 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
842 'daysheet_provider_totals' => array(
843 xl('End of Day by Provider or allow Totals Only'),
844 array(
845 '0' => xl('Provider'),
846 '1' => xl('Totals Only'),
848 '1', // default
849 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
852 'ledger_begin_date' => array(
853 xl('Beginning Date for Ledger Report'),
854 array(
855 'Y1' => xl('One Year Ago'),
856 'Y2' => xl('Two Years Ago'),
857 'M6' => xl('Six Months Ago'),
858 'M3' => xl('Three Months Ago'),
859 'M1' => xl('One Month Ago'),
860 'D1' => xl('One Day Ago'),
862 'Y1', // default = One Year
863 xl('This is the Beginning date for the Ledger Report.')
866 'print_next_appointment_on_ledger' => array(
867 xl('Print the Next Appointment on the Bottom of the Ledger'),
868 'bool', // data type
869 '1', // default = true
870 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
873 'sales_report_invoice' => array(
874 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
875 array(
876 '0' => xl('Invoice Number'),
877 '1' => xl('Patient Name and ID'),
878 '2' => xl('Patient Name and Invoice'),
880 '2', // default = 2
881 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
884 'cash_receipts_report_invoice' => array(
885 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
886 array(
887 '0' => xl('Invoice Number'),
888 '1' => xl('Patient Name'),
890 '0', // default = 0
891 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
896 // Billing Tab
898 'Billing' => array(
900 'default_search_code_type' => array(
901 xl('Default Search Code Type'),
902 'all_code_types', // data type
903 'ICD10', // default
904 xl('The default code type to search for in the Fee Sheet.')
907 'support_fee_sheet_line_item_provider' => array(
908 xl('Support provider in line item in fee sheet'),
909 'bool', // data type
910 '0', // default = false
911 xl('This Enables provider in line item in the fee sheet')
914 'default_fee_sheet_line_item_provider' => array(
915 xl('Default to a provider for line item in the fee sheet'),
916 'bool', // data type
917 '0', // default = false
918 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
921 'replicate_justification' => array(
922 xl('Automatically replicate justification codes in Fee Sheet'),
923 'bool', // data type
924 '0', // default = false
925 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
928 'display_units_in_billing' => array(
929 xl('Display the Units Column on the Billing Screen'),
930 'bool', // data type
931 '0', // default = false
932 xl('Display the Units Column on the Billing Screen')
935 'notes_to_display_in_Billing' => array(
936 xl('Which notes are to be displayed in the Billing Screen'),
937 array(
938 '0' => xl('None'),
939 '1' => xl('Encounter Billing Note'),
940 '2' => xl('Patient Billing Note'),
941 '3' => xl('All'),
943 '3',
944 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
947 'set_pos_code_encounter' => array(
948 xl('Set POS code in encounter'),
949 'bool', // data type
950 '0', // default = false
951 xl('This feature will allow the default POS facility code to be overriden from the encounter.')
954 'use_custom_statement' => array(
955 xl('Use Custom Statement'),
956 'bool', // data type
957 '0', // default = false
958 xl('This will use the custom Statment showing the description instead of the codes.')
961 'show_aging_on_custom_statement' => array(
962 xl('Show Aging on Custom Statement'),
963 'bool', // data type
964 '0', // default = false
965 xl('This will Show Aging on the custom Statement.')
968 'use_statement_print_exclusion' => array(
969 xl('Allow Statement Exclusions from Printing'),
970 'bool', // data type
971 '0', // default = false
972 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
975 'minimum_amount_to_print' => array(
976 xl('Total Minimum Amount of Statement to Allow Printing'),
977 'num', // data type
978 '1.00',
979 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
982 'statement_bill_note_print' => array(
983 xl('Print Patient Billing Note'),
984 'bool', // data type
985 '0', // default = false
986 xl('This will allow printing of the Patient Billing Note on the statements.')
989 'number_appointments_on_statement' => array(
990 xl('Number of Appointments on Statement'),
991 'num', // data type
992 '0', // default = 0
993 xl('The Number of Future Appointments to Display on the Statement.')
996 'statement_message_to_patient' => array(
997 xl('Print Custom Message'),
998 'bool', // data type
999 '0', // default = false
1000 xl('This will allow printing of a custom Message on the statements.')
1003 'statement_msg_text' => array(
1004 xl('Custom Statement message'),
1005 'text', // data type
1007 xl('Text for Custom statement message.')
1010 'use_dunning_message' => array(
1011 xl('Use Custom Dunning Messages'),
1012 'bool', // data type
1013 '0', // default = false
1014 xl('This will allow use of the custom Dunning Messages on the statements.')
1017 'first_dun_msg_set' => array(
1018 xl('Number of days before showing first account message'),
1019 'num', // data type
1020 '30',
1021 xl('Number of days before showing first account message.')
1024 'first_dun_msg_text' => array(
1025 xl('First account message'),
1026 'text', // data type
1028 xl('Text for first account message.')
1031 'second_dun_msg_set' => array(
1032 xl('Number of days before showing second account message'),
1033 'num', // data type
1034 '60',
1035 xl('Number of days before showing second account message')
1038 'second_dun_msg_text' => array(
1039 xl('Second account message'),
1040 'text', // data type
1042 xl('Text for second account message.')
1045 'third_dun_msg_set' => array(
1046 xl('Number of days before showing third account message'),
1047 'num', // data type
1048 '90',
1049 xl('Number of days before showing third account message')
1052 'third_dun_msg_text' => array(
1053 xl('Third account message'),
1054 'text', // data type
1056 xl('Text for third account message.')
1059 'fourth_dun_msg_set' => array(
1060 xl('Number of days before showing fourth account message'),
1061 'num', // data type
1062 '120',
1063 xl('Number of days before showing fourth account message')
1066 'fourth_dun_msg_text' => array(
1067 xl('Fourth account message'),
1068 'text', // data type
1070 xl('Text for fourth account message.')
1073 'fifth_dun_msg_set' => array(
1074 xl('Number of days before showing fifth account message'),
1075 'num', // data type
1076 '150',
1077 xl('Number of days before showing fifth account message')
1080 'fifth_dun_msg_text' => array(
1081 xl('Fifth account message'),
1082 'text', // data type
1084 xl('Text for fifth account message.')
1088 // E-Sign Tab
1090 'E-Sign' => array(
1092 'esign_all' => array(
1093 xl('Allows E-Sign on the entire encounter'),
1094 'bool', // data type
1095 '0', // default = false
1096 xl('This will enable signing an entire encounter, rather than individual forms')
1099 'lock_esign_all' => array(
1100 xl('Lock e-signed encounters and their forms'),
1101 'bool', // data type
1102 '0', // default = false
1103 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1106 'esign_individual' => array(
1107 xl('Allows E-Signing Individual Forms'),
1108 'bool', // data type
1109 '1', // default = false
1110 xl('This will enable signing individual forms separately')
1113 'lock_esign_individual' => array(
1114 xl('Lock an e-signed form individually'),
1115 'bool', // data type
1116 '1', // default = false
1117 xl('This will disable the Edit button on any form that is e-signed')
1120 'esign_lock_toggle' => array(
1121 xl('Enable lock toggle'),
1122 'bool', // data type
1123 '0', // default = false
1124 xl('This will give the user the option to lock (separate locking and signing)')
1127 'esign_report_hide_empty_sig' => array(
1128 xl('Hide Empty E-Sign Logs On Report'),
1129 'bool', // data type
1130 '1', // default = false
1131 xl('This will hide empty e-sign logs on the patient report')
1135 //Documents Tab
1136 'Documents' => array(
1138 'document_storage_method' => array(
1139 xl('Document Storage Method'),
1140 array(
1141 '0' => xl('Hard Disk'),
1142 '1' => xl('CouchDB')
1144 '0', // default
1145 xl('Option to save method of document storage.')
1147 'couchdb_host' => array(
1148 xl('CouchDB HostName'),
1149 'text',
1150 'localhost',
1151 xl('CouchDB host'),
1153 'couchdb_user' => array(
1154 xl('CouchDB UserName'),
1155 'text',
1157 xl('Username to connect to CouchDB'),
1159 'couchdb_pass' => array(
1160 xl('CouchDB Password'),
1161 'text',
1163 xl('Password to connect to CouchDB'),
1165 'couchdb_port' => array(
1166 xl('CouchDB Port'),
1167 'text',
1168 '5984',
1169 xl('CouchDB port'),
1171 'couchdb_dbase' => array(
1172 xl('CouchDB Database'),
1173 'text',
1175 xl('CouchDB database name'),
1177 'couchdb_log' => array(
1178 xl('CouchDB Log Enable'),
1179 'bool',
1180 '0',
1181 xl('Enable log for document uploads/downloads to CouchDB'),
1184 'expand_document_tree' => array(
1185 xl('Expand All Document Categories'),
1186 'bool', // data type
1187 '0', // default = false
1188 xl('Expand All Document Categories by Default')
1191 'patient_id_category_name' => array(
1192 xl('Patient ID Category Name'),
1193 'text', // data type
1194 'Patient ID card', // default
1195 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1198 'patient_photo_category_name' => array(
1199 xl('Patient Photo Category Name'),
1200 'text', // data type
1201 'Patient Photograph', // default
1202 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1205 'lab_results_category_name' => array(
1206 xl('Lab Results Category Name'),
1207 'text', // data type
1208 'Lab Report', // default
1209 xl('Document category name for storage of electronically received lab results.')
1212 'gbl_mdm_category_name' => array(
1213 xl('MDM Document Category Name'),
1214 'text', // data type
1215 'Lab Report', // default
1216 xl('Document category name for storage of electronically received MDM documents.')
1218 'generate_doc_thumb' => array(
1219 xl('Generate thumbnail'),
1220 'bool',
1221 '0',
1222 xl('Generate thumbnail images'),
1224 'thumb_doc_max_size' => array(
1225 xl('Thumbnail size'),
1226 'text', // data type
1227 '100', // default
1228 xl('Maximum size of thumbnail file')
1232 // Calendar Tab
1234 'Calendar' => array(
1236 'disable_calendar' => array(
1237 xl('Disable Calendar'),
1238 'bool', // data type
1239 '0', // default
1240 xl('Do not display the calendar.')
1243 'schedule_start' => array(
1244 xl('Calendar Starting Hour'),
1245 'hour',
1246 '8', // default
1247 xl('Beginning hour of day for calendar events.')
1250 'schedule_end' => array(
1251 xl('Calendar Ending Hour'),
1252 'hour',
1253 '17', // default
1254 xl('Ending hour of day for calendar events.')
1257 'calendar_interval' => array(
1258 xl('Calendar Interval'),
1259 array(
1260 '5' => '5',
1261 '10' => '10',
1262 '15' => '15',
1263 '20' => '20',
1264 '30' => '30',
1265 '60' => '60',
1267 '15', // default
1268 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1271 'calendar_view_type' => array(
1272 xl('Default Calendar View'),
1273 array(
1274 'day' => xl('Day'),
1275 'week' => xl('Week'),
1276 'month' => xl('Month'),
1278 'day', // default
1279 xl('This sets the Default Calendar View, Default is Day.')
1281 'first_day_week' => array(
1282 xl('First day in the week') ,
1283 array(
1284 '1' => xl('Monday'),
1285 '0' => xl('Sunday'),
1286 '6' => xl('Saturday')
1288 '1',
1289 xl('Your first day in the week.')
1291 'calendar_appt_style' => array(
1292 xl('Appointment Display Style'),
1293 array(
1294 '1' => 'Last name',
1295 '2' => 'Last name, first name',
1296 '3' => 'Last name, first name (title)',
1297 '4' => 'Last name, first name (title: description)',
1299 '2', // default
1300 xl('This determines how appointments display on the calendar.')
1303 'event_color' => array(
1304 xl('Appointment/Event Color'),
1305 array(
1306 '1' => 'Category Color Schema',
1307 '2' => 'Facility Color Schema',
1308 ), // data type
1309 '1', // default
1310 xl('This determines which color schema used for appointment')
1313 'number_of_appts_to_show' => array(
1314 xl('Appointments - Patient Summary - Number to Display'),
1315 'num',
1316 '10',
1317 xl('Number of Appointments to display in the Patient Summary')
1320 'patient_portal_appt_display_num' => array(
1321 xl('Appointments - Onsite Patient Portal - Number to Display'),
1322 'num',
1323 '20',
1324 xl('Number of Appointments to display in the Onsite Patient Portal')
1327 'appt_display_sets_option' => array(
1328 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1329 'bool', // data type
1330 '1', // default
1331 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1334 'appt_display_sets_color_1' => array(
1335 xl('Appointment Display Sets - Color 1'),
1336 'color_code',
1337 '#FFFFFF',
1338 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).')
1341 'appt_display_sets_color_2' => array(
1342 xl('Appointment Display Sets - Color 2'),
1343 'color_code',
1344 '#E6E6FF',
1345 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).')
1348 'appt_display_sets_color_3' => array(
1349 xl('Appointment Display Sets - Color 3'),
1350 'color_code',
1351 '#E6FFE6',
1352 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1355 'appt_display_sets_color_4' => array(
1356 xl('Appointment Display Sets - Color 4'),
1357 'color_code',
1358 '#FFE6FF',
1359 xl('Color for the last set when not all member appointments are displayed.')
1362 'num_past_appointments_to_show' => array(
1363 xl('Past Appointment Display Widget'),
1364 'num', // data type
1365 '0', // default = false
1366 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)')
1369 'docs_see_entire_calendar' => array(
1370 xl('Providers See Entire Calendar'),
1371 'bool', // data type
1372 '0', // default
1373 xl('Check this if you want providers to see all appointments by default and not just their own.')
1376 'auto_create_new_encounters' => array(
1377 xl('Auto-Create New Encounters'),
1378 'bool', // data type
1379 '1', // default
1380 xl('Automatically create a new encounter when an appointment check in status is selected.')
1383 'disable_pat_trkr' => array(
1384 xl('Disable Patient Flow Board'),
1385 'bool', // data type
1386 '0', // default
1387 xl('Do not display the patient flow board.')
1390 'ptkr_pt_list_new_window' => array(
1391 xl('Open Demographics in New Window from Patient Flow Board'),
1392 'bool', // data type
1393 '0', // default = false
1394 xl('When Checked, Demographics Will Open in New Window from Patient Flow Board.')
1397 'ptkr_visit_reason' => array(
1398 xl('Show Visit Reason in Patient Flow Board'),
1399 'bool', // data type
1400 '0', // default = false
1401 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1404 'ptkr_show_pid' => array(
1405 xl('Show Patient ID in Patient Flow Board'),
1406 'bool', // data type
1407 '1', // default = true
1408 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1411 'ptkr_show_encounter' => array(
1412 xl('Show Patient Encounter Number in Patient Flow Board'),
1413 'bool', // data type
1414 '1', // default = true
1415 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1418 'pat_trkr_timer' => array(
1419 xl('Patient Flow Board Timer Interval'),
1420 array(
1421 '0' => 'No automatic refresh',
1422 '0:10' => '10',
1423 '0:20' => '20',
1424 '0:30' => '30',
1425 '0:40' => '40',
1426 '0:50' => '50',
1427 '0:59' => '60',
1429 '0:20', // default
1430 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1433 'checkout_roll_off' => array(
1434 xl('Number of Minutes to display completed checkouts'),
1435 'num',
1436 '0', // default
1437 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1440 'drug_screen' => array(
1441 xl('Enable Random Drug Testing'),
1442 'bool', // data type
1443 '0', // default
1444 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1447 'drug_testing_percentage' => array(
1448 xl('Percentage of Patients to Drug Test'),
1449 'num',
1450 '33', // default
1451 xl('Percentage of Patients to select for Random Drug Testing.')
1454 'maximum_drug_test_yearly' => array(
1455 xl('Maximum number of times a Patient can be tested in a year'),
1456 'num',
1457 '0', // default
1458 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1463 // Security Tab
1465 'Security' => array(
1467 'timeout' => array(
1468 xl('Idle Session Timeout Seconds'),
1469 'num', // data type
1470 '7200', // default
1471 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1474 'secure_password' => array(
1475 xl('Require Strong Passwords'),
1476 'bool', // data type
1477 '0', // default
1478 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1481 'password_history' => array(
1482 xl('Require Unique Passwords'),
1483 'bool', // data type
1484 '0', // default
1485 xl('Means none of last three passwords are allowed when changing a password.')
1487 'password_compatibility' => array(
1488 xl('Permit unsalted passwords'),
1489 'bool', // data type
1490 '1', // default
1491 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')
1494 'password_expiration_days' => array(
1495 xl('Default Password Expiration Days'),
1496 'num', // data type
1497 '0', // default
1498 xl('Default password expiration period in days. 0 means this feature is disabled.')
1501 'password_grace_time' => array(
1502 xl('Password Expiration Grace Period'),
1503 'num', // data type
1504 '0', // default
1505 xl('Period in days where a user may login with an expired password.')
1508 'is_client_ssl_enabled' => array(
1509 xl('Enable Client SSL'),
1510 'bool', // data type
1511 '0', // default
1512 xl('Enable client SSL certificate authentication.')
1515 'certificate_authority_crt' => array(
1516 xl('Path to CA Certificate File'),
1517 'text', // data type
1518 '', // default
1519 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1522 'certificate_authority_key' => array(
1523 xl('Path to CA Key File'),
1524 'text', // data type
1525 '', // default
1526 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1529 'client_certificate_valid_in_days' => array(
1530 xl('Client Certificate Expiration Days'),
1531 'num', // data type
1532 '365', // default
1533 xl('Number of days that the client certificate is valid.')
1536 'Emergency_Login_email_id' => array(
1537 xl('Emergency Login Email Address'),
1538 'text', // data type
1539 '', // default
1540 xl('Email address, if any, to receive emergency login user activation messages.')
1542 'new_validate' => array(
1543 xl('New form validation'),
1544 'bool',
1545 '1',
1546 xl('New form validation')
1551 // Notifications Tab
1553 'Notifications' => array(
1555 'patient_reminder_sender_name' => array(
1556 xl('Patient Reminder Sender Name'),
1557 'text', // data type
1558 '', // default
1559 xl('Name of the sender for patient reminders.')
1562 'patient_reminder_sender_email' => array(
1563 xl('Patient Reminder Sender Email'),
1564 'text', // data type
1565 '', // default
1566 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.')
1569 'practice_return_email_path' => array(
1570 xl('Notification Email Address'),
1571 'text', // data type
1572 '', // default
1573 xl('Email address, if any, to receive administrative notifications.')
1576 'EMAIL_METHOD' => array(
1577 xl('Email Transport Method'),
1578 array(
1579 'PHPMAIL' => 'PHPMAIL',
1580 'SENDMAIL' => 'SENDMAIL',
1581 'SMTP' => 'SMTP',
1583 'SMTP', // default
1584 xl('Method for sending outgoing email.')
1587 'SMTP_HOST' => array(
1588 xl('SMTP Server Hostname'),
1589 'text', // data type
1590 'localhost', // default
1591 xl('If SMTP is used, the server`s hostname or IP address.')
1594 'SMTP_PORT' => array(
1595 xl('SMTP Server Port Number'),
1596 'num', // data type
1597 '25', // default
1598 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1601 'SMTP_USER' => array(
1602 xl('SMTP User for Authentication'),
1603 'text', // data type
1604 '', // default
1605 xl('Must be empty if SMTP authentication is not used.')
1608 'SMTP_PASS' => array(
1609 xl('SMTP Password for Authentication'),
1610 'text', // data type
1611 '', // default
1612 xl('Must be empty if SMTP authentication is not used.')
1615 'SMTP_SECURE' => array(
1616 xl('SMTP Security Protocol'),
1617 array(
1618 '' => xl('None'),
1619 'ssl' => 'SSL',
1620 'tls' => 'TLS'
1623 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1626 'EMAIL_NOTIFICATION_HOUR' => array(
1627 xl('Email Notification Hours'),
1628 'num', // data type
1629 '50', // default
1630 xl('Number of hours in advance to send email notifications.')
1633 'SMS_NOTIFICATION_HOUR' => array(
1634 xl('SMS Notification Hours'),
1635 'num', // data type
1636 '50', // default
1637 xl('Number of hours in advance to send SMS notifications.')
1640 'SMS_GATEWAY_USENAME' => array(
1641 xl('SMS Gateway Username'),
1642 'text', // data type
1643 '', // default
1644 xl('Username for SMS Gateway.')
1647 'SMS_GATEWAY_PASSWORD' => array(
1648 xl('SMS Gateway Password'),
1649 'text', // data type
1650 '', // default
1651 xl('Password for SMS Gateway.')
1654 'SMS_GATEWAY_APIKEY' => array(
1655 xl('SMS Gateway API Key'),
1656 'text', // data type
1657 '', // default
1658 xl('API key for SMS Gateway.')
1661 'phone_notification_hour' => array(
1662 xl('Phone Notification Hour'),
1663 'num', // data type
1664 '50', // default
1665 xl('Number of hours in advance to send Phone notification.')
1668 'phone_gateway_username' => array(
1669 xl('Phone Gateway Username'),
1670 'text', // data type
1671 '', // default
1672 xl('Username for Phone Gateway.')
1675 'phone_gateway_password' => array(
1676 xl('Phone Gateway Password'),
1677 'text', // data type
1678 '', // default
1679 xl('Password for Phone Gateway.')
1682 'phone_gateway_url' => array(
1683 xl('Phone Gateway URL'),
1684 'text', // data type
1685 '', // default
1686 xl('URL for Phone Gateway.')
1691 // CDR (Clinical Decision Rules)
1693 'CDR' => array(
1695 'enable_cdr' => array(
1696 xl('Enable Clinical Decisions Rules (CDR)'),
1697 'bool', // data type
1698 '1', // default
1699 xl('Enable Clinical Decisions Rules (CDR)')
1702 'enable_allergy_check' => array(
1703 xl('Enable Allergy Check'),
1704 'bool', // data type
1705 '1', // default
1706 xl('Enable Allergy Check Against Medications and Prescriptions')
1709 'enable_alert_log' => array(
1710 xl('Enable Alert Log'),
1711 'bool', // data type
1712 '1', // default
1713 xl('Enable Alert Logging')
1716 'enable_cdr_new_crp' => array(
1717 xl('Enable Clinical Passive New Reminder(s) Popup'),
1718 'bool', // data type
1719 '1', // default
1720 xl('Enable Clinical Passive New Reminder(s) Popup')
1723 'enable_cdr_crw' => array(
1724 xl('Enable Clinical Passive Reminder Widget'),
1725 'bool', // data type
1726 '1', // default
1727 xl('Enable Clinical Passive Reminder Widget')
1730 'enable_cdr_crp' => array(
1731 xl('Enable Clinical Active Reminder Popup'),
1732 'bool', // data type
1733 '1', // default
1734 xl('Enable Clinical Active Reminder Popup')
1737 'enable_cdr_prw' => array(
1738 xl('Enable Patient Reminder Widget'),
1739 'bool', // data type
1740 '1', // default
1741 xl('Enable Patient Reminder Widget')
1744 'enable_cqm' => array(
1745 xl('Enable CQM Reporting'),
1746 'bool', // data type
1747 '1', // default
1748 xl('Enable Clinical Quality Measure (CQM) Reporting')
1751 'pqri_registry_name' => array(
1752 xl('PQRI Registry Name'),
1753 'text', // data type
1754 'Model Registry', // default
1755 xl('PQRI Registry Name')
1758 'pqri_registry_id' => array(
1759 xl('PQRI Registry ID'),
1760 'text', // data type
1761 '125789123', // default
1762 xl('PQRI Registry ID')
1765 'enable_amc' => array(
1766 xl('Enable AMC Reporting'),
1767 'bool', // data type
1768 '1', // default
1769 xl('Enable Automated Measure Calculations (AMC) Reporting')
1772 'enable_amc_prompting' => array(
1773 xl('Enable AMC Prompting'),
1774 'bool', // data type
1775 '1', // default
1776 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1779 'enable_amc_tracking' => array(
1780 xl('Enable AMC Tracking'),
1781 'bool', // data type
1782 '1', // default
1783 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
1786 'cdr_report_nice' => array(
1787 xl('CDR Reports Processing Priority'),
1788 array(
1789 '' => xl('Default Priority'),
1790 '5' => xl('Moderate Priority'),
1791 '10' => xl('Moderate/Low Priority'),
1792 '15' => xl('Low Priority'),
1793 '20' => xl('Lowest Priority')
1795 '', // default
1796 xl('Set processing priority for CDR engine based reports.')
1799 'pat_rem_clin_nice' => array(
1800 xl('Patient Reminder Creation Processing Priority'),
1801 array(
1802 '' => xl('Default Priority'),
1803 '5' => xl('Moderate Priority'),
1804 '10' => xl('Moderate/Low Priority'),
1805 '15' => xl('Low Priority'),
1806 '20' => xl('Lowest Priority')
1808 '', // default
1809 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
1812 'report_itemizing_standard' => array(
1813 xl('Enable Standard Report Itemization'),
1814 'bool', // data type
1815 '1', // default
1816 xl('Enable Itemization of Standard Clinical Rules Reports')
1819 'report_itemizing_cqm' => array(
1820 xl('Enable CQM Report Itemization'),
1821 'bool', // data type
1822 '1', // default
1823 xl('Enable Itemization of CQM Reports')
1826 'report_itemizing_amc' => array(
1827 xl('Enable AMC Report Itemization'),
1828 'bool', // data type
1829 '1', // default
1830 xl('Enable Itemization of AMC Reports')
1835 // Logging
1837 'Logging' => array(
1839 'enable_auditlog' => array(
1840 xl('Enable Audit Logging'),
1841 'bool', // data type
1842 '1', // default
1843 xl('Enable Audit Logging')
1846 'audit_events_patient-record' => array(
1847 xl('Audit Logging Patient Record'),
1848 'bool', // data type
1849 '1', // default
1850 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1853 'audit_events_scheduling' => array(
1854 xl('Audit Logging Scheduling'),
1855 'bool', // data type
1856 '1', // default
1857 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1860 'audit_events_order' => array(
1861 xl('Audit Logging Order'),
1862 'bool', // data type
1863 '1', // default
1864 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1867 'audit_events_security-administration' => array(
1868 xl('Audit Logging Security Administration'),
1869 'bool', // data type
1870 '1', // default
1871 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1874 'audit_events_backup' => array(
1875 xl('Audit Logging Backups'),
1876 'bool', // data type
1877 '1', // default
1878 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1881 'audit_events_other' => array(
1882 xl('Audit Logging Miscellaneous'),
1883 'bool', // data type
1884 '1', // default
1885 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1888 'audit_events_query' => array(
1889 xl('Audit Logging SELECT Query'),
1890 'bool', // data type
1891 '0', // default
1892 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1895 'audit_events_cdr' => array(
1896 xl('Audit CDR Engine Queries'),
1897 'bool', // data type
1898 '0', // default
1899 xl('Enable logging of CDR Engine Queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1902 'enable_atna_audit' => array(
1903 xl('Enable ATNA Auditing'),
1904 'bool', // data type
1905 '0', // default
1906 xl('Enable Audit Trail and Node Authentication (ATNA).')
1909 'atna_audit_host' => array(
1910 xl('ATNA audit host'),
1911 'text', // data type
1912 '', // default
1913 xl('The hostname of the ATNA audit repository machine.')
1916 'atna_audit_port' => array(
1917 xl('ATNA audit port'),
1918 'text', // data type
1919 '6514', // default
1920 xl('Listening port of the RFC 5425 TLS syslog server.')
1923 'atna_audit_localcert' => array(
1924 xl('ATNA audit local certificate'),
1925 'text', // data type
1926 '', // default
1927 xl('Certificate to send to RFC 5425 TLS syslog server.')
1930 'atna_audit_cacert' => array(
1931 xl('ATNA audit CA certificate'),
1932 'text', // data type
1933 '', // default
1934 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
1937 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
1938 'enable_auditlog_encryption' => array(
1939 xl('Enable Audit Log Encryption'),
1940 'bool', // data type
1941 '0', // default
1942 xl('Enable Audit Log Encryption')
1945 'billing_log_option' => array(
1946 xl('Billing Log Option'),
1947 array(
1948 '1' => xl('Billing Log Append'),
1949 '2' => xl('Billing Log Overwrite')
1951 '1', // default
1952 xl('Billing log setting to append or overwrite the log file.')
1955 'gbl_print_log_option' => array(
1956 xl('Printing Log Option'),
1957 array(
1958 '0' => xl('No logging'),
1959 '1' => xl('Hide print feature'),
1960 '2' => xl('Log entire document'),
1962 '0', // default
1963 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
1968 // Miscellaneous Tab
1970 'Miscellaneous' => array(
1972 'mysql_bin_dir' => array(
1973 xl('Path to MySQL Binaries'),
1974 'text', // data type
1975 $mysql_bin_dir, // default
1976 xl('Full path to directory containing MySQL executables.')
1979 'perl_bin_dir' => array(
1980 xl('Path to Perl Binaries'),
1981 'text', // data type
1982 $perl_bin_dir, // default
1983 xl('Full path to directory containing Perl executables.')
1986 'temporary_files_dir' => array(
1987 xl('Path to Temporary Files'),
1988 'text', // data type
1989 $temporary_files_dir, // default
1990 xl('Full path to directory used for temporary files.')
1993 'backup_log_dir' => array(
1994 xl('Path for Event Log Backup'),
1995 'text', // data type
1996 $backup_log_dir, // default
1997 xl('Full path to directory for event log backup.')
2000 'state_data_type' => array(
2001 xl('State Data Type'),
2002 array(
2003 '2' => xl('Text field'),
2004 '1' => xl('Single-selection list'),
2005 '26' => xl('Single-selection list with ability to add to the list'),
2007 '26', // default
2008 xl('Field type to use for employer or subscriber state in demographics.')
2011 'state_list' => array(
2012 xl('State list'),
2013 'text', // data type
2014 'state', // default
2015 xl('List used by above State Data Type option.')
2018 'state_custom_addlist_widget' => array(
2019 xl('State List Widget Custom Fields'),
2020 'bool', // data type
2021 '1', // default
2022 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2025 'country_data_type' => array(
2026 xl('Country Data Type'),
2027 array(
2028 '2' => xl('Text field'),
2029 '1' => xl('Single-selection list'),
2030 '26' => xl('Single-selection list with ability to add to the list'),
2032 '26', // default
2033 xl('Field type to use for employer or subscriber country in demographics.')
2036 'country_list' => array(
2037 xl('Country list'),
2038 'text', // data type
2039 'country', // default
2040 xl('List used by above Country Data Type option.')
2043 'print_command' => array(
2044 xl('Print Command'),
2045 'text', // data type
2046 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2047 xl('Shell command for printing from the server.')
2050 'default_chief_complaint' => array(
2051 xl('Default Reason for Visit'),
2052 'text', // data type
2054 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2057 'default_new_encounter_form' => array(
2058 xl('Default Encounter Form ID'),
2059 'text', // data type
2061 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
2064 'MedicareReferrerIsRenderer' => array(
2065 xl('Medicare Referrer Is Renderer'),
2066 'bool', // data type
2067 '0', // default = true
2068 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2071 'post_to_date_benchmark' => array(
2072 xl('Financial Close Date (yyyy-mm-dd)'),
2073 'text', // data type
2074 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
2075 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2078 'enable_hylafax' => array(
2079 xl('Enable Hylafax Support'),
2080 'bool', // data type
2081 '0', // default
2082 xl('Enable Hylafax Support')
2085 'hylafax_server' => array(
2086 xl('Hylafax Server'),
2087 'text', // data type
2088 'localhost', // default
2089 xl('Hylafax server hostname.')
2092 'hylafax_basedir' => array(
2093 xl('Hylafax Directory'),
2094 'text', // data type
2095 '/var/spool/fax', // default
2096 xl('Location where Hylafax stores faxes.')
2099 'hylafax_enscript' => array(
2100 xl('Hylafax Enscript Command'),
2101 'text', // data type
2102 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2103 xl('Enscript command used by Hylafax.')
2106 'enable_scanner' => array(
2107 xl('Enable Scanner Support'),
2108 'bool', // data type
2109 '0', // default
2110 xl('Enable Scanner Support')
2113 'scanner_output_directory' => array(
2114 xl('Scanner Directory'),
2115 'text', // data type
2116 '/mnt/scan_docs', // default
2117 xl('Location where scans are stored.')
2121 // Portal Tab
2123 'Portal' => array(
2125 'portal_onsite_enable' => array(
2126 xl('Enable Onsite Patient Portal'),
2127 'bool', // data type
2128 '0',
2129 xl('Enable Onsite Patient Portal.')
2132 'portal_onsite_address' => array(
2133 xl('Onsite Patient Portal Site Address'),
2134 'text', // data type
2135 'https://your_web_site.com/openemr/patients',
2136 xl('Website link for the Onsite Patient Portal.')
2139 'portal_onsite_document_download' => array(
2140 xl('Enable Onsite Patient Portal Document Download'),
2141 'bool', // data type
2142 '1',
2143 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2146 'portal_offsite_enable' => array(
2147 xl('Enable Offsite Patient Portal'),
2148 'bool', // data type
2149 '0',
2150 xl('Enable Offsite Patient Portal.')
2153 'portal_offsite_providerid' => array(
2154 xl('Offsite Patient Portal Provider ID'),
2155 'text', // data type
2157 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2160 'portal_offsite_username' => array(
2161 xl('Offsite Patient Portal Username'),
2162 'text', // data type
2164 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2167 'portal_offsite_password' => array(
2168 xl('Offsite Patient Portal Password'),
2169 'pwd', // data type
2171 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2174 'portal_offsite_address' => array(
2175 xl('Offsite Patient Portal Site Address'),
2176 'text', // data type
2177 'https://ssh.mydocsportal.com/provider.php',
2178 xl('Offsite Https link for the Patient Portal.')
2181 'portal_offsite_address_patient_link' => array(
2182 xl('Offsite Patient Portal Site Address (Patient Link)'),
2183 'text', // data type
2184 'https://ssh.mydocsportal.com',
2185 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2188 // Currently the "CMS Portal" supports WordPress. Other Content Management
2189 // Systems may be supported in the future.
2191 'gbl_portal_cms_enable' => array(
2192 xl('Enable CMS Portal'),
2193 'bool', // data type
2194 '0',
2195 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2198 'gbl_portal_cms_address' => array(
2199 xl('CMS Portal Site Address'),
2200 'text', // data type
2201 'https://your_cms_site.com/',
2202 xl('URL for the WordPress site that supports the portal')
2205 'gbl_portal_cms_username' => array(
2206 xl('CMS Portal Username'),
2207 'text', // data type
2209 xl('Login name of WordPress user for portal access')
2212 'gbl_portal_cms_password' => array(
2213 xl('CMS Portal Password'),
2214 'text', // data type
2216 xl('Password for the above user')
2221 // Connectors Tab
2223 'Connectors' => array(
2225 'erx_enable' => array(
2226 xl('Enable NewCrop eRx Service'),
2227 'bool',
2228 '0',
2229 xl('Enable NewCrop eRx Service.') + ' ' +
2230 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.')
2233 'erx_newcrop_path' => array(
2234 xl('NewCrop eRx Site Address'),
2235 'text',
2236 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2237 xl('URL for NewCrop eRx Site Address.')
2240 'erx_newcrop_path_soap' => array(
2241 xl('NewCrop eRx Web Service Address'),
2242 'text',
2243 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2244 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2247 'erx_soap_ttl_allergies' => array(
2248 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2249 'num',
2250 '21600',
2251 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2254 'erx_soap_ttl_medications' => array(
2255 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2256 'num',
2257 '21600',
2258 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2261 'erx_account_partner_name' => array(
2262 xl('NewCrop eRx Partner Name'),
2263 'text',
2265 xl('Partner Name issued for NewCrop eRx service.')
2268 'erx_account_name' => array(
2269 xl('NewCrop eRx Name'),
2270 'text',
2272 xl('Account Name issued for NewCrop eRx service.')
2275 'erx_account_password' => array(
2276 xl('NewCrop eRx Password'),
2277 'pass',
2279 xl('Account Password issued for NewCrop eRx service.')
2282 'erx_account_id' => array(
2283 xl('NewCrop eRx Account Id'),
2284 'text',
2285 '1',
2286 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2289 'erx_upload_active' => array(
2290 xl('Only upload active prescriptions'),
2291 'bool',
2292 '0',
2293 xl('Only upload active prescriptions to NewCrop eRx.')
2296 'erx_import_status_message' => array(
2297 xl('Enable NewCrop eRx import status message'),
2298 'bool',
2299 '0',
2300 xl('Enable import status message after visiting NewCrop eRx.')
2303 'erx_medication_display' => array(
2304 xl('Do not display NewCrop eRx Medications uploaded'),
2305 'bool',
2306 '0',
2307 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2310 'erx_allergy_display' => array(
2311 xl('Do not display NewCrop eRx Allergy uploaded'),
2312 'bool',
2313 '0',
2314 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2317 'erx_default_patient_country' => array(
2318 xl('NewCrop eRx Default Patient Country'),
2319 array(
2320 '' => '',
2321 'US' => xl('USA'),
2322 'CA' => xl('Canada'),
2323 'MX' => xl('Mexico'),
2326 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2329 'erx_debug_setting' => array(
2330 xl('NewCrop eRx Debug Setting'),
2331 array(
2332 0 => xl('None'),
2333 1 => xl('Request Only'),
2334 2 => xl('Response Only'),
2335 3 => xl('Request & Response'),
2337 '0',
2338 xl('Log all NewCrop eRx Requests and / or Responses.'),
2341 'phimail_enable' => array(
2342 xl('Enable phiMail Direct Messaging Service'),
2343 'bool', // data type
2344 '0',
2345 xl('Enable phiMail Direct Messaging Service')
2348 'phimail_server_address' => array(
2349 xl('phiMail Server Address'),
2350 'text', // data type
2351 'https://phimail.example.com:32541',
2352 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2355 'phimail_username' => array(
2356 xl('phiMail Username'),
2357 'text', // data type
2359 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2362 'phimail_password' => array(
2363 xl('phiMail Password'),
2364 'pass', // data type
2366 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2369 'phimail_notify' => array(
2370 xl('phiMail notification user'),
2371 'text', // data type
2372 'admin',
2373 xl('This user will receive notification of new incoming Direct messages')
2376 'phimail_interval' => array(
2377 xl('phiMail Message Check Interval (minutes)'),
2378 'num', // data type
2379 '5',
2380 xl('Interval between message checks (set to zero for manual checks only)')
2383 'phimail_ccd_enable' => array(
2384 xl('phiMail Allow CCD Send'),
2385 'bool', // data type
2386 '0',
2387 xl('phiMail Allow CCD Send')
2390 'phimail_ccr_enable' => array(
2391 xl('phiMail Allow CCR Send'),
2392 'bool', // data type
2393 '0',
2394 xl('phiMail Allow CCR Send')
2398 'Rx' => array(
2399 'rx_enable_DEA' => array(
2400 xl('Rx Enable DEA #'),
2401 'bool', // data type
2402 '1',
2403 xl('Rx Enable DEA #')
2405 'rx_show_DEA' => array(
2406 xl('Rx Show DEA #'),
2407 'bool', // data type
2408 '0',
2409 xl('Rx Show DEA #')
2411 'rx_enable_NPI' => array(
2412 xl('Rx Enable NPI'),
2413 'bool', // data type
2414 '0',
2415 xl('Rx Enable NPI')
2417 'rx_show_NPI' => array(
2418 xl('Rx Show NPI'),
2419 'bool', // data type
2420 '0',
2421 xl('Rx Show NPI')
2423 'rx_enable_SLN' => array(
2424 xl('Rx Enable State Lic. #'),
2425 'bool', // data type
2426 '0',
2427 xl('Rx Enable State Lic. #')
2429 'rx_show_SLN' => array(
2430 xl('Rx Show State Lic. #'),
2431 'bool', // data type
2432 '0',
2433 xl('Rx Show State Lic. #')
2435 'rx_paper_size' => array(
2436 xl('Rx Paper Size'), // descriptive name
2437 array(
2438 'LETTER' => xl('Letter Paper Size'),
2439 'LEGAL' => xl('Legal Paper Size'),
2440 'FOLIO' => xl('Folio Paper Size'),
2441 'EXECUTIVE' => xl('Executive Paper Size'),
2442 '4A0' => ('4A0' . " " . xl('Paper Size')),
2443 '2A0' => ('2A0' . " " . xl('Paper Size')),
2444 'A0' => ('A0' . " " . xl('Paper Size')),
2445 'A1' => ('A1' . " " . xl('Paper Size')),
2446 'A2' => ('A2' . " " . xl('Paper Size')),
2447 'A3' => ('A3' . " " . xl('Paper Size')),
2448 'A4' => ('A4' . " " . xl('Paper Size')),
2449 'A5' => ('A5' . " " . xl('Paper Size')),
2450 'A6' => ('A6' . " " . xl('Paper Size')),
2451 'A7' => ('A7' . " " . xl('Paper Size')),
2452 'A8' => ('A8' . " " . xl('Paper Size')),
2453 'A9' => ('A9' . " " . xl('Paper Size')),
2454 'A10' => ('A10' . " " . xl('Paper Size')),
2455 'B0' => ('B0' . " " . xl('Paper Size')),
2456 'B1' => ('B1' . " " . xl('Paper Size')),
2457 'B2' => ('B2' . " " . xl('Paper Size')),
2458 'B3' => ('B3' . " " . xl('Paper Size')),
2459 'B4' => ('B4' . " " . xl('Paper Size')),
2460 'B5' => ('B5' . " " . xl('Paper Size')),
2461 'B6' => ('B6' . " " . xl('Paper Size')),
2462 'B7' => ('B7' . " " . xl('Paper Size')),
2463 'B8' => ('B8' . " " . xl('Paper Size')),
2464 'B9' => ('B9' . " " . xl('Paper Size')),
2465 'B10' => ('B10' . " " . xl('Paper Size')),
2466 'C0' => ('C0' . " " . xl('Paper Size')),
2467 'C1' => ('C1' . " " . xl('Paper Size')),
2468 'C2' => ('C2' . " " . xl('Paper Size')),
2469 'C3' => ('C3' . " " . xl('Paper Size')),
2470 'C4' => ('C4' . " " . xl('Paper Size')),
2471 'C5' => ('C5' . " " . xl('Paper Size')),
2472 'C6' => ('C6' . " " . xl('Paper Size')),
2473 'C7' => ('C7' . " " . xl('Paper Size')),
2474 'C8' => ('C8' . " " . xl('Paper Size')),
2475 'C9' => ('C9' . " " . xl('Paper Size')),
2476 'C10' => ('C10' . " " . xl('Paper Size')),
2477 'RA0' => ('RA0' . " " . xl('Paper Size')),
2478 'RA1' => ('RA1' . " " . xl('Paper Size')),
2479 'RA2' => ('RA2' . " " . xl('Paper Size')),
2480 'RA3' => ('RA3' . " " . xl('Paper Size')),
2481 'RA4' => ('RA4' . " " . xl('Paper Size')),
2482 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2483 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2484 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2485 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2486 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2488 'LETTER', // default = tree menu
2489 xl('Rx Paper Size')
2491 'rx_left_margin' => array(
2492 xl('Rx Left Margin (px)'),
2493 'num',
2494 '30',
2495 xl('Rx Left Margin (px)')
2497 'rx_right_margin' => array(
2498 xl('Rx Right Margin (px)'),
2499 'num',
2500 '30',
2501 xl('Rx Right Margin (px)')
2503 'rx_top_margin' => array(
2504 xl('Rx Top Margin (px)'),
2505 'num',
2506 '72',
2507 xl('Rx Top Margin (px)')
2509 'rx_bottom_margin' => array(
2510 xl('Rx Bottom Margin (px)'),
2511 'num',
2512 '30',
2513 xl('Rx Bottom Margin (px)')
2517 'PDF' => array (
2518 'pdf_layout' => array (
2519 xl('Layout'),
2520 array(
2521 'P' => xl('Portrait'),
2522 'L' => xl('Landscape')
2524 'P', //defaut
2525 xl("Choose Layout Direction"),
2527 'pdf_language' => array (
2528 xl('PDF Language'),
2529 array(
2530 'aa' => xl('Afar'),
2531 'af' => xl('Afrikaans'),
2532 'ak' => xl('Akan'),
2533 'sq' => xl('Albanian'),
2534 'am' => xl('Amharic'),
2535 'ar' => xl('Arabic'),
2536 'an' => xl('Aragonese'),
2537 'hy' => xl('Armenian'),
2538 'as' => xl('Assamese'),
2539 'av' => xl('Avaric'),
2540 'ae' => xl('Avestan'),
2541 'ay' => xl('Aymara'),
2542 'az' => xl('Azerbaijani'),
2543 'bm' => xl('Bambara'),
2544 'ba' => xl('Bashkir'),
2545 'eu' => xl('Basque'),
2546 'be' => xl('Belarusian'),
2547 'bn' => xl('Bengali- Bangla'),
2548 'bh' => xl('Bihari'),
2549 'bi' => xl('Bislama'),
2550 'bs' => xl('Bosnian'),
2551 'br' => xl('Breton'),
2552 'bg' => xl('Bulgarian'),
2553 'my' => xl('Burmese'),
2554 'ca' => xl('Catalan- Valencian'),
2555 'ch' => xl('Chamorro'),
2556 'ce' => xl('Chechen'),
2557 'ny' => xl('Chichewa- Chewa- Nyanja'),
2558 'zh' => xl('Chinese'),
2559 'cv' => xl('Chuvash'),
2560 'kw' => xl('Cornish'),
2561 'co' => xl('Corsican'),
2562 'cr' => xl('Cree'),
2563 'hr' => xl('Croatian'),
2564 'cs' => xl('Czech'),
2565 'da' => xl('Danish'),
2566 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2567 'nl' => xl('Dutch'),
2568 'dz' => xl('Dzongkha'),
2569 'en' => xl('English'),
2570 'eo' => xl('Esperanto'),
2571 'et' => xl('Estonian'),
2572 'ee' => xl('Ewe'),
2573 'fo' => xl('Faroese'),
2574 'fj' => xl('Fijian'),
2575 'fi' => xl('Finnish'),
2576 'fr' => xl('French'),
2577 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2578 'gl' => xl('Galician'),
2579 'ka' => xl('Georgian'),
2580 'de' => xl('German'),
2581 'el' => xl('Greek, Modern'),
2582 'gn' => xl('Guaraní'),
2583 'gu' => xl('Gujarati'),
2584 'ht' => xl('Haitian- Haitian Creole'),
2585 'ha' => xl('Hausa'),
2586 'he' => xl('Hebrew (modern)'),
2587 'hz' => xl('Herero'),
2588 'hi' => xl('Hindi'),
2589 'ho' => xl('Hiri Motu'),
2590 'hu' => xl('Hungarian'),
2591 'ia' => xl('Interlingua'),
2592 'id' => xl('Indonesian'),
2593 'ie' => xl('Interlingue'),
2594 'ga' => xl('Irish'),
2595 'ig' => xl('Igbo'),
2596 'ik' => xl('Inupiaq'),
2597 'io' => xl('Ido'),
2598 'is' => xl('Icelandic'),
2599 'it' => xl('Italian'),
2600 'iu' => xl('Inuktitut'),
2601 'ja' => xl('Japanese'),
2602 'jv' => xl('Javanese'),
2603 'kl' => xl('Kalaallisut, Greenlandic'),
2604 'kn' => xl('Kannada'),
2605 'kr' => xl('Kanuri'),
2606 'ks' => xl('Kashmiri'),
2607 'kk' => xl('Kazakh'),
2608 'km' => xl('Khmer'),
2609 'ki' => xl('Kikuyu, Gikuyu'),
2610 'rw' => xl('Kinyarwanda'),
2611 'ky' => xl('Kyrgyz'),
2612 'kv' => xl('Komi'),
2613 'kg' => xl('Kongo'),
2614 'ko' => xl('Korean'),
2615 'ku' => xl('Kurdish'),
2616 'kj' => xl('Kwanyama, Kuanyama'),
2617 'la' => xl('Latin'),
2618 'lb' => xl('Luxembourgish, Letzeburgesch'),
2619 'lg' => xl('Ganda'),
2620 'li' => xl('Limburgish, Limburgan, Limburger'),
2621 'ln' => xl('Lingala'),
2622 'lo' => xl('Lao'),
2623 'lt' => xl('Lithuanian'),
2624 'lu' => xl('Luba-Katanga'),
2625 'lv' => xl('Latvian'),
2626 'gv' => xl('Manx'),
2627 'mk' => xl('Macedonian'),
2628 'mg' => xl('Malagasy'),
2629 'ms' => xl('Malay'),
2630 'ml' => xl('Malayalam'),
2631 'mt' => xl('Maltese'),
2632 'mi' => xl('Māori'),
2633 'mr' => xl('Marathi (Marāṭhī)'),
2634 'mh' => xl('Marshallese'),
2635 'mn' => xl('Mongolian'),
2636 'na' => xl('Nauru'),
2637 'nv' => xl('Navajo, Navaho'),
2638 'nb' => xl('Norwegian Bokmål'),
2639 'nd' => xl('North Ndebele'),
2640 'ne' => xl('Nepali'),
2641 'ng' => xl('Ndonga'),
2642 'nn' => xl('Norwegian Nynorsk'),
2643 'no' => xl('Norwegian'),
2644 'ii' => xl('Nuosu'),
2645 'nr' => xl('South Ndebele'),
2646 'oc' => xl('Occitan'),
2647 'oj' => xl('Ojibwe, Ojibwa'),
2648 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2649 'om' => xl('Oromo'),
2650 'or' => xl('Oriya'),
2651 'os' => xl('Ossetian, Ossetic'),
2652 'pa' => xl('Panjabi, Punjabi'),
2653 'pi' => xl('Pāli'),
2654 'fa' => xl('Persian (Farsi)'),
2655 'pl' => xl('Polish'),
2656 'ps' => xl('Pashto, Pushto'),
2657 'pt' => xl('Portuguese'),
2658 'qu' => xl('Quechua'),
2659 'rm' => xl('Romansh'),
2660 'rn' => xl('Kirundi'),
2661 'ro' => xl('Romanian'),
2662 'ru' => xl('Russian'),
2663 'sa' => xl('Sanskrit (Saṁskṛta)'),
2664 'sc' => xl('Sardinian'),
2665 'sd' => xl('Sindhi'),
2666 'se' => xl('Northern Sami'),
2667 'sm' => xl('Samoan'),
2668 'sg' => xl('Sango'),
2669 'sr' => xl('Serbian'),
2670 'gd' => xl('Scottish Gaelic- Gaelic'),
2671 'sn' => xl('Shona'),
2672 'si' => xl('Sinhala, Sinhalese'),
2673 'sk' => xl('Slovak'),
2674 'sl' => xl('Slovene'),
2675 'so' => xl('Somali'),
2676 'st' => xl('Southern Sotho'),
2677 'es' => xl('Spanish- Castilian'),
2678 'su' => xl('Sundanese'),
2679 'sw' => xl('Swahili'),
2680 'ss' => xl('Swati'),
2681 'sv' => xl('Swedish'),
2682 'ta' => xl('Tamil'),
2683 'te' => xl('Telugu'),
2684 'tg' => xl('Tajik'),
2685 'th' => xl('Thai'),
2686 'ti' => xl('Tigrinya'),
2687 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2688 'tk' => xl('Turkmen'),
2689 'tl' => xl('Tagalog'),
2690 'tn' => xl('Tswana'),
2691 'to' => xl('Tonga (Tonga Islands)'),
2692 'tr' => xl('Turkish'),
2693 'ts' => xl('Tsonga'),
2694 'tt' => xl('Tatar'),
2695 'tw' => xl('Twi'),
2696 'ty' => xl('Tahitian'),
2697 'ug' => xl('Uyghur, Uighur'),
2698 'uk' => xl('Ukrainian'),
2699 'ur' => xl('Urdu'),
2700 'uz' => xl('Uzbek'),
2701 've' => xl('Venda'),
2702 'vi' => xl('Vietnamese'),
2703 'vo' => xl('Volapük'),
2704 'wa' => xl('Walloon'),
2705 'cy' => xl('Welsh'),
2706 'wo' => xl('Wolof'),
2707 'fy' => xl('Western Frisian'),
2708 'xh' => xl('Xhosa'),
2709 'yi' => xl('Yiddish'),
2710 'yo' => xl('Yoruba'),
2711 'za' => xl('Zhuang, Chuang'),
2712 'zu' => xl('Zulu'),
2714 'en', // default English
2715 xl('Choose PDF languange Preference'),
2717 'pdf_size' => array(
2718 xl('Paper Size'), // Descriptive Name
2719 array(
2720 'LETTER' => xl('Letter Paper Size'),
2721 'LEGAL' => xl('Legal Paper Size'),
2722 'FOLIO' => xl('Folio Paper Size'),
2723 'EXECUTIVE' => xl('Executive Paper Size'),
2724 '4A0' => ('4A0' . " " . xl('Paper Size')),
2725 '2A0' => ('2A0' . " " . xl('Paper Size')),
2726 'A0' => ('A0' . " " . xl('Paper Size')),
2727 'A1' => ('A1' . " " . xl('Paper Size')),
2728 'A2' => ('A2' . " " . xl('Paper Size')),
2729 'A3' => ('A3' . " " . xl('Paper Size')),
2730 'A4' => ('A4' . " " . xl('Paper Size')),
2731 'A5' => ('A5' . " " . xl('Paper Size')),
2732 'A6' => ('A6' . " " . xl('Paper Size')),
2733 'A7' => ('A7' . " " . xl('Paper Size')),
2734 'A8' => ('A8' . " " . xl('Paper Size')),
2735 'A9' => ('A9' . " " . xl('Paper Size')),
2736 'A10' => ('A10' . " " . xl('Paper Size')),
2737 'B0' => ('B0' . " " . xl('Paper Size')),
2738 'B1' => ('B1' . " " . xl('Paper Size')),
2739 'B2' => ('B2' . " " . xl('Paper Size')),
2740 'B3' => ('B3' . " " . xl('Paper Size')),
2741 'B4' => ('B4' . " " . xl('Paper Size')),
2742 'B5' => ('B5' . " " . xl('Paper Size')),
2743 'B6' => ('B6' . " " . xl('Paper Size')),
2744 'B7' => ('B7' . " " . xl('Paper Size')),
2745 'B8' => ('B8' . " " . xl('Paper Size')),
2746 'B9' => ('B9' . " " . xl('Paper Size')),
2747 'B10' => ('B10' . " " . xl('Paper Size')),
2748 'C0' => ('C0' . " " . xl('Paper Size')),
2749 'C1' => ('C1' . " " . xl('Paper Size')),
2750 'C2' => ('C2' . " " . xl('Paper Size')),
2751 'C3' => ('C3' . " " . xl('Paper Size')),
2752 'C4' => ('C4' . " " . xl('Paper Size')),
2753 'C5' => ('C5' . " " . xl('Paper Size')),
2754 'C6' => ('C6' . " " . xl('Paper Size')),
2755 'C7' => ('C7' . " " . xl('Paper Size')),
2756 'C8' => ('C8' . " " . xl('Paper Size')),
2757 'C9' => ('C9' . " " . xl('Paper Size')),
2758 'C10' => ('C10' . " " . xl('Paper Size')),
2759 'RA0' => ('RA0' . " " . xl('Paper Size')),
2760 'RA1' => ('RA1' . " " . xl('Paper Size')),
2761 'RA2' => ('RA2' . " " . xl('Paper Size')),
2762 'RA3' => ('RA3' . " " . xl('Paper Size')),
2763 'RA4' => ('RA4' . " " . xl('Paper Size')),
2764 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2765 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2766 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2767 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2768 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2770 'LETTER',
2771 xl('Choose Paper Size')
2773 'pdf_left_margin' => array(
2774 xl('Left Margin (mm)'),
2775 'num',
2776 '5',
2777 xl('Left Margin (mm)')
2779 'pdf_right_margin' => array(
2780 xl('Right Margin (mm)'),
2781 'num',
2782 '5',
2783 xl('Right Margin (mm)')
2785 'pdf_top_margin' => array(
2786 xl('Top Margin (mm)'),
2787 'num',
2788 '5',
2789 xl('Top Margin (mm)')
2791 'pdf_bottom_margin' => array(
2792 xl('Bottom Margin (px)'),
2793 'num',
2794 '8',
2795 xl('Bottom Margin (px)')
2797 'pdf_output' => array (
2798 xl('Output Type'),
2799 array(
2800 'D' => xl('Download'),
2801 'I' => xl('Inline')
2803 'D', //defaut
2804 xl("Choose Download or Display Inline"),
2807 'chart_label_type' => array(
2808 xl('Patient Label Type'),
2809 array(
2810 '0' => xl('None'),
2811 '1' => '5160',
2812 '2' => '5161',
2813 '3' => '5162'
2815 '1', // default
2816 xl('Avery Label type for printing patient labels from popups in left nav screen'),
2819 'barcode_label_type' => array(
2820 xl('Barcode Label Type'),
2821 array(
2822 '0' => xl('None'),
2823 '1' => 'std25',
2824 '2' => 'int25',
2825 '3' => 'ean8',
2826 '4' => 'ean13',
2827 '5' => 'upc',
2828 '6' => 'code11',
2829 '7' => 'code39',
2830 '8' => 'code93',
2831 '9' => 'code128',
2832 '10' => 'codabar',
2833 '11' => 'msi',
2834 '12' => 'datamatrix'
2836 '9', // default = None
2837 xl('Barcode type for printing barcode labels from popups in left nav screen.')
2840 'addr_label_type' => array(
2841 xl('Print Patient Address Label'),
2842 'bool', // data type
2843 '1', // default = false
2844 xl('Select to print patient address labels from popups in left nav screen.')