changed default barcode to code128
[openemr.git] / library / globals.inc.php
blob1c85428c656fa3c4e30be571121cb9e196b94a89
1 <?php
2 // Copyright (C) 2010 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 // Chinese (Simplified) // xl('Chinese (Simplified)')
27 // Chinese (Traditional) // xl('Chinese (Traditional)')
28 // Czech // xl('Czech')
29 // Danish // xl('Danish')
30 // Dutch // xl('Dutch')
31 // English (Indian) // xl('English (Indian)')
32 // English (Standard) // xl('English (Standard)')
33 // Estonian // xl('Estonian')
34 // French // xl('French (Standard)')
35 // French // xl('French (Canadian)')
36 // German // xl('German')
37 // Greek // xl('Greek')
38 // Hebrew // xl('Hebrew')
39 // Hindi // xl('Hindi')
40 // Hungarian // xl('Hungarian')
41 // Italian // xl('Italian')
42 // Japanese // xl('Japanese')
43 // Lithuanian // xl('Lithuanian')
44 // Norwegian // xl('Norwegian')
45 // Persian // xl('Persian')
46 // Polish // xl('Polish')
47 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
48 // Portuguese (European) // xl('Portuguese (European)')
49 // Romanian // xl('Romanian')
50 // Russian // xl('Russian')
51 // Sinhala // xl('Sinhala')
52 // Slovak // xl('Slovak')
53 // Spanish (Latin American) // xl('Spanish (Latin American)')
54 // Spanish (Spain) // xl('Spanish (Spain)')
55 // Swedish // xl('Swedish')
56 // Turkish // xl('Turkish')
57 // Ukrainian // xl('Ukrainian')
58 // Vietnamese // xl('Vietnamese')
60 // OS-dependent stuff.
61 if (stristr(PHP_OS, 'WIN')) {
62 // MS Windows
63 $mysql_bin_dir = 'C:/xampp/mysql/bin';
64 $perl_bin_dir = 'C:/xampp/perl/bin';
65 $temporary_files_dir = 'C:/windows/temp';
66 $backup_log_dir = 'C:/windows/temp';
68 else {
69 // Everything else
70 $mysql_bin_dir = '/usr/bin';
71 $perl_bin_dir = '/usr/bin';
72 $temporary_files_dir = '/tmp';
73 $backup_log_dir = '/tmp';
76 // Language constant declarations:
77 // xl('Appearance')
78 // xl('Locale')
79 // xl('Features')
80 // xl('Calendar')
81 // xl('Security')
82 // xl('Notifications')
83 // xl('Miscellaneous')
85 // List of user specific tabs and globals
86 $USER_SPECIFIC_TABS = array('Appearance',
87 'Locale',
88 'Calendar',
89 'Connectors');
90 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
91 'concurrent_layout',
92 'css_header',
93 'gbl_pt_list_page_size',
94 'gbl_pt_list_new_window',
95 'units_of_measurement',
96 'us_weight_format',
97 'date_display_format',
98 'time_display_format',
99 'event_color',
100 'erx_import_status_message');
102 $GLOBALS_METADATA = array(
104 // Appearance Tab
106 'Appearance' => array(
108 'default_top_pane' => array(
109 xl('Main Top Pane Screen'), // descriptive name
110 array(
111 'main_info.php' => xl('Calendar Screen'),
112 '../new/new.php' => xl('Patient Search/Add Screen'),
114 'main_info.php', // default = calendar
115 xl('Type of screen layout')
118 'concurrent_layout' => array(
119 xl('Layout Style'), // descriptive name
120 array(
121 '0' => xl('Old style layout with no left menu'),
122 '1' => xl('Navigation menu consists of pairs of radio buttons'),
123 '2' => xl('Navigation menu is a tree view'),
124 '3' => xl('Navigation uses a sliding menu'),
126 '3', // default = tree menu
127 xl('Type of screen layout')
130 'css_header' => array(
131 xl('Theme'),
132 'css',
133 'style_oemr.css',
134 xl('Pick a CSS theme.')
137 'gbl_nav_area_width' => array(
138 xl('Navigation Area Width'),
139 'num',
140 '150',
141 xl('Width in pixels of the left navigation frame.')
144 'openemr_name' => array(
145 xl('Application Title'),
146 'text',
147 'OpenEMR',
148 xl('Application name for login page and main window title.')
151 'full_new_patient_form' => array(
152 xl('New Patient Form'),
153 array(
154 '0' => xl('Old-style static form without search or duplication check'),
155 '1' => xl('All demographics fields, with search and duplication check'),
156 '2' => xl('Mandatory or specified fields only, search and dup check'),
157 '3' => xl('Mandatory or specified fields only, dup check, no search'),
159 '1', // default
160 xl('Style of form used for adding new patients')
163 'patient_search_results_style' => array(
164 xl('Patient Search Results Style'),
165 array(
166 '0' => xl('Encounter statistics'),
167 '1' => xl('Mandatory and specified fields'),
169 '0', // default
170 xl('Type of columns displayed for patient search results')
173 'gbl_tall_nav_area' => array(
174 xl('Tall Navigation Area'),
175 'bool', // data type
176 '0', // default = false
177 xl('Navigation area uses full height of frameset')
180 'gbl_nav_visit_forms' => array(
181 xl('Navigation Area Visit Forms'),
182 'bool', // data type
183 '1', // default = true
184 xl('Navigation area includes encounter forms')
187 'simplified_demographics' => array(
188 xl('Simplified Demographics'),
189 'bool', // data type
190 '0', // default = false
191 xl('Omit insurance and some other things from the demographics form')
194 'simplified_prescriptions' => array(
195 xl('Simplified Prescriptions'),
196 'bool', // data type
197 '0', // default = false
198 xl('Omit form, route and interval which then become part of dosage')
201 'simplified_copay' => array(
202 xl('Simplified Co-Pay'),
203 'bool', // data type
204 '0', // default = false
205 xl('Omit method of payment from the co-pay panel')
208 'use_charges_panel' => array(
209 xl('Use Charges Panel'),
210 'bool', // data type
211 '0', // default = false
212 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
215 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
216 'enable_fees_in_left_menu' => array(
217 xl('Enable Fees In Left Menu'),
218 'bool', // data type
219 '1', // default = true
220 xl('Enable Fees In Left Menu')
222 // EDI history 2012-09-13
223 'enable_edihistory_in_left_menu' => array(
224 xl('Enable EDI History In Left Menu'),
225 'bool', // data type
226 '1', // default = true
227 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
230 'online_support_link' => array(
231 xl('Online Support Link'),
232 'text', // data type
233 'http://open-emr.org/',
234 xl('URL for OpenEMR support.')
237 'encounter_page_size' => array(
238 xl('Encounter Page Size'),
239 array(
240 '0' => xl('Show All'),
241 '5' => '5',
242 '10' => '10',
243 '15' => '15',
244 '20' => '20',
245 '25' => '25',
246 '50' => '50',
248 '20',
249 xl('Number of encounters to display per page.')
252 'gbl_pt_list_page_size' => array(
253 xl('Patient List Page Size'),
254 array(
255 '10' => '10',
256 '25' => '25',
257 '50' => '50',
258 '100' => '100',
260 '10',
261 xl('Number of patients to display per page in the patient list.')
264 'gbl_pt_list_new_window' => array(
265 xl('Patient List New Window'),
266 'bool', // data type
267 '0', // default = false
268 xl('Default state of New Window checkbox in the patient list.')
271 'gbl_vitals_options' => array(
272 xl('Vitals Form Options'),
273 array(
274 '0' => xl('Standard'),
275 '1' => xl('Omit circumferences'),
277 '0', // default
278 xl('Special treatment for the Vitals form')
283 // Locale Tab
285 'Locale' => array(
287 'language_default' => array(
288 xl('Default Language'),
289 'lang', // data type
290 'English (Standard)', // default = english
291 xl('Default language if no other is allowed or chosen.')
294 'language_menu_showall' => array(
295 xl('All Languages Allowed'),
296 'bool', // data type
297 '1', // default = true
298 xl('Allow all available languages as choices on menu at login.')
301 'language_menu_other' => array(
302 xl('Allowed Languages'),
303 'm_lang', // data type
304 '', // default = none
305 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
308 'allow_debug_language' => array(
309 xl('Allow Debugging Language'),
310 'bool', // data type
311 '1', // default = true during development and false for production releases
312 xl('This will allow selection of the debugging (\'dummy\') language.')
315 'translate_layout' => array(
316 xl('Translate Layouts'),
317 'bool', // data type
318 '1', // default = true
319 xl('Is text from form layouts to be translated?')
322 'translate_lists' => array(
323 xl('Translate Lists'),
324 'bool', // data type
325 '1', // default = true
326 xl('Is text from lists to be translated?')
329 'translate_gacl_groups' => array(
330 xl('Translate Access Control Groups'),
331 'bool', // data type
332 '1', // default = true
333 xl('Are access control group names to be translated?')
336 'translate_form_titles' => array(
337 xl('Translate Patient Note Titles'),
338 'bool', // data type
339 '1', // default = true
340 xl('Are patient note titles to be translated?')
343 'translate_document_categories' => array(
344 xl('Translate Document Categories'),
345 'bool', // data type
346 '1', // default = true
347 xl('Are document category names to be translated?')
350 'translate_appt_categories' => array(
351 xl('Translate Appointment Categories'),
352 'bool', // data type
353 '1', // default = true
354 xl('Are appointment category names to be translated?')
357 'units_of_measurement' => array(
358 xl('Units for Visit Forms'),
359 array(
360 '1' => xl('Show both US and metric (main unit is US)'),
361 '2' => xl('Show both US and metric (main unit is metric)'),
362 '3' => xl('Show US only'),
363 '4' => xl('Show metric only'),
365 '1', // default = Both/US
366 xl('Applies to the Vitals form and Growth Chart')
369 'us_weight_format' => array(
370 xl('Display Format for US Weights'),
371 array(
372 '1'=>xl('Show pounds as decimal value'),
373 '2'=>xl('Show pounds and ounces')
375 '1',
376 xl('Applies to Vitals form')
379 'disable_deprecated_metrics_form' => array(
380 xl('Disable Old Metric Vitals Form'),
381 'bool', // data type
382 '1', // default = true
383 xl('This was the older metric-only Vitals form, now deprecated.')
386 'phone_country_code' => array(
387 xl('Telephone Country Code'),
388 'num',
389 '1', // default = North America
390 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
393 'date_display_format' => array(
394 xl('Date Display Format'),
395 array(
396 '0' => xl('YYYY-MM-DD'),
397 '1' => xl('MM/DD/YYYY'),
398 '2' => xl('DD/MM/YYYY'),
400 '0',
401 xl('Format used to display most dates.')
404 'time_display_format' => array(
405 xl('Time Display Format'),
406 array(
407 '0' => xl('24 hr'),
408 '1' => xl('12 hr'),
410 '0',
411 xl('Format used to display most times.')
414 'currency_decimals' => array(
415 xl('Currency Decimal Places'),
416 array(
417 '0' => xl('0'),
418 '1' => xl('1'),
419 '2' => xl('2'),
421 '2',
422 xl('Number of digits after decimal point for currency, usually 0 or 2.')
425 'currency_dec_point' => array(
426 xl('Currency Decimal Point Symbol'),
427 array(
428 '.' => xl('Period'),
429 ',' => xl('Comma'),
431 '.',
432 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
435 'currency_thousands_sep' => array(
436 xl('Currency Thousands Separator'),
437 array(
438 ',' => xl('Comma'),
439 '.' => xl('Period'),
440 ' ' => xl('Space'),
441 '' => xl('None'),
443 ',',
444 xl('Symbol used to separate thousands for currency.')
447 'gbl_currency_symbol' => array(
448 xl('Currency Designator'),
449 'text', // data type
450 '$', // default
451 xl('Code or symbol to indicate currency')
453 'age_display_format'=>array(xl('Age Display Format'),
454 array(
455 '0'=>xl('Years or months'),
456 '1'=>xl('Years, months and days')
458 '0',
459 xl('Format for age display')
461 'age_display_limit' => array(
462 xl('Age in Years for Display Format Change'),
463 'num',
464 '3',
465 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
469 // Features Tab
471 'Features' => array(
473 'specific_application' => array(
474 xl('Specific Application'),
475 array(
476 '0' => xl('None'),
477 '1' => xl('Athletic team'),
478 '2' => xl('IPPF'),
479 '3' => xl('Weight loss clinic'),
481 '0', // default
482 xl('Indicator for specialized usage')
485 'inhouse_pharmacy' => array(
486 xl('Drugs and Products'),
487 array(
488 '0' => xl('Do not inventory and sell any products'),
489 '1' => xl('Inventory and sell drugs only'),
490 '2' => xl('Inventory and sell both drugs and non-drug products'),
491 '3' => xl('Products but no prescription drugs and no templates'),
493 '0', // default
494 xl('Option to support inventory and sales of products')
497 'disable_chart_tracker' => array(
498 xl('Disable Chart Tracker'),
499 'bool', // data type
500 '0', // default = false
501 xl('Removes the Chart Tracker feature')
504 'disable_phpmyadmin_link' => array(
505 xl('Disable phpMyAdmin'),
506 'bool', // data type
507 '0', // default = false
508 xl('Removes support for phpMyAdmin')
511 'disable_immunizations' => array(
512 xl('Disable Immunizations'),
513 'bool', // data type
514 '0', // default = false
515 xl('Removes support for immunizations')
518 'disable_prescriptions' => array(
519 xl('Disable Prescriptions'),
520 'bool', // data type
521 '0', // default = false
522 xl('Removes support for prescriptions')
525 'omit_employers' => array(
526 xl('Omit Employers'),
527 'bool', // data type
528 '0', // default = false
529 xl('Omit employer information in patient demographics')
532 'select_multi_providers' => array(
533 xl('Support Multi-Provider Events'),
534 'bool', // data type
535 '0', // default = false
536 xl('Support calendar events that apply to multiple providers')
539 'disable_non_default_groups' => array(
540 xl('Disable User Groups'),
541 'bool', // data type
542 '1', // default = true
543 xl('Normally this should be checked. Not related to access control.')
546 'ignore_pnotes_authorization' => array(
547 xl('Skip Authorization of Patient Notes'),
548 'bool', // data type
549 '1', // default = true
550 xl('Do not require patient notes to be authorized')
553 'support_encounter_claims' => array(
554 xl('Allow Encounter Claims'),
555 'bool', // data type
556 '0', // default = false
557 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
560 'advance_directives_warning' => array(
561 xl('Advance Directives Warning'),
562 'bool', // data type
563 '0', // default = false
564 xl('Display advance directives in the demographics page.')
567 'configuration_import_export' => array(
568 xl('Configuration Export/Import'),
569 'bool', // data type
570 '0', // default = false
571 xl('Support export/import of configuration data via the Backup page.')
574 'restrict_user_facility' => array(
575 xl('Restrict Users to Facilities'),
576 'bool', // data type
577 '0', // default
578 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
581 'set_facility_cookie' => array(
582 xl('Remember Selected Facility'),
583 'bool', // data type
584 '0', // default
585 xl('Set a facility cookie to remember the selected facility between logins.')
588 'receipts_by_provider' => array(
589 xl('Print Receipts by Provider'),
590 'bool',
591 '0', // default
592 xl('Causes Receipts to Print Encounter/Primary Provider Info')
595 'discount_by_money' => array(
596 xl('Discounts as Monetary Amounts'),
597 'bool', // data type
598 '1', // default = true
599 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
602 'gbl_visit_referral_source' => array(
603 xl('Referral Source for Encounters'),
604 'bool', // data type
605 '0', // default = false
606 xl('A referral source may be specified for each visit.')
609 'gbl_mask_patient_id' => array(
610 xl('Mask for Patient IDs'),
611 'text', // data type
612 '', // default
613 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
616 'gbl_mask_invoice_number' => array(
617 xl('Mask for Invoice Numbers'),
618 'text', // data type
619 '', // default
620 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
623 'gbl_mask_product_id' => array(
624 xl('Mask for Product IDs'),
625 'text', // data type
626 '', // default
627 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
630 'force_billing_widget_open' => array(
631 xl('Force Billing Widget Open'),
632 'bool', // data type
633 '0', // default = false
634 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
637 'num_past_appointments_to_show' => array(
638 xl('Past Appointment Display Widget'),
639 'num', // data type
640 '0', // default = false
641 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)')
644 'activate_ccr_ccd_report' => array(
645 xl('Activate CCR/CCD Reporting'),
646 'bool', // data type
647 '1', // default = true
648 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
651 'hide_document_encryption' => array(
652 xl('Hide Encryption/Decryption Options In Document Management'),
653 'bool', // data type
654 '1', // default = true
655 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
658 'use_custom_immun_list' => array(
659 xl('Use Custom Immunization List'),
660 'bool', // data type
661 '0', // default = true
662 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
665 'cms_1500' => array(
666 xl('CMS 1500 Paper Form Format'),
667 array(
668 '0' => xl('08/05'),
669 '1' => xl('02/12'),
671 '0', // default
672 xl('This specifies which revision of the form the billing module should generate')
675 'cms_1500_box_31_format' => array(
676 xl('CMS 1500: Box 31 Format'),
677 array(
678 '0' => xl('Signature on File'),
679 '1' => xl('Firstname Lastname'),
680 '2' => xl('None'),
682 '0', // default
683 xl('This specifies whether to include date in Box 31.')
687 'cms_1500_box_31_date' => array(
688 xl('CMS 1500: Date in Box 31 (Signature)'),
689 array(
690 '0' => xl('None'),
691 '1' => xl('Date of Service'),
692 '2' => xl('Today'),
694 '0', // default
695 xl('This specifies whether to include date in Box 31.')
699 // E-Sign Tab
701 'E-Sign' => array(
703 'esign_all' => array(
704 xl('Allows E-Sign on the entire encounter'),
705 'bool', // data type
706 '0', // default = false
707 xl('This will enable signing an entire encounter, rather than individual forms')
710 'lock_esign_all' => array(
711 xl('Lock e-signed encounters and their forms'),
712 'bool', // data type
713 '0', // default = false
714 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
717 'esign_individual' => array(
718 xl('Allows E-Signing Individual Forms'),
719 'bool', // data type
720 '1', // default = false
721 xl('This will enable signing individual forms separately')
724 'lock_esign_individual' => array(
725 xl('Lock an e-signed form individually'),
726 'bool', // data type
727 '1', // default = false
728 xl('This will disable the Edit button on any form that is e-signed')
731 'esign_lock_toggle' => array(
732 xl('Enable lock toggle'),
733 'bool', // data type
734 '0', // default = false
735 xl('This will give the user the option to lock (separate locking and signing)')
738 'esign_report_hide_empty_sig' => array(
739 xl('Hide Empty E-Sign Logs On Report'),
740 'bool', // data type
741 '1', // default = false
742 xl('This will hide empty e-sign logs on the patient report')
746 //Documents Tab
747 'Documents' => array(
748 'document_storage_method' => array(
749 xl('Document Storage Method'),
750 array(
751 '0' => xl('Hard Disk'),
752 '1' => xl('CouchDB')
754 '0', // default
755 xl('Option to save method of document storage.')
757 'couchdb_host' => array(
758 xl('CouchDB HostName'),
759 'text',
760 'localhost',
761 xl('CouchDB host'),
763 'couchdb_user' => array(
764 xl('CouchDB UserName'),
765 'text',
767 xl('Username to connect to CouchDB'),
769 'couchdb_pass' => array(
770 xl('CouchDB Password'),
771 'text',
773 xl('Password to connect to CouchDB'),
775 'couchdb_port' => array(
776 xl('CouchDB Port'),
777 'text',
778 '5984',
779 xl('CouchDB port'),
781 'couchdb_dbase' => array(
782 xl('CouchDB Database'),
783 'text',
785 xl('CouchDB database name'),
787 'couchdb_log' => array(
788 xl('CouchDB Log Enable'),
789 'bool',
790 '0',
791 xl('Enable log for document uploads/downloads to CouchDB'),
794 'patient_id_category_name' => array(
795 xl('Patient ID Category Name'),
796 'text', // data type
797 'Patient ID card', // default
798 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
801 'patient_photo_category_name' => array(
802 xl('Patient Photo Category Name'),
803 'text', // data type
804 'Patient Photograph', // default
805 xl('Optional category name for photo images that can be viewed from the patient summary page.')
808 'lab_results_category_name' => array(
809 xl('Lab Results Category Name'),
810 'text', // data type
811 'Lab Report', // default
812 xl('Document category name for storage of electronically received lab results.')
817 // Calendar Tab
819 'Calendar' => array(
821 'disable_calendar' => array(
822 xl('Disable Calendar'),
823 'bool', // data type
824 '0', // default
825 xl('Do not display the calendar.')
828 'schedule_start' => array(
829 xl('Calendar Starting Hour'),
830 'hour',
831 '8', // default
832 xl('Beginning hour of day for calendar events.')
835 'schedule_end' => array(
836 xl('Calendar Ending Hour'),
837 'hour',
838 '17', // default
839 xl('Ending hour of day for calendar events.')
842 'calendar_interval' => array(
843 xl('Calendar Interval'),
844 array(
845 '5' => '5',
846 '10' => '10',
847 '15' => '15',
848 '20' => '20',
849 '30' => '30',
850 '60' => '60',
852 '15', // default
853 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
856 'calendar_appt_style' => array(
857 xl('Appointment Display Style'),
858 array(
859 '1' => 'Last name',
860 '2' => 'Last name, first name',
861 '3' => 'Last name, first name (title)',
862 '4' => 'Last name, first name (title: description)',
864 '2', // default
865 xl('This determines how appointments display on the calendar.')
868 'docs_see_entire_calendar' => array(
869 xl('Providers See Entire Calendar'),
870 'bool', // data type
871 '0', // default
872 xl('Check this if you want providers to see all appointments by default and not just their own.')
875 'auto_create_new_encounters' => array(
876 xl('Auto-Create New Encounters'),
877 'bool', // data type
878 '1', // default
879 xl('Automatically create a new encounter when appointment status is set to "@" (arrived).')
882 'event_color' => array(
883 xl('Appointment/Event Color'),
884 array(
885 '1' => 'Category Color Schema',
886 '2' => 'Facility Color Schema',
887 ), // data type
888 '1', // default
889 xl('This determines which color schema used for appointment')
894 // Security Tab
896 'Security' => array(
898 'timeout' => array(
899 xl('Idle Session Timeout Seconds'),
900 'num', // data type
901 '7200', // default
902 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
905 'secure_password' => array(
906 xl('Require Strong Passwords'),
907 'bool', // data type
908 '0', // default
909 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
912 'password_history' => array(
913 xl('Require Unique Passwords'),
914 'bool', // data type
915 '0', // default
916 xl('Means none of last three passwords are allowed when changing a password.')
918 'password_compatibility' => array(
919 xl('Permit unsalted passwords'),
920 'bool', // data type
921 '1', // default
922 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')
925 'password_expiration_days' => array(
926 xl('Default Password Expiration Days'),
927 'num', // data type
928 '0', // default
929 xl('Default password expiration period in days. 0 means this feature is disabled.')
932 'password_grace_time' => array(
933 xl('Password Expiration Grace Period'),
934 'num', // data type
935 '0', // default
936 xl('Period in days where a user may login with an expired password.')
939 'is_client_ssl_enabled' => array(
940 xl('Enable Client SSL'),
941 'bool', // data type
942 '0', // default
943 xl('Enable client SSL certificate authentication.')
946 'certificate_authority_crt' => array(
947 xl('Path to CA Certificate File'),
948 'text', // data type
949 '', // default
950 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
953 'certificate_authority_key' => array(
954 xl('Path to CA Key File'),
955 'text', // data type
956 '', // default
957 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
960 'client_certificate_valid_in_days' => array(
961 xl('Client Certificate Expiration Days'),
962 'num', // data type
963 '365', // default
964 xl('Number of days that the client certificate is valid.')
967 'Emergency_Login_email_id' => array(
968 xl('Emergency Login Email Address'),
969 'text', // data type
970 '', // default
971 xl('Email address, if any, to receive emergency login user activation messages.')
976 // Notifications Tab
978 'Notifications' => array(
980 'patient_reminder_sender_name' => array(
981 xl('Patient Reminder Sender Name'),
982 'text', // data type
983 '', // default
984 xl('Name of the sender for patient reminders.')
987 'patient_reminder_sender_email' => array(
988 xl('Patient Reminder Sender Email'),
989 'text', // data type
990 '', // default
991 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.')
994 'practice_return_email_path' => array(
995 xl('Notification Email Address'),
996 'text', // data type
997 '', // default
998 xl('Email address, if any, to receive administrative notifications.')
1001 'EMAIL_METHOD' => array(
1002 xl('Email Transport Method'),
1003 array(
1004 'PHPMAIL' => 'PHPMAIL',
1005 'SENDMAIL' => 'SENDMAIL',
1006 'SMTP' => 'SMTP',
1008 'SMTP', // default
1009 xl('Method for sending outgoing email.')
1012 'SMTP_HOST' => array(
1013 xl('SMTP Server Hostname'),
1014 'text', // data type
1015 'localhost', // default
1016 xl('If SMTP is used, the server`s hostname or IP address.')
1019 'SMTP_PORT' => array(
1020 xl('SMTP Server Port Number'),
1021 'num', // data type
1022 '25', // default
1023 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1026 'SMTP_USER' => array(
1027 xl('SMTP User for Authentication'),
1028 'text', // data type
1029 '', // default
1030 xl('Must be empty if SMTP authentication is not used.')
1033 'SMTP_PASS' => array(
1034 xl('SMTP Password for Authentication'),
1035 'text', // data type
1036 '', // default
1037 xl('Must be empty if SMTP authentication is not used.')
1040 'EMAIL_NOTIFICATION_HOUR' => array(
1041 xl('Email Notification Hours'),
1042 'num', // data type
1043 '50', // default
1044 xl('Number of hours in advance to send email notifications.')
1047 'SMS_NOTIFICATION_HOUR' => array(
1048 xl('SMS Notification Hours'),
1049 'num', // data type
1050 '50', // default
1051 xl('Number of hours in advance to send SMS notifications.')
1054 'SMS_GATEWAY_USENAME' => array(
1055 xl('SMS Gateway Username'),
1056 'text', // data type
1057 '', // default
1058 xl('Username for SMS Gateway.')
1061 'SMS_GATEWAY_PASSWORD' => array(
1062 xl('SMS Gateway Password'),
1063 'text', // data type
1064 '', // default
1065 xl('Password for SMS Gateway.')
1068 'SMS_GATEWAY_APIKEY' => array(
1069 xl('SMS Gateway API Key'),
1070 'text', // data type
1071 '', // default
1072 xl('API key for SMS Gateway.')
1075 'phone_notification_hour' => array(
1076 xl('Phone Notification Hour'),
1077 'num', // data type
1078 '50', // default
1079 xl('Number of hours in advance to send Phone notification.')
1082 'phone_gateway_username' => array(
1083 xl('Phone Gateway Username'),
1084 'text', // data type
1085 '', // default
1086 xl('Username for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
1089 'phone_gateway_password' => array(
1090 xl('Phone Gateway Password'),
1091 'text', // data type
1092 '', // default
1093 xl('Password for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
1096 'phone_gateway_url' => array(
1097 xl('Phone Gateway URL'),
1098 'text', // data type
1099 '', // default
1100 xl('URL for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
1105 // CDR (Clinical Decision Rules)
1107 'CDR' => array(
1109 'enable_cdr' => array(
1110 xl('Enable Clinical Decisions Rules (CDR)'),
1111 'bool', // data type
1112 '1', // default
1113 xl('Enable Clinical Decisions Rules (CDR)')
1116 'enable_cdr_crw' => array(
1117 xl('Enable Clinical Reminder Widget'),
1118 'bool', // data type
1119 '1', // default
1120 xl('Enable Clinical Reminder Widget')
1123 'enable_cdr_crp' => array(
1124 xl('Enable Clinical Reminder Popup'),
1125 'bool', // data type
1126 '1', // default
1127 xl('Enable Clinical Reminder Popup')
1130 'enable_cdr_prw' => array(
1131 xl('Enable Patient Reminder Widget'),
1132 'bool', // data type
1133 '1', // default
1134 xl('Enable Patient Reminder Widget')
1137 'enable_cqm' => array(
1138 xl('Enable CQM Reporting'),
1139 'bool', // data type
1140 '1', // default
1141 xl('Enable Clinical Quality Measure (CQM) Reporting')
1144 'pqri_registry_name' => array(
1145 xl('PQRI Registry Name'),
1146 'text', // data type
1147 'Model Registry', // default
1148 xl('PQRI Registry Name')
1151 'pqri_registry_id' => array(
1152 xl('PQRI Registry ID'),
1153 'text', // data type
1154 '125789123', // default
1155 xl('PQRI Registry ID')
1158 'enable_amc' => array(
1159 xl('Enable AMC Reporting'),
1160 'bool', // data type
1161 '1', // default
1162 xl('Enable Automated Measure Calculations (AMC) Reporting')
1165 'enable_amc_prompting' => array(
1166 xl('Enable AMC Prompting'),
1167 'bool', // data type
1168 '1', // default
1169 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1172 'enable_amc_tracking' => array(
1173 xl('Enable AMC Tracking'),
1174 'bool', // data type
1175 '1', // default
1176 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
1179 'cdr_report_nice' => array(
1180 xl('CDR Reports Processing Priority'),
1181 array(
1182 '' => xl('Default Priority'),
1183 '5' => xl('Moderate Priority'),
1184 '10' => xl('Moderate/Low Priority'),
1185 '15' => xl('Low Priority'),
1186 '20' => xl('Lowest Priority')
1188 '', // default
1189 xl('Set processing priority for CDR engine based reports.')
1192 'pat_rem_clin_nice' => array(
1193 xl('Patient Reminder Creation Processing Priority'),
1194 array(
1195 '' => xl('Default Priority'),
1196 '5' => xl('Moderate Priority'),
1197 '10' => xl('Moderate/Low Priority'),
1198 '15' => xl('Low Priority'),
1199 '20' => xl('Lowest Priority')
1201 '', // default
1202 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
1207 // Logging
1209 'Logging' => array(
1211 'enable_auditlog' => array(
1212 xl('Enable Audit Logging'),
1213 'bool', // data type
1214 '1', // default
1215 xl('Enable Audit Logging')
1218 'audit_events_patient-record' => array(
1219 xl('Audit Logging Patient Record'),
1220 'bool', // data type
1221 '1', // default
1222 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1225 'audit_events_scheduling' => array(
1226 xl('Audit Logging Scheduling'),
1227 'bool', // data type
1228 '1', // default
1229 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1232 'audit_events_order' => array(
1233 xl('Audit Logging Order'),
1234 'bool', // data type
1235 '1', // default
1236 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1239 'audit_events_security-administration' => array(
1240 xl('Audit Logging Security Administration'),
1241 'bool', // data type
1242 '1', // default
1243 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1246 'audit_events_backup' => array(
1247 xl('Audit Logging Backups'),
1248 'bool', // data type
1249 '1', // default
1250 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1253 'audit_events_other' => array(
1254 xl('Audit Logging Miscellaneous'),
1255 'bool', // data type
1256 '1', // default
1257 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1260 'audit_events_query' => array(
1261 xl('Audit Logging SELECT Query'),
1262 'bool', // data type
1263 '0', // default
1264 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1267 'audit_events_cdr' => array(
1268 xl('Audit CDR Engine Queries'),
1269 'bool', // data type
1270 '0', // default
1271 xl('Enable logging of CDR Engine Queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1274 'enable_atna_audit' => array(
1275 xl('Enable ATNA Auditing'),
1276 'bool', // data type
1277 '0', // default
1278 xl('Enable Audit Trail and Node Authentication (ATNA).')
1281 'atna_audit_host' => array(
1282 xl('ATNA audit host'),
1283 'text', // data type
1284 '', // default
1285 xl('The hostname of the ATNA audit repository machine.')
1288 'atna_audit_port' => array(
1289 xl('ATNA audit port'),
1290 'text', // data type
1291 '6514', // default
1292 xl('Listening port of the RFC 5425 TLS syslog server.')
1295 'atna_audit_localcert' => array(
1296 xl('ATNA audit local certificate'),
1297 'text', // data type
1298 '', // default
1299 xl('Certificate to send to RFC 5425 TLS syslog server.')
1302 'atna_audit_cacert' => array(
1303 xl('ATNA audit CA certificate'),
1304 'text', // data type
1305 '', // default
1306 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
1311 // Miscellaneous Tab
1313 'Miscellaneous' => array(
1315 'mysql_bin_dir' => array(
1316 xl('Path to MySQL Binaries'),
1317 'text', // data type
1318 $mysql_bin_dir, // default
1319 xl('Full path to directory containing MySQL executables.')
1322 'perl_bin_dir' => array(
1323 xl('Path to Perl Binaries'),
1324 'text', // data type
1325 $perl_bin_dir, // default
1326 xl('Full path to directory containing Perl executables.')
1329 'temporary_files_dir' => array(
1330 xl('Path to Temporary Files'),
1331 'text', // data type
1332 $temporary_files_dir, // default
1333 xl('Full path to directory used for temporary files.')
1336 'backup_log_dir' => array(
1337 xl('Path for Event Log Backup'),
1338 'text', // data type
1339 $backup_log_dir, // default
1340 xl('Full path to directory for event log backup.')
1343 'state_data_type' => array(
1344 xl('State Data Type'),
1345 array(
1346 '2' => xl('Text field'),
1347 '1' => xl('Single-selection list'),
1348 '26' => xl('Single-selection list with ability to add to the list'),
1350 '26', // default
1351 xl('Field type to use for employer or subscriber state in demographics.')
1354 'state_list' => array(
1355 xl('State list'),
1356 'text', // data type
1357 'state', // default
1358 xl('List used by above State Data Type option.')
1361 'state_custom_addlist_widget' => array(
1362 xl('State List Widget Custom Fields'),
1363 'bool', // data type
1364 '1', // default
1365 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
1368 'country_data_type' => array(
1369 xl('Country Data Type'),
1370 array(
1371 '2' => xl('Text field'),
1372 '1' => xl('Single-selection list'),
1373 '26' => xl('Single-selection list with ability to add to the list'),
1375 '26', // default
1376 xl('Field type to use for employer or subscriber country in demographics.')
1379 'country_list' => array(
1380 xl('Country list'),
1381 'text', // data type
1382 'country', // default
1383 xl('List used by above Country Data Type option.')
1386 'print_command' => array(
1387 xl('Print Command'),
1388 'text', // data type
1389 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
1390 xl('Shell command for printing from the server.')
1393 'default_chief_complaint' => array(
1394 xl('Default Reason for Visit'),
1395 'text', // data type
1397 xl('You may put text here as the default complaint in the New Patient Encounter form.')
1400 'default_new_encounter_form' => array(
1401 xl('Default Encounter Form ID'),
1402 'text', // data type
1404 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
1407 'MedicareReferrerIsRenderer' => array(
1408 xl('Medicare Referrer Is Renderer'),
1409 'bool', // data type
1410 '0', // default = true
1411 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
1414 'post_to_date_benchmark' => array(
1415 xl('Financial Close Date (yyyy-mm-dd)'),
1416 'text', // data type
1417 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
1418 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
1421 'enable_hylafax' => array(
1422 xl('Enable Hylafax Support'),
1423 'bool', // data type
1424 '0', // default
1425 xl('Enable Hylafax Support')
1428 'hylafax_server' => array(
1429 xl('Hylafax Server'),
1430 'text', // data type
1431 'localhost', // default
1432 xl('Hylafax server hostname.')
1435 'hylafax_basedir' => array(
1436 xl('Hylafax Directory'),
1437 'text', // data type
1438 '/var/spool/fax', // default
1439 xl('Location where Hylafax stores faxes.')
1442 'hylafax_enscript' => array(
1443 xl('Hylafax Enscript Command'),
1444 'text', // data type
1445 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
1446 xl('Enscript command used by Hylafax.')
1449 'enable_scanner' => array(
1450 xl('Enable Scanner Support'),
1451 'bool', // data type
1452 '0', // default
1453 xl('Enable Scanner Support')
1456 'scanner_output_directory' => array(
1457 xl('Scanner Directory'),
1458 'text', // data type
1459 '/mnt/scan_docs', // default
1460 xl('Location where scans are stored.')
1465 // Portal Tab
1467 'Portal' => array(
1469 'portal_onsite_enable' => array(
1470 xl('Enable Onsite Patient Portal'),
1471 'bool', // data type
1472 '0',
1473 xl('Enable Onsite Patient Portal.')
1476 'portal_onsite_address' => array(
1477 xl('Onsite Patient Portal Site Address'),
1478 'text', // data type
1479 'https://your_web_site.com/openemr/patients',
1480 xl('Website link for the Onsite Patient Portal.')
1483 'portal_offsite_enable' => array(
1484 xl('Enable Offsite Patient Portal'),
1485 'bool', // data type
1486 '0',
1487 xl('Enable Offsite Patient Portal.')
1490 'portal_offsite_providerid' => array(
1491 xl('Offsite Patient Portal Provider ID'),
1492 'text', // data type
1494 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
1497 'portal_offsite_username' => array(
1498 xl('Offsite Patient Portal Username'),
1499 'text', // data type
1501 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
1504 'portal_offsite_password' => array(
1505 xl('Offsite Patient Portal Password'),
1506 'pwd', // data type
1508 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
1511 'portal_offsite_address' => array(
1512 xl('Offsite Patient Portal Site Address'),
1513 'text', // data type
1514 'https://ssh.mydocsportal.com/provider.php',
1515 xl('Offsite Https link for the Patient Portal.')
1518 'portal_offsite_address_patient_link' => array(
1519 xl('Offsite Patient Portal Site Address (Patient Link)'),
1520 'text', // data type
1521 'https://ssh.mydocsportal.com',
1522 xl('Offsite Https link for the Patient Portal.(Patient Link)')
1525 // Currently the "CMS Portal" supports WordPress. Other Content Management
1526 // Systems may be supported in the future.
1528 'gbl_portal_cms_enable' => array(
1529 xl('Enable CMS Portal'),
1530 'bool', // data type
1531 '0',
1532 xl('Enable support for the open source WordPress Portal by Sunset Systems')
1535 'gbl_portal_cms_address' => array(
1536 xl('CMS Portal Site Address'),
1537 'text', // data type
1538 'https://your_cms_site.com/',
1539 xl('URL for the WordPress site that supports the portal')
1542 'gbl_portal_cms_username' => array(
1543 xl('CMS Portal Username'),
1544 'text', // data type
1546 xl('Login name of WordPress user for portal access')
1549 'gbl_portal_cms_password' => array(
1550 xl('CMS Portal Password'),
1551 'text', // data type
1553 xl('Password for the above user')
1558 // Connectors Tab
1560 'Connectors' => array(
1562 'lab_exchange_enable' => array(
1563 xl('Enable Lab Exchange'),
1564 'bool', // data type
1565 '0',
1566 xl('Enable the Medical Information Integration, LLC Lab Exchange Service.')
1569 'lab_exchange_siteid' => array(
1570 xl('Lab Exchange Site ID'),
1571 'text', // data type
1572 '3',
1573 xl('Site ID for the Medical Information Integration, LLC Lab Exchange Service.')
1576 'lab_exchange_token' => array(
1577 xl('Lab Exchange Token ID'),
1578 'text', // data type
1579 '12345',
1580 xl('Token ID for the Medical Information Integration, LLC Lab Exchange Service.')
1583 'lab_exchange_endpoint' => array(
1584 xl('Lab Exchange Site Address'),
1585 'text', // data type
1586 'https://len.mi-squared.com:29443/len/api',
1587 xl('Contact Medical Information Integration, LLC at http://mi-squared.com for Lab Exchange Service.')
1590 'erx_enable' => array(
1591 xl('Enable NewCrop eRx Service'),
1592 'bool', // data type
1593 '0',
1594 xl('Enable NewCrop eRx Service')
1597 'erx_path_production' => array(
1598 xl('NewCrop eRx Site Address'),
1599 'text', // data type
1600 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
1601 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing the eRx service')
1604 'erx_path_soap_production' => array(
1605 xl('NewCrop eRx Web Service Address'),
1606 'text', // data type
1607 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
1608 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing the eRx service')
1611 'erx_soap_ttl_allergies' => array(
1612 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
1613 'num',
1614 '21600',
1615 xl('Time-To-Live for Allergies SOAP Request in seconds')
1618 'erx_soap_ttl_medications' => array(
1619 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
1620 'num',
1621 '21600',
1622 xl('Time-To-Live for Medications SOAP Request in seconds')
1625 'partner_name_production' => array(
1626 xl('NewCrop eRx Partner Name'),
1627 'text', // data type
1629 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing the eRx service')
1632 'erx_name_production' => array(
1633 xl('NewCrop eRx Name'),
1634 'text', // data type
1636 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing the eRx service')
1639 'erx_password_production' => array(
1640 xl('NewCrop eRx Password'),
1641 'pass', // data type
1643 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing the eRx service')
1646 'erx_account_id' => array(
1647 xl('NewCrop eRx Account Id'),
1648 'text', // data type
1649 '1',
1650 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing the eRx service')
1653 'erx_upload_active' => array(
1654 xl('Only upload active prescriptions'),
1655 'bool', // data type
1656 '0',
1657 xl('Only upload active prescriptions')
1660 'erx_import_status_message' => array(
1661 xl('Enable import status message for NewCrop erx'),
1662 'bool', // data type
1663 '0',
1664 xl('Enable import status message for NewCrop erx')
1667 'erx_medication_display' => array(
1668 xl('Do not display Medications uploaded to NewCrop'),
1669 'bool', // data type
1670 '0',
1671 xl('Do not display Medications uploaded to NewCrop')
1674 'erx_allergy_display' => array(
1675 xl('Do not display Allergy uploaded to NewCrop'),
1676 'bool', // data type
1677 '0',
1678 xl('Do not display Allergy uploaded to NewCrop')
1681 'erx_default_patient_country' => array(
1682 xl('Default Patient Country'),
1683 array(
1684 '' => '',
1685 'US' => 'USA',
1686 'CA' => 'Canada',
1687 'MX' => 'Mexico'
1690 xl('Default Patient Country'),
1693 'phimail_enable' => array(
1694 xl('Enable phiMail Direct Messaging Service'),
1695 'bool', // data type
1696 '0',
1697 xl('Enable phiMail Direct Messaging Service')
1700 'phimail_server_address' => array(
1701 xl('phiMail Server Address'),
1702 'text', // data type
1703 'https://phimail.example.com:32541',
1704 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
1707 'phimail_username' => array(
1708 xl('phiMail Username'),
1709 'text', // data type
1711 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
1714 'phimail_password' => array(
1715 xl('phiMail Password'),
1716 'pass', // data type
1718 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
1721 'phimail_notify' => array(
1722 xl('phiMail notification user'),
1723 'text', // data type
1724 'admin',
1725 xl('This user will receive notification of new incoming Direct messages')
1728 'phimail_interval' => array(
1729 xl('phiMail Message Check Interval (minutes)'),
1730 'num', // data type
1731 '5',
1732 xl('Interval between message checks (set to zero for manual checks only)')
1735 'phimail_ccd_enable' => array(
1736 xl('phiMail Allow CCD Send'),
1737 'bool', // data type
1738 '0',
1739 xl('phiMail Allow CCD Send')
1742 'phimail_ccr_enable' => array(
1743 xl('phiMail Allow CCR Send'),
1744 'bool', // data type
1745 '0',
1746 xl('phiMail Allow CCR Send')
1750 'Rx' => array(
1751 'rx_enable_DEA' => array(
1752 xl('Rx Enable DEA #'),
1753 'bool', // data type
1754 '1',
1755 xl('Rx Enable DEA #')
1757 'rx_show_DEA' => array(
1758 xl('Rx Show DEA #'),
1759 'bool', // data type
1760 '0',
1761 xl('Rx Show DEA #')
1763 'rx_enable_NPI' => array(
1764 xl('Rx Enable NPI'),
1765 'bool', // data type
1766 '0',
1767 xl('Rx Enable NPI')
1769 'rx_show_NPI' => array(
1770 xl('Rx Show NPI'),
1771 'bool', // data type
1772 '0',
1773 xl('Rx Show NPI')
1775 'rx_enable_SLN' => array(
1776 xl('Rx Enable State Lic. #'),
1777 'bool', // data type
1778 '0',
1779 xl('Rx Enable State Lic. #')
1781 'rx_show_SLN' => array(
1782 xl('Rx Show State Lic. #'),
1783 'bool', // data type
1784 '0',
1785 xl('Rx Show State Lic. #')
1787 'rx_paper_size' => array(
1788 xl('Rx Paper Size'), // descriptive name
1789 array(
1790 'LETTER' => xl('Letter Paper Size'),
1791 'LEGAL' => xl('Legal Paper Size'),
1792 'FOLIO' => xl('Folio Paper Size'),
1793 'EXECUTIVE' => xl('Executive Paper Size'),
1794 '4A0' => ('4A0' . " " . xl('Paper Size')),
1795 '2A0' => ('2A0' . " " . xl('Paper Size')),
1796 'A0' => ('A0' . " " . xl('Paper Size')),
1797 'A1' => ('A1' . " " . xl('Paper Size')),
1798 'A2' => ('A2' . " " . xl('Paper Size')),
1799 'A3' => ('A3' . " " . xl('Paper Size')),
1800 'A4' => ('A4' . " " . xl('Paper Size')),
1801 'A5' => ('A5' . " " . xl('Paper Size')),
1802 'A6' => ('A6' . " " . xl('Paper Size')),
1803 'A7' => ('A7' . " " . xl('Paper Size')),
1804 'A8' => ('A8' . " " . xl('Paper Size')),
1805 'A9' => ('A9' . " " . xl('Paper Size')),
1806 'A10' => ('A10' . " " . xl('Paper Size')),
1807 'B0' => ('B0' . " " . xl('Paper Size')),
1808 'B1' => ('B1' . " " . xl('Paper Size')),
1809 'B2' => ('B2' . " " . xl('Paper Size')),
1810 'B3' => ('B3' . " " . xl('Paper Size')),
1811 'B4' => ('B4' . " " . xl('Paper Size')),
1812 'B5' => ('B5' . " " . xl('Paper Size')),
1813 'B6' => ('B6' . " " . xl('Paper Size')),
1814 'B7' => ('B7' . " " . xl('Paper Size')),
1815 'B8' => ('B8' . " " . xl('Paper Size')),
1816 'B9' => ('B9' . " " . xl('Paper Size')),
1817 'B10' => ('B10' . " " . xl('Paper Size')),
1818 'C0' => ('C0' . " " . xl('Paper Size')),
1819 'C1' => ('C1' . " " . xl('Paper Size')),
1820 'C2' => ('C2' . " " . xl('Paper Size')),
1821 'C3' => ('C3' . " " . xl('Paper Size')),
1822 'C4' => ('C4' . " " . xl('Paper Size')),
1823 'C5' => ('C5' . " " . xl('Paper Size')),
1824 'C6' => ('C6' . " " . xl('Paper Size')),
1825 'C7' => ('C7' . " " . xl('Paper Size')),
1826 'C8' => ('C8' . " " . xl('Paper Size')),
1827 'C9' => ('C9' . " " . xl('Paper Size')),
1828 'C10' => ('C10' . " " . xl('Paper Size')),
1829 'RA0' => ('RA0' . " " . xl('Paper Size')),
1830 'RA1' => ('RA1' . " " . xl('Paper Size')),
1831 'RA2' => ('RA2' . " " . xl('Paper Size')),
1832 'RA3' => ('RA3' . " " . xl('Paper Size')),
1833 'RA4' => ('RA4' . " " . xl('Paper Size')),
1834 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
1835 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
1836 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
1837 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
1838 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
1840 'LETTER', // default = tree menu
1841 xl('Rx Paper Size')
1843 'rx_left_margin' => array(
1844 xl('Rx Left Margin (px)'),
1845 'num',
1846 '30',
1847 xl('Rx Left Margin (px)')
1849 'rx_right_margin' => array(
1850 xl('Rx Right Margin (px)'),
1851 'num',
1852 '30',
1853 xl('Rx Right Margin (px)')
1855 'rx_top_margin' => array(
1856 xl('Rx Top Margin (px)'),
1857 'num',
1858 '72',
1859 xl('Rx Top Margin (px)')
1861 'rx_bottom_margin' => array(
1862 xl('Rx Bottom Margin (px)'),
1863 'num',
1864 '30',
1865 xl('Rx Bottom Margin (px)')
1869 'PDF' => array (
1870 'pdf_layout' => array (
1871 xl('Layout'),
1872 array(
1873 'P' => xl('Portrait'),
1874 'L' => xl('Landscape')
1876 'P', //defaut
1877 xl("Choose Layout Direction"),
1879 'pdf_language' => array (
1880 xl('PDF Language'),
1881 array(
1882 'aa' => xl('Afar'),
1883 'af' => xl('Afrikaans'),
1884 'ak' => xl('Akan'),
1885 'sq' => xl('Albanian'),
1886 'am' => xl('Amharic'),
1887 'ar' => xl('Arabic'),
1888 'an' => xl('Aragonese'),
1889 'hy' => xl('Armenian'),
1890 'as' => xl('Assamese'),
1891 'av' => xl('Avaric'),
1892 'ae' => xl('Avestan'),
1893 'ay' => xl('Aymara'),
1894 'az' => xl('Azerbaijani'),
1895 'bm' => xl('Bambara'),
1896 'ba' => xl('Bashkir'),
1897 'eu' => xl('Basque'),
1898 'be' => xl('Belarusian'),
1899 'bn' => xl('Bengali- Bangla'),
1900 'bh' => xl('Bihari'),
1901 'bi' => xl('Bislama'),
1902 'bs' => xl('Bosnian'),
1903 'br' => xl('Breton'),
1904 'bg' => xl('Bulgarian'),
1905 'my' => xl('Burmese'),
1906 'ca' => xl('Catalan- Valencian'),
1907 'ch' => xl('Chamorro'),
1908 'ce' => xl('Chechen'),
1909 'ny' => xl('Chichewa- Chewa- Nyanja'),
1910 'zh' => xl('Chinese'),
1911 'cv' => xl('Chuvash'),
1912 'kw' => xl('Cornish'),
1913 'co' => xl('Corsican'),
1914 'cr' => xl('Cree'),
1915 'hr' => xl('Croatian'),
1916 'cs' => xl('Czech'),
1917 'da' => xl('Danish'),
1918 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
1919 'nl' => xl('Dutch'),
1920 'dz' => xl('Dzongkha'),
1921 'en' => xl('English'),
1922 'eo' => xl('Esperanto'),
1923 'et' => xl('Estonian'),
1924 'ee' => xl('Ewe'),
1925 'fo' => xl('Faroese'),
1926 'fj' => xl('Fijian'),
1927 'fi' => xl('Finnish'),
1928 'fr' => xl('French'),
1929 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
1930 'gl' => xl('Galician'),
1931 'ka' => xl('Georgian'),
1932 'de' => xl('German'),
1933 'el' => xl('Greek, Modern'),
1934 'gn' => xl('Guaraní'),
1935 'gu' => xl('Gujarati'),
1936 'ht' => xl('Haitian- Haitian Creole'),
1937 'ha' => xl('Hausa'),
1938 'he' => xl('Hebrew (modern)'),
1939 'hz' => xl('Herero'),
1940 'hi' => xl('Hindi'),
1941 'ho' => xl('Hiri Motu'),
1942 'hu' => xl('Hungarian'),
1943 'ia' => xl('Interlingua'),
1944 'id' => xl('Indonesian'),
1945 'ie' => xl('Interlingue'),
1946 'ga' => xl('Irish'),
1947 'ig' => xl('Igbo'),
1948 'ik' => xl('Inupiaq'),
1949 'io' => xl('Ido'),
1950 'is' => xl('Icelandic'),
1951 'it' => xl('Italian'),
1952 'iu' => xl('Inuktitut'),
1953 'ja' => xl('Japanese'),
1954 'jv' => xl('Javanese'),
1955 'kl' => xl('Kalaallisut, Greenlandic'),
1956 'kn' => xl('Kannada'),
1957 'kr' => xl('Kanuri'),
1958 'ks' => xl('Kashmiri'),
1959 'kk' => xl('Kazakh'),
1960 'km' => xl('Khmer'),
1961 'ki' => xl('Kikuyu, Gikuyu'),
1962 'rw' => xl('Kinyarwanda'),
1963 'ky' => xl('Kyrgyz'),
1964 'kv' => xl('Komi'),
1965 'kg' => xl('Kongo'),
1966 'ko' => xl('Korean'),
1967 'ku' => xl('Kurdish'),
1968 'kj' => xl('Kwanyama, Kuanyama'),
1969 'la' => xl('Latin'),
1970 'lb' => xl('Luxembourgish, Letzeburgesch'),
1971 'lg' => xl('Ganda'),
1972 'li' => xl('Limburgish, Limburgan, Limburger'),
1973 'ln' => xl('Lingala'),
1974 'lo' => xl('Lao'),
1975 'lt' => xl('Lithuanian'),
1976 'lu' => xl('Luba-Katanga'),
1977 'lv' => xl('Latvian'),
1978 'gv' => xl('Manx'),
1979 'mk' => xl('Macedonian'),
1980 'mg' => xl('Malagasy'),
1981 'ms' => xl('Malay'),
1982 'ml' => xl('Malayalam'),
1983 'mt' => xl('Maltese'),
1984 'mi' => xl('Māori'),
1985 'mr' => xl('Marathi (Marāṭhī)'),
1986 'mh' => xl('Marshallese'),
1987 'mn' => xl('Mongolian'),
1988 'na' => xl('Nauru'),
1989 'nv' => xl('Navajo, Navaho'),
1990 'nb' => xl('Norwegian Bokmål'),
1991 'nd' => xl('North Ndebele'),
1992 'ne' => xl('Nepali'),
1993 'ng' => xl('Ndonga'),
1994 'nn' => xl('Norwegian Nynorsk'),
1995 'no' => xl('Norwegian'),
1996 'ii' => xl('Nuosu'),
1997 'nr' => xl('South Ndebele'),
1998 'oc' => xl('Occitan'),
1999 'oj' => xl('Ojibwe, Ojibwa'),
2000 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2001 'om' => xl('Oromo'),
2002 'or' => xl('Oriya'),
2003 'os' => xl('Ossetian, Ossetic'),
2004 'pa' => xl('Panjabi, Punjabi'),
2005 'pi' => xl('Pāli'),
2006 'fa' => xl('Persian (Farsi)'),
2007 'pl' => xl('Polish'),
2008 'ps' => xl('Pashto, Pushto'),
2009 'pt' => xl('Portuguese'),
2010 'qu' => xl('Quechua'),
2011 'rm' => xl('Romansh'),
2012 'rn' => xl('Kirundi'),
2013 'ro' => xl('Romanian'),
2014 'ru' => xl('Russian'),
2015 'sa' => xl('Sanskrit (Saṁskṛta)'),
2016 'sc' => xl('Sardinian'),
2017 'sd' => xl('Sindhi'),
2018 'se' => xl('Northern Sami'),
2019 'sm' => xl('Samoan'),
2020 'sg' => xl('Sango'),
2021 'sr' => xl('Serbian'),
2022 'gd' => xl('Scottish Gaelic- Gaelic'),
2023 'sn' => xl('Shona'),
2024 'si' => xl('Sinhala, Sinhalese'),
2025 'sk' => xl('Slovak'),
2026 'sl' => xl('Slovene'),
2027 'so' => xl('Somali'),
2028 'st' => xl('Southern Sotho'),
2029 'es' => xl('Spanish- Castilian'),
2030 'su' => xl('Sundanese'),
2031 'sw' => xl('Swahili'),
2032 'ss' => xl('Swati'),
2033 'sv' => xl('Swedish'),
2034 'ta' => xl('Tamil'),
2035 'te' => xl('Telugu'),
2036 'tg' => xl('Tajik'),
2037 'th' => xl('Thai'),
2038 'ti' => xl('Tigrinya'),
2039 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2040 'tk' => xl('Turkmen'),
2041 'tl' => xl('Tagalog'),
2042 'tn' => xl('Tswana'),
2043 'to' => xl('Tonga (Tonga Islands)'),
2044 'tr' => xl('Turkish'),
2045 'ts' => xl('Tsonga'),
2046 'tt' => xl('Tatar'),
2047 'tw' => xl('Twi'),
2048 'ty' => xl('Tahitian'),
2049 'ug' => xl('Uyghur, Uighur'),
2050 'uk' => xl('Ukrainian'),
2051 'ur' => xl('Urdu'),
2052 'uz' => xl('Uzbek'),
2053 've' => xl('Venda'),
2054 'vi' => xl('Vietnamese'),
2055 'vo' => xl('Volapük'),
2056 'wa' => xl('Walloon'),
2057 'cy' => xl('Welsh'),
2058 'wo' => xl('Wolof'),
2059 'fy' => xl('Western Frisian'),
2060 'xh' => xl('Xhosa'),
2061 'yi' => xl('Yiddish'),
2062 'yo' => xl('Yoruba'),
2063 'za' => xl('Zhuang, Chuang'),
2064 'zu' => xl('Zulu'),
2066 'en', // default English
2067 xl('Choose PDF languange Preference'),
2069 'pdf_size' => array(
2070 xl('Paper Size'), // Descriptive Name
2071 array(
2072 'LETTER' => xl('Letter Paper Size'),
2073 'LEGAL' => xl('Legal Paper Size'),
2074 'FOLIO' => xl('Folio Paper Size'),
2075 'EXECUTIVE' => xl('Executive Paper Size'),
2076 '4A0' => ('4A0' . " " . xl('Paper Size')),
2077 '2A0' => ('2A0' . " " . xl('Paper Size')),
2078 'A0' => ('A0' . " " . xl('Paper Size')),
2079 'A1' => ('A1' . " " . xl('Paper Size')),
2080 'A2' => ('A2' . " " . xl('Paper Size')),
2081 'A3' => ('A3' . " " . xl('Paper Size')),
2082 'A4' => ('A4' . " " . xl('Paper Size')),
2083 'A5' => ('A5' . " " . xl('Paper Size')),
2084 'A6' => ('A6' . " " . xl('Paper Size')),
2085 'A7' => ('A7' . " " . xl('Paper Size')),
2086 'A8' => ('A8' . " " . xl('Paper Size')),
2087 'A9' => ('A9' . " " . xl('Paper Size')),
2088 'A10' => ('A10' . " " . xl('Paper Size')),
2089 'B0' => ('B0' . " " . xl('Paper Size')),
2090 'B1' => ('B1' . " " . xl('Paper Size')),
2091 'B2' => ('B2' . " " . xl('Paper Size')),
2092 'B3' => ('B3' . " " . xl('Paper Size')),
2093 'B4' => ('B4' . " " . xl('Paper Size')),
2094 'B5' => ('B5' . " " . xl('Paper Size')),
2095 'B6' => ('B6' . " " . xl('Paper Size')),
2096 'B7' => ('B7' . " " . xl('Paper Size')),
2097 'B8' => ('B8' . " " . xl('Paper Size')),
2098 'B9' => ('B9' . " " . xl('Paper Size')),
2099 'B10' => ('B10' . " " . xl('Paper Size')),
2100 'C0' => ('C0' . " " . xl('Paper Size')),
2101 'C1' => ('C1' . " " . xl('Paper Size')),
2102 'C2' => ('C2' . " " . xl('Paper Size')),
2103 'C3' => ('C3' . " " . xl('Paper Size')),
2104 'C4' => ('C4' . " " . xl('Paper Size')),
2105 'C5' => ('C5' . " " . xl('Paper Size')),
2106 'C6' => ('C6' . " " . xl('Paper Size')),
2107 'C7' => ('C7' . " " . xl('Paper Size')),
2108 'C8' => ('C8' . " " . xl('Paper Size')),
2109 'C9' => ('C9' . " " . xl('Paper Size')),
2110 'C10' => ('C10' . " " . xl('Paper Size')),
2111 'RA0' => ('RA0' . " " . xl('Paper Size')),
2112 'RA1' => ('RA1' . " " . xl('Paper Size')),
2113 'RA2' => ('RA2' . " " . xl('Paper Size')),
2114 'RA3' => ('RA3' . " " . xl('Paper Size')),
2115 'RA4' => ('RA4' . " " . xl('Paper Size')),
2116 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2117 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2118 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2119 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2120 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2122 'LETTER',
2123 xl('Choose Paper Size')
2125 'pdf_left_margin' => array(
2126 xl('Left Margin (mm)'),
2127 'num',
2128 '5',
2129 xl('Left Margin (mm)')
2131 'pdf_right_margin' => array(
2132 xl('Right Margin (mm)'),
2133 'num',
2134 '5',
2135 xl('Right Margin (mm)')
2137 'pdf_top_margin' => array(
2138 xl('Top Margin (mm)'),
2139 'num',
2140 '5',
2141 xl('Top Margin (mm)')
2143 'pdf_bottom_margin' => array(
2144 xl('Bottom Margin (px)'),
2145 'num',
2146 '8',
2147 xl('Bottom Margin (px)')
2149 'pdf_output' => array (
2150 xl('Output Type'),
2151 array(
2152 'D' => xl('Download'),
2153 'I' => xl('Inline')
2155 'D', //defaut
2156 xl("Choose Download or Display Inline"),
2159 'chart_label_type' => array(
2160 xl('Patient Label Type'),
2161 array(
2162 '0' => xl('None'),
2163 '1' => '5160',
2164 '2' => '5161',
2165 '3' => '5162'
2167 '1', // default
2168 xl('Avery Label type for printing patient labels from popups in left nav screen'),
2171 'barcode_label_type' => array(
2172 xl('Barcode Label Type'),
2173 array(
2174 '0' => xl('None'),
2175 '1' => 'std25',
2176 '2' => 'int25',
2177 '3' => 'ean8',
2178 '4' => 'ean13',
2179 '5' => 'upc',
2180 '6' => 'code11',
2181 '7' => 'code39',
2182 '8' => 'code93',
2183 '9' => 'code128',
2184 '10' => 'codabar',
2185 '11' => 'msi',
2186 '12' => 'datamatrix'
2188 '9', // default = None
2189 xl('Barcode type for printing barcode labels from popups in left nav screen.')
2192 'addr_label_type' => array(
2193 xl('Print Patient Address Label'),
2194 'bool', // data type
2195 '1', // default = false
2196 xl('Select to print patient address labels from popups in left nav screen.')