added Czech language
[openemr.git] / library / globals.inc.php
blobed751a861ed099c324964d57e4db2618ada38941
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 // Chinese (Simplified) // xl('Chinese (Simplified)')
26 // Chinese (Traditional) // xl('Chinese (Traditional)')
27 // Czech // xl('Czech')
28 // Danish // xl('Danish')
29 // Dutch // xl('Dutch')
30 // English (Indian) // xl('English (Indian)')
31 // English (Standard) // xl('English (Standard)')
32 // French // xl('French (Standard)')
33 // French // xl('French (Canadian)')
34 // German // xl('German')
35 // Greek // xl('Greek')
36 // Hebrew // xl('Hebrew')
37 // Hindi // xl('Hindi')
38 // Hungarian // xl('Hungarian')
39 // Italian // xl('Italian')
40 // Norwegian // xl('Norwegian')
41 // Polish // xl('Polish')
42 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
43 // Portuguese (European) // xl('Portuguese (European)')
44 // Romanian // xl('Romanian')
45 // Russian // xl('Russian')
46 // Slovak // xl('Slovak')
47 // Spanish (Latin American) // xl('Spanish (Latin American)')
48 // Spanish (Spain) // xl('Spanish (Spain)')
49 // Swedish // xl('Swedish')
50 // Turkish // xl('Turkish')
51 // Vietnamese // xl('Vietnamese')
53 // OS-dependent stuff.
54 if (stristr(PHP_OS, 'WIN')) {
55 // MS Windows
56 $mysql_bin_dir = 'C:/xampp/mysql/bin';
57 $perl_bin_dir = 'C:/xampp/perl/bin';
58 $temporary_files_dir = 'C:/windows/temp';
59 $backup_log_dir = 'C:/windows/temp';
61 else {
62 // Everything else
63 $mysql_bin_dir = '/usr/bin';
64 $perl_bin_dir = '/usr/bin';
65 $temporary_files_dir = '/tmp';
66 $backup_log_dir = '/tmp';
69 // Language constant declarations:
70 // xl('Appearance')
71 // xl('Locale')
72 // xl('Features')
73 // xl('Calendar')
74 // xl('Security')
75 // xl('Notifications')
76 // xl('Miscellaneous')
78 // List of user specific tabs and globals
79 $USER_SPECIFIC_TABS = array('Appearance',
80 'Locale',
81 'Calendar',
82 'Connectors');
83 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
84 'concurrent_layout',
85 'css_header',
86 'units_of_measurement',
87 'date_display_format',
88 'time_display_format',
89 'event_color',
90 'erx_import_status_message');
92 $GLOBALS_METADATA = array(
94 // Appearance Tab
96 'Appearance' => array(
98 'default_top_pane' => array(
99 xl('Main Top Pane Screen'), // descriptive name
100 array(
101 'main_info.php' => xl('Calendar Screen'),
102 '../new/new.php' => xl('Patient Search/Add Screen'),
104 'main_info.php', // default = calendar
105 xl('Type of screen layout')
108 'concurrent_layout' => array(
109 xl('Layout Style'), // descriptive name
110 array(
111 '0' => xl('Old style layout with no left menu'),
112 '1' => xl('Navigation menu consists of pairs of radio buttons'),
113 '2' => xl('Navigation menu is a tree view'),
114 '3' => xl('Navigation uses a sliding menu'),
116 '3', // default = tree menu
117 xl('Type of screen layout')
120 'css_header' => array(
121 xl('Theme'),
122 'css',
123 'style_oemr.css',
124 xl('Pick a CSS theme.')
127 'gbl_nav_area_width' => array(
128 xl('Navigation Area Width'),
129 'num',
130 '150',
131 xl('Width in pixels of the left navigation frame.')
134 'openemr_name' => array(
135 xl('Application Title'),
136 'text',
137 'OpenEMR',
138 xl('Application name for login page and main window title.')
141 'full_new_patient_form' => array(
142 xl('New Patient Form'),
143 array(
144 '0' => xl('Old-style static form without search or duplication check'),
145 '1' => xl('All demographics fields, with search and duplication check'),
146 '2' => xl('Mandatory or specified fields only, search and dup check'),
147 '3' => xl('Mandatory or specified fields only, dup check, no search'),
149 '1', // default
150 xl('Style of form used for adding new patients')
153 'patient_search_results_style' => array(
154 xl('Patient Search Results Style'),
155 array(
156 '0' => xl('Encounter statistics'),
157 '1' => xl('Mandatory and specified fields'),
159 '0', // default
160 xl('Type of columns displayed for patient search results')
163 'gbl_tall_nav_area' => array(
164 xl('Tall Navigation Area'),
165 'bool', // data type
166 '0', // default = false
167 xl('Navigation area uses full height of frameset')
170 'gbl_nav_visit_forms' => array(
171 xl('Navigation Area Visit Forms'),
172 'bool', // data type
173 '1', // default = true
174 xl('Navigation area includes encounter forms')
177 'simplified_demographics' => array(
178 xl('Simplified Demographics'),
179 'bool', // data type
180 '0', // default = false
181 xl('Omit insurance and some other things from the demographics form')
184 'simplified_prescriptions' => array(
185 xl('Simplified Prescriptions'),
186 'bool', // data type
187 '0', // default = false
188 xl('Omit form, route and interval which then become part of dosage')
191 'simplified_copay' => array(
192 xl('Simplified Co-Pay'),
193 'bool', // data type
194 '0', // default = false
195 xl('Omit method of payment from the co-pay panel')
198 'use_charges_panel' => array(
199 xl('Use Charges Panel'),
200 'bool', // data type
201 '0', // default = false
202 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
205 'online_support_link' => array(
206 xl('Online Support Link'),
207 'text', // data type
208 'http://open-emr.org/',
209 xl('URL for OpenEMR support.')
212 'encounter_page_size' => array(
213 xl('Encounter Page Size'),
214 array(
215 '0' => xl('Show All'),
216 '5' => '5',
217 '10' => '10',
218 '15' => '15',
219 '20' => '20',
220 '25' => '25',
221 '50' => '50',
223 '20',
224 xl('Number of encounters to display per page.')
229 // Locale Tab
231 'Locale' => array(
233 'language_default' => array(
234 xl('Default Language'),
235 'lang', // data type
236 'English (Standard)', // default = english
237 xl('Default language if no other is allowed or chosen.')
240 'language_menu_showall' => array(
241 xl('All Languages Allowed'),
242 'bool', // data type
243 '1', // default = true
244 xl('Allow all available languages as choices on menu at login.')
247 'language_menu_other' => array(
248 xl('Allowed Languages'),
249 'm_lang', // data type
250 '', // default = none
251 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
254 'allow_debug_language' => array(
255 xl('Allow Debugging Language'),
256 'bool', // data type
257 '1', // default = true during development and false for production releases
258 xl('This will allow selection of the debugging (\'dummy\') language.')
261 'translate_layout' => array(
262 xl('Translate Layouts'),
263 'bool', // data type
264 '1', // default = true
265 xl('Is text from form layouts to be translated?')
268 'translate_lists' => array(
269 xl('Translate Lists'),
270 'bool', // data type
271 '1', // default = true
272 xl('Is text from lists to be translated?')
275 'translate_gacl_groups' => array(
276 xl('Translate Access Control Groups'),
277 'bool', // data type
278 '1', // default = true
279 xl('Are access control group names to be translated?')
282 'translate_form_titles' => array(
283 xl('Translate Patient Note Titles'),
284 'bool', // data type
285 '1', // default = true
286 xl('Are patient note titles to be translated?')
289 'translate_document_categories' => array(
290 xl('Translate Document Categories'),
291 'bool', // data type
292 '1', // default = true
293 xl('Are document category names to be translated?')
296 'translate_appt_categories' => array(
297 xl('Translate Appointment Categories'),
298 'bool', // data type
299 '1', // default = true
300 xl('Are appointment category names to be translated?')
303 'units_of_measurement' => array(
304 xl('Units for Visit Forms'),
305 array(
306 '1' => xl('Show both US and metric (main unit is US)'),
307 '2' => xl('Show both US and metric (main unit is metric)'),
308 '3' => xl('Show US only'),
309 '4' => xl('Show metric only'),
311 '1', // default = Both/US
312 xl('Applies to the Vitals form and Growth Chart')
315 'disable_deprecated_metrics_form' => array(
316 xl('Disable Old Metric Vitals Form'),
317 'bool', // data type
318 '1', // default = true
319 xl('This was the older metric-only Vitals form, now deprecated.')
322 'phone_country_code' => array(
323 xl('Telephone Country Code'),
324 'num',
325 '1', // default = North America
326 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
329 'date_display_format' => array(
330 xl('Date Display Format'),
331 array(
332 '0' => xl('YYYY-MM-DD'),
333 '1' => xl('MM/DD/YYYY'),
334 '2' => xl('DD/MM/YYYY'),
336 '0',
337 xl('Format used to display most dates.')
340 'time_display_format' => array(
341 xl('Time Display Format'),
342 array(
343 '0' => xl('24 hr'),
344 '1' => xl('12 hr'),
346 '0',
347 xl('Format used to display most times.')
350 'currency_decimals' => array(
351 xl('Currency Decimal Places'),
352 array(
353 '0' => xl('0'),
354 '1' => xl('1'),
355 '2' => xl('2'),
357 '2',
358 xl('Number of digits after decimal point for currency, usually 0 or 2.')
361 'currency_dec_point' => array(
362 xl('Currency Decimal Point Symbol'),
363 array(
364 '.' => xl('Period'),
365 ',' => xl('Comma'),
367 '.',
368 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
371 'currency_thousands_sep' => array(
372 xl('Currency Thousands Separator'),
373 array(
374 ',' => xl('Comma'),
375 '.' => xl('Period'),
376 ' ' => xl('Space'),
377 '' => xl('None'),
379 ',',
380 xl('Symbol used to separate thousands for currency.')
383 'gbl_currency_symbol' => array(
384 xl('Currency Designator'),
385 'text', // data type
386 '$', // default
387 xl('Code or symbol to indicate currency')
392 // Features Tab
394 'Features' => array(
396 'specific_application' => array(
397 xl('Specific Application'),
398 array(
399 '0' => xl('None'),
400 '1' => xl('Athletic team'),
401 '2' => xl('IPPF'),
402 '3' => xl('Weight loss clinic'),
404 '0', // default
405 xl('Indicator for specialized usage')
408 'inhouse_pharmacy' => array(
409 xl('Drugs and Products'),
410 array(
411 '0' => xl('Do not inventory and sell any products'),
412 '1' => xl('Inventory and sell drugs only'),
413 '2' => xl('Inventory and sell both drugs and non-drug products'),
414 '3' => xl('Products but no prescription drugs and no templates'),
416 '0', // default
417 xl('Option to support inventory and sales of products')
420 'disable_chart_tracker' => array(
421 xl('Disable Chart Tracker'),
422 'bool', // data type
423 '0', // default = false
424 xl('Removes the Chart Tracker feature')
427 'disable_phpmyadmin_link' => array(
428 xl('Disable phpMyAdmin'),
429 'bool', // data type
430 '0', // default = false
431 xl('Removes support for phpMyAdmin')
434 'disable_immunizations' => array(
435 xl('Disable Immunizations'),
436 'bool', // data type
437 '0', // default = false
438 xl('Removes support for immunizations')
441 'disable_prescriptions' => array(
442 xl('Disable Prescriptions'),
443 'bool', // data type
444 '0', // default = false
445 xl('Removes support for prescriptions')
448 'omit_employers' => array(
449 xl('Omit Employers'),
450 'bool', // data type
451 '0', // default = false
452 xl('Omit employer information in patient demographics')
455 'select_multi_providers' => array(
456 xl('Support Multi-Provider Events'),
457 'bool', // data type
458 '0', // default = false
459 xl('Support calendar events that apply to multiple providers')
462 'disable_non_default_groups' => array(
463 xl('Disable User Groups'),
464 'bool', // data type
465 '1', // default = true
466 xl('Normally this should be checked. Not related to access control.')
469 'ignore_pnotes_authorization' => array(
470 xl('Skip Authorization of Patient Notes'),
471 'bool', // data type
472 '1', // default = true
473 xl('Do not require patient notes to be authorized')
476 'support_encounter_claims' => array(
477 xl('Allow Encounter Claims'),
478 'bool', // data type
479 '0', // default = false
480 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
483 'advance_directives_warning' => array(
484 xl('Advance Directives Warning'),
485 'bool', // data type
486 '0', // default = false
487 xl('Display advance directives in the demographics page.')
490 'configuration_import_export' => array(
491 xl('Configuration Export/Import'),
492 'bool', // data type
493 '0', // default = false
494 xl('Support export/import of configuration data via the Backup page.')
497 'restrict_user_facility' => array(
498 xl('Restrict Users to Facilities'),
499 'bool', // data type
500 '0', // default
501 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
504 'set_facility_cookie' => array(
505 xl('Remember Selected Facility'),
506 'bool', // data type
507 '0', // default
508 xl('Set a facility cookie to remember the selected facility between logins.')
511 'receipts_by_provider' => array(
512 xl('Print Receipts by Provider'),
513 'bool',
514 '0', // default
515 xl('Causes Receipts to Print Encounter/Primary Provider Info')
518 'discount_by_money' => array(
519 xl('Discounts as Monetary Amounts'),
520 'bool', // data type
521 '1', // default = true
522 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
525 'gbl_visit_referral_source' => array(
526 xl('Referral Source for Encounters'),
527 'bool', // data type
528 '0', // default = false
529 xl('A referral source may be specified for each visit.')
532 'gbl_mask_patient_id' => array(
533 xl('Mask for Patient IDs'),
534 'text', // data type
535 '', // default
536 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
539 'gbl_mask_invoice_number' => array(
540 xl('Mask for Invoice Numbers'),
541 'text', // data type
542 '', // default
543 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
546 'gbl_mask_product_id' => array(
547 xl('Mask for Product IDs'),
548 'text', // data type
549 '', // default
550 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
553 'force_billing_widget_open' => array(
554 xl('Force Billing Widget Open'),
555 'bool', // data type
556 '0', // default = false
557 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
560 'activate_ccr_ccd_report' => array(
561 xl('Activate CCR/CCD Reporting'),
562 'bool', // data type
563 '1', // default = true
564 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
567 'hide_document_encryption' => array(
568 xl('Hide Encryption/Decryption Options In Document Management'),
569 'bool', // data type
570 '1', // default = true
571 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
574 'use_custom_immun_list' => array(
575 xl('Use Custom Immunization List'),
576 'bool', // data type
577 '0', // default = true
578 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
583 // Calendar Tab
585 'Calendar' => array(
587 'disable_calendar' => array(
588 xl('Disable Calendar'),
589 'bool', // data type
590 '0', // default
591 xl('Do not display the calendar.')
594 'schedule_start' => array(
595 xl('Calendar Starting Hour'),
596 'hour',
597 '8', // default
598 xl('Beginning hour of day for calendar events.')
601 'schedule_end' => array(
602 xl('Calendar Ending Hour'),
603 'hour',
604 '17', // default
605 xl('Ending hour of day for calendar events.')
608 'calendar_interval' => array(
609 xl('Calendar Interval'),
610 array(
611 '5' => '5',
612 '10' => '10',
613 '15' => '15',
614 '20' => '20',
615 '30' => '30',
616 '60' => '60',
618 '15', // default
619 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
622 'calendar_appt_style' => array(
623 xl('Appointment Display Style'),
624 array(
625 '1' => 'Last name',
626 '2' => 'Last name, first name',
627 '3' => 'Last name, first name (title)',
628 '4' => 'Last name, first name (title: description)',
630 '2', // default
631 xl('This determines how appointments display on the calendar.')
634 'docs_see_entire_calendar' => array(
635 xl('Providers See Entire Calendar'),
636 'bool', // data type
637 '0', // default
638 xl('Check this if you want providers to see all appointments by default and not just their own.')
641 'auto_create_new_encounters' => array(
642 xl('Auto-Create New Encounters'),
643 'bool', // data type
644 '1', // default
645 xl('Automatically create a new encounter when appointment status is set to "@" (arrived).')
648 'event_color' => array(
649 xl('Appointment/Event Color'),
650 array(
651 '1' => 'Category Color Schema',
652 '2' => 'Facility Color Schema',
653 ), // data type
654 '1', // default
655 xl('This determines which color schema used for appointment')
660 // Security Tab
662 'Security' => array(
664 'timeout' => array(
665 xl('Idle Session Timeout Seconds'),
666 'num', // data type
667 '7200', // default
668 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
671 'secure_password' => array(
672 xl('Require Strong Passwords'),
673 'bool', // data type
674 '0', // default
675 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
678 'password_history' => array(
679 xl('Require Unique Passwords'),
680 'bool', // data type
681 '0', // default
682 xl('Means none of last three passwords are allowed when changing a password.')
685 'password_expiration_days' => array(
686 xl('Default Password Expiration Days'),
687 'num', // data type
688 '0', // default
689 xl('Default password expiration period in days. 0 means this feature is disabled.')
692 'password_grace_time' => array(
693 xl('Password Expiration Grace Period'),
694 'num', // data type
695 '0', // default
696 xl('Period in days where a user may login with an expired password.')
699 'is_client_ssl_enabled' => array(
700 xl('Enable Client SSL'),
701 'bool', // data type
702 '0', // default
703 xl('Enable client SSL certificate authentication.')
706 'certificate_authority_crt' => array(
707 xl('Path to CA Certificate File'),
708 'text', // data type
709 '', // default
710 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
713 'certificate_authority_key' => array(
714 xl('Path to CA Key File'),
715 'text', // data type
716 '', // default
717 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
720 'client_certificate_valid_in_days' => array(
721 xl('Client Certificate Expiration Days'),
722 'num', // data type
723 '365', // default
724 xl('Number of days that the client certificate is valid.')
727 'Emergency_Login_email_id' => array(
728 xl('Emergency Login Email Address'),
729 'text', // data type
730 '', // default
731 xl('Email address, if any, to receive emergency login user activation messages.')
736 // Notifications Tab
738 'Notifications' => array(
740 'patient_reminder_sender_name' => array(
741 xl('Patient Reminder Sender Name'),
742 'text', // data type
743 '', // default
744 xl('Name of the sender for patient reminders.')
747 'patient_reminder_sender_email' => array(
748 xl('Patient Reminder Sender Email'),
749 'text', // data type
750 '', // default
751 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.')
754 'practice_return_email_path' => array(
755 xl('Notification Email Address'),
756 'text', // data type
757 '', // default
758 xl('Email address, if any, to receive administrative notifications.')
761 'EMAIL_METHOD' => array(
762 xl('Email Transport Method'),
763 array(
764 'PHPMAIL' => 'PHPMAIL',
765 'SENDMAIL' => 'SENDMAIL',
766 'SMTP' => 'SMTP',
768 'SMTP', // default
769 xl('Method for sending outgoing email.')
772 'SMTP_HOST' => array(
773 xl('SMTP Server Hostname'),
774 'text', // data type
775 'localhost', // default
776 xl('If SMTP is used, the server`s hostname or IP address.')
779 'SMTP_PORT' => array(
780 xl('SMTP Server Port Number'),
781 'num', // data type
782 '25', // default
783 xl('If SMTP is used, the server`s TCP port number (usually 25).')
786 'SMTP_USER' => array(
787 xl('SMTP User for Authentication'),
788 'text', // data type
789 '', // default
790 xl('Must be empty if SMTP authentication is not used.')
793 'SMTP_PASS' => array(
794 xl('SMTP Password for Authentication'),
795 'text', // data type
796 '', // default
797 xl('Must be empty if SMTP authentication is not used.')
800 'EMAIL_NOTIFICATION_HOUR' => array(
801 xl('Email Notification Hours'),
802 'num', // data type
803 '50', // default
804 xl('Number of hours in advance to send email notifications.')
807 'SMS_NOTIFICATION_HOUR' => array(
808 xl('SMS Notification Hours'),
809 'num', // data type
810 '50', // default
811 xl('Number of hours in advance to send SMS notifications.')
814 'SMS_GATEWAY_USENAME' => array(
815 xl('SMS Gateway Username'),
816 'text', // data type
817 '', // default
818 xl('Username for SMS Gateway.')
821 'SMS_GATEWAY_PASSWORD' => array(
822 xl('SMS Gateway Password'),
823 'text', // data type
824 '', // default
825 xl('Password for SMS Gateway.')
828 'SMS_GATEWAY_APIKEY' => array(
829 xl('SMS Gateway API Key'),
830 'text', // data type
831 '', // default
832 xl('API key for SMS Gateway.')
835 'phone_notification_hour' => array(
836 xl('Phone Notification Hour'),
837 'num', // data type
838 '50', // default
839 xl('Number of hours in advance to send Phone notification.')
842 'phone_gateway_username' => array(
843 xl('Phone Gateway Username'),
844 'text', // data type
845 '', // default
846 xl('Username for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
849 'phone_gateway_password' => array(
850 xl('Phone Gateway Password'),
851 'text', // data type
852 '', // default
853 xl('Password for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
856 'phone_gateway_url' => array(
857 xl('Phone Gateway URL'),
858 'text', // data type
859 '', // default
860 xl('URL for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
865 // CDR (Clinical Decision Rules)
867 'CDR' => array(
869 'enable_cdr' => array(
870 xl('Enable Clinical Decisions Rules (CDR)'),
871 'bool', // data type
872 '1', // default
873 xl('Enable Clinical Decisions Rules (CDR)')
876 'enable_cdr_crw' => array(
877 xl('Enable Clinical Reminder Widget'),
878 'bool', // data type
879 '1', // default
880 xl('Enable Clinical Reminder Widget')
883 'enable_cdr_crp' => array(
884 xl('Enable Clinical Reminder Popup'),
885 'bool', // data type
886 '1', // default
887 xl('Enable Clinical Reminder Popup')
890 'enable_cdr_prw' => array(
891 xl('Enable Patient Reminder Widget'),
892 'bool', // data type
893 '1', // default
894 xl('Enable Patient Reminder Widget')
897 'enable_cqm' => array(
898 xl('Enable CQM Reporting'),
899 'bool', // data type
900 '1', // default
901 xl('Enable Clinical Quality Measure (CQM) Reporting')
904 'pqri_registry_name' => array(
905 xl('PQRI Registry Name'),
906 'text', // data type
907 'Model Registry', // default
908 xl('PQRI Registry Name')
911 'pqri_registry_id' => array(
912 xl('PQRI Registry ID'),
913 'text', // data type
914 '125789123', // default
915 xl('PQRI Registry ID')
918 'enable_amc' => array(
919 xl('Enable AMC Reporting'),
920 'bool', // data type
921 '1', // default
922 xl('Enable Automated Measure Calculations (AMC) Reporting')
925 'enable_amc_prompting' => array(
926 xl('Enable AMC Prompting'),
927 'bool', // data type
928 '1', // default
929 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
932 'enable_amc_tracking' => array(
933 xl('Enable AMC Tracking'),
934 'bool', // data type
935 '1', // default
936 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
941 // Logging
943 'Logging' => array(
945 'enable_auditlog' => array(
946 xl('Enable Audit Logging'),
947 'bool', // data type
948 '1', // default
949 xl('Enable Audit Logging')
952 'audit_events_patient-record' => array(
953 xl('Audit Logging Patient Record'),
954 'bool', // data type
955 '1', // default
956 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
959 'audit_events_scheduling' => array(
960 xl('Audit Logging Scheduling'),
961 'bool', // data type
962 '1', // default
963 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
966 'audit_events_order' => array(
967 xl('Audit Logging Order'),
968 'bool', // data type
969 '1', // default
970 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
973 'audit_events_security-administration' => array(
974 xl('Audit Logging Security Administration'),
975 'bool', // data type
976 '1', // default
977 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
980 'audit_events_backup' => array(
981 xl('Audit Logging Backups'),
982 'bool', // data type
983 '1', // default
984 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
987 'audit_events_other' => array(
988 xl('Audit Logging Miscellaneous'),
989 'bool', // data type
990 '1', // default
991 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
994 'audit_events_query' => array(
995 xl('Audit Logging SELECT Query'),
996 'bool', // data type
997 '0', // default
998 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1001 'enable_atna_audit' => array(
1002 xl('Enable ATNA Auditing'),
1003 'bool', // data type
1004 '0', // default
1005 xl('Enable Audit Trail and Node Authentication (ATNA).')
1008 'atna_audit_host' => array(
1009 xl('ATNA audit host'),
1010 'text', // data type
1011 '', // default
1012 xl('The hostname of the ATNA audit repository machine.')
1015 'atna_audit_port' => array(
1016 xl('ATNA audit port'),
1017 'text', // data type
1018 '6514', // default
1019 xl('Listening port of the RFC 5425 TLS syslog server.')
1022 'atna_audit_localcert' => array(
1023 xl('ATNA audit local certificate'),
1024 'text', // data type
1025 '', // default
1026 xl('Certificate to send to RFC 5425 TLS syslog server.')
1029 'atna_audit_cacert' => array(
1030 xl('ATNA audit CA certificate'),
1031 'text', // data type
1032 '', // default
1033 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
1038 // Miscellaneous Tab
1040 'Miscellaneous' => array(
1042 'mysql_bin_dir' => array(
1043 xl('Path to MySQL Binaries'),
1044 'text', // data type
1045 $mysql_bin_dir, // default
1046 xl('Full path to directory containing MySQL executables.')
1049 'perl_bin_dir' => array(
1050 xl('Path to Perl Binaries'),
1051 'text', // data type
1052 $perl_bin_dir, // default
1053 xl('Full path to directory containing Perl executables.')
1056 'temporary_files_dir' => array(
1057 xl('Path to Temporary Files'),
1058 'text', // data type
1059 $temporary_files_dir, // default
1060 xl('Full path to directory used for temporary files.')
1063 'backup_log_dir' => array(
1064 xl('Path for Event Log Backup'),
1065 'text', // data type
1066 $backup_log_dir, // default
1067 xl('Full path to directory for event log backup.')
1070 'state_data_type' => array(
1071 xl('State Data Type'),
1072 array(
1073 '2' => xl('Text field'),
1074 '1' => xl('Single-selection list'),
1075 '26' => xl('Single-selection list with ability to add to the list'),
1077 '26', // default
1078 xl('Field type to use for employer or subscriber state in demographics.')
1081 'state_list' => array(
1082 xl('State list'),
1083 'text', // data type
1084 'state', // default
1085 xl('List used by above State Data Type option.')
1088 'state_custom_addlist_widget' => array(
1089 xl('State List Widget Custom Fields'),
1090 'bool', // data type
1091 '1', // default
1092 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
1095 'country_data_type' => array(
1096 xl('Country Data Type'),
1097 array(
1098 '2' => xl('Text field'),
1099 '1' => xl('Single-selection list'),
1100 '26' => xl('Single-selection list with ability to add to the list'),
1102 '26', // default
1103 xl('Field type to use for employer or subscriber country in demographics.')
1106 'country_list' => array(
1107 xl('Country list'),
1108 'text', // data type
1109 'country', // default
1110 xl('List used by above Country Data Type option.')
1113 'print_command' => array(
1114 xl('Print Command'),
1115 'text', // data type
1116 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
1117 xl('Shell command for printing from the server.')
1120 'default_chief_complaint' => array(
1121 xl('Default Reason for Visit'),
1122 'text', // data type
1124 xl('You may put text here as the default complaint in the New Patient Encounter form.')
1127 'default_new_encounter_form' => array(
1128 xl('Default Encounter Form ID'),
1129 'text', // data type
1131 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
1134 'patient_id_category_name' => array(
1135 xl('Patient ID Category Name'),
1136 'text', // data type
1137 'Patient ID card', // default
1138 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1141 'patient_photo_category_name' => array(
1142 xl('Patient Photo Category Name'),
1143 'text', // data type
1144 'Patient Photograph', // default
1145 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1148 'MedicareReferrerIsRenderer' => array(
1149 xl('Medicare Referrer Is Renderer'),
1150 'bool', // data type
1151 '0', // default = true
1152 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
1155 'post_to_date_benchmark' => array(
1156 xl('Financial Close Date (yyyy-mm-dd)'),
1157 'text', // data type
1158 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
1159 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
1162 'enable_hylafax' => array(
1163 xl('Enable Hylafax Support'),
1164 'bool', // data type
1165 '0', // default
1166 xl('Enable Hylafax Support')
1169 'hylafax_server' => array(
1170 xl('Hylafax Server'),
1171 'text', // data type
1172 'localhost', // default
1173 xl('Hylafax server hostname.')
1176 'hylafax_basedir' => array(
1177 xl('Hylafax Directory'),
1178 'text', // data type
1179 '/var/spool/fax', // default
1180 xl('Location where Hylafax stores faxes.')
1183 'hylafax_enscript' => array(
1184 xl('Hylafax Enscript Command'),
1185 'text', // data type
1186 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
1187 xl('Enscript command used by Hylafax.')
1190 'enable_scanner' => array(
1191 xl('Enable Scanner Support'),
1192 'bool', // data type
1193 '0', // default
1194 xl('Enable Scanner Support')
1197 'scanner_output_directory' => array(
1198 xl('Scanner Directory'),
1199 'text', // data type
1200 '/mnt/scan_docs', // default
1201 xl('Location where scans are stored.')
1206 // Portal Tab
1208 'Portal' => array(
1210 'portal_onsite_enable' => array(
1211 xl('Enable Onsite Patient Portal'),
1212 'bool', // data type
1213 '0',
1214 xl('Enable Onsite Patient Portal.')
1217 'portal_onsite_address' => array(
1218 xl('Onsite Patient Portal Site Address'),
1219 'text', // data type
1220 'https://your_web_site.com/openemr/patients',
1221 xl('Website link for the Onsite Patient Portal.')
1224 'portal_offsite_enable' => array(
1225 xl('Enable Offsite Patient Portal'),
1226 'bool', // data type
1227 '0',
1228 xl('Enable Offsite Patient Portal.')
1231 'portal_offsite_username' => array(
1232 xl('Offsite Patient Portal Username'),
1233 'text', // data type
1235 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
1238 'portal_offsite_password' => array(
1239 xl('Offsite Patient Portal Password'),
1240 'pwd', // data type
1242 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
1245 'portal_offsite_address' => array(
1246 xl('Offsite Patient Portal Site Address'),
1247 'text', // data type
1248 'https://mydocsportal.com/provider.php',
1249 xl('Offsite Https link for the Patient Portal.')
1251 'portal_offsite_address_patient_link' => array(
1252 xl('Offsite Patient Portal Site Address (Patient Link)'),
1253 'text', // data type
1254 'https://mydocsportal.com',
1255 xl('Offsite Https link for the Patient Portal.(Patient Link)')
1260 // Connectors Tab
1262 'Connectors' => array(
1264 'lab_exchange_enable' => array(
1265 xl('Enable Lab Exchange'),
1266 'bool', // data type
1267 '0',
1268 xl('Enable the OpenEMR Support LLC Lab Exchange Service.')
1271 'lab_exchange_siteid' => array(
1272 xl('Lab Exchange Site ID'),
1273 'text', // data type
1274 '3',
1275 xl('Site ID for the OpenEMR Support LLC Lab Exchange Service.')
1278 'lab_exchange_token' => array(
1279 xl('Lab Exchange Token ID'),
1280 'text', // data type
1281 '12345',
1282 xl('Token ID for the OpenEMR Support LLC Lab Exchange Service.')
1285 'lab_exchange_endpoint' => array(
1286 xl('Lab Exchange Site Address'),
1287 'text', // data type
1288 'https://openemrsupport.com:29443/len/api',
1289 xl('Https link for the OpenEMR Support LLC Lab Exchange Service.')
1292 'erx_enable' => array(
1293 xl('Enable NewCrop eRx Service'),
1294 'bool', // data type
1295 '0',
1296 xl('Enable ZMG, LLC eRx service')
1299 'erx_path_production' => array(
1300 xl('NewCrop eRx Site Address'),
1301 'text', // data type
1302 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
1303 xl('Contact ZMG, LLC (zmghealth@gmail.com) for subscribing the eRx service')
1306 'erx_path_soap_production' => array(
1307 xl('NewCrop eRx Web Service Address'),
1308 'text', // data type
1309 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
1310 xl('Contact ZMG, LLC (zmghealth@gmail.com) for subscribing the eRx service')
1313 'partner_name_production' => array(
1314 xl('NewCrop eRx Partner Name'),
1315 'text', // data type
1317 xl('Contact ZMG, LLC (zmghealth@gmail.com) for subscribing the eRx service')
1320 'erx_name_production' => array(
1321 xl('NewCrop eRx Name'),
1322 'text', // data type
1324 xl('Contact ZMG, LLC (zmghealth@gmail.com) for subscribing the eRx service')
1327 'erx_password_production' => array(
1328 xl('NewCrop eRx Password'),
1329 'pass', // data type
1331 xl('Contact ZMG, LLC (zmghealth@gmail.com) for subscribing the eRx service')
1334 'erx_upload_active' => array(
1335 xl('Only upload active prescriptions'),
1336 'bool', // data type
1337 '0',
1338 xl('Only upload active prescriptions')
1341 'erx_import_status_message' => array(
1342 xl('Enable import status message for NewCrop erx'),
1343 'bool', // data type
1344 '0',
1345 xl('Enable import status message for NewCrop erx')
1348 'erx_medication_display' => array(
1349 xl('Do not display Medications uploaded to NewCrop'),
1350 'bool', // data type
1351 '0',
1352 xl('Do not display Medications uploaded to NewCrop')
1355 'erx_allergy_display' => array(
1356 xl('Do not display Allergy uploaded to NewCrop'),
1357 'bool', // data type
1358 '0',
1359 xl('Do not display Allergy uploaded to NewCrop')
1362 'erx_default_patient_country' => array(
1363 xl('Default Patient Country'),
1364 array(
1365 '' => '',
1366 'US' => 'USA',
1367 'CA' => 'Canada',
1368 'MX' => 'Mexico'
1371 xl('Default Patient Country'),
1375 'Rx' => array(
1376 'rx_enable_DEA' => array(
1377 xl('Rx Enable DEA #'),
1378 'bool', // data type
1379 '1',
1380 xl('Rx Enable DEA #')
1382 'rx_show_DEA' => array(
1383 xl('Rx Show DEA #'),
1384 'bool', // data type
1385 '0',
1386 xl('Rx Show DEA #')
1388 'rx_enable_NPI' => array(
1389 xl('Rx Enable NPI'),
1390 'bool', // data type
1391 '0',
1392 xl('Rx Enable NPI')
1394 'rx_show_NPI' => array(
1395 xl('Rx Show NPI'),
1396 'bool', // data type
1397 '0',
1398 xl('Rx Show NPI')
1400 'rx_enable_SLN' => array(
1401 xl('Rx Enable State Lic. #'),
1402 'bool', // data type
1403 '0',
1404 xl('Rx Enable State Lic. #')
1406 'rx_show_SLN' => array(
1407 xl('Rx Show State Lic. #'),
1408 'bool', // data type
1409 '0',
1410 xl('Rx Show State Lic. #')
1412 'rx_paper_size' => array(
1413 xl('Rx Paper Size'), // descriptive name
1414 array(
1415 'LETTER' => xl('Letter Paper Size'),
1416 'LEGAL' => xl('Legal Paper Size'),
1417 'FOLIO' => xl('Folio Paper Size'),
1418 'EXECUTIVE' => xl('Executive Paper Size'),
1419 '4A0' => ('4A0' . " " . xl('Paper Size')),
1420 '2A0' => ('2A0' . " " . xl('Paper Size')),
1421 'A0' => ('A0' . " " . xl('Paper Size')),
1422 'A1' => ('A1' . " " . xl('Paper Size')),
1423 'A2' => ('A2' . " " . xl('Paper Size')),
1424 'A3' => ('A3' . " " . xl('Paper Size')),
1425 'A4' => ('A4' . " " . xl('Paper Size')),
1426 'A5' => ('A5' . " " . xl('Paper Size')),
1427 'A6' => ('A6' . " " . xl('Paper Size')),
1428 'A7' => ('A7' . " " . xl('Paper Size')),
1429 'A8' => ('A8' . " " . xl('Paper Size')),
1430 'A9' => ('A9' . " " . xl('Paper Size')),
1431 'A10' => ('A10' . " " . xl('Paper Size')),
1432 'B0' => ('B0' . " " . xl('Paper Size')),
1433 'B1' => ('B1' . " " . xl('Paper Size')),
1434 'B2' => ('B2' . " " . xl('Paper Size')),
1435 'B3' => ('B3' . " " . xl('Paper Size')),
1436 'B4' => ('B4' . " " . xl('Paper Size')),
1437 'B5' => ('B5' . " " . xl('Paper Size')),
1438 'B6' => ('B6' . " " . xl('Paper Size')),
1439 'B7' => ('B7' . " " . xl('Paper Size')),
1440 'B8' => ('B8' . " " . xl('Paper Size')),
1441 'B9' => ('B9' . " " . xl('Paper Size')),
1442 'B10' => ('B10' . " " . xl('Paper Size')),
1443 'C0' => ('C0' . " " . xl('Paper Size')),
1444 'C1' => ('C1' . " " . xl('Paper Size')),
1445 'C2' => ('C2' . " " . xl('Paper Size')),
1446 'C3' => ('C3' . " " . xl('Paper Size')),
1447 'C4' => ('C4' . " " . xl('Paper Size')),
1448 'C5' => ('C5' . " " . xl('Paper Size')),
1449 'C6' => ('C6' . " " . xl('Paper Size')),
1450 'C7' => ('C7' . " " . xl('Paper Size')),
1451 'C8' => ('C8' . " " . xl('Paper Size')),
1452 'C9' => ('C9' . " " . xl('Paper Size')),
1453 'C10' => ('C10' . " " . xl('Paper Size')),
1454 'RA0' => ('RA0' . " " . xl('Paper Size')),
1455 'RA1' => ('RA1' . " " . xl('Paper Size')),
1456 'RA2' => ('RA2' . " " . xl('Paper Size')),
1457 'RA3' => ('RA3' . " " . xl('Paper Size')),
1458 'RA4' => ('RA4' . " " . xl('Paper Size')),
1459 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
1460 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
1461 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
1462 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
1463 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
1465 'LETTER', // default = tree menu
1466 xl('Rx Paper Size')
1468 'rx_left_margin' => array(
1469 xl('Rx Left Margin (px)'),
1470 'num',
1471 '30',
1472 xl('Rx Left Margin (px)')
1474 'rx_right_margin' => array(
1475 xl('Rx Right Margin (px)'),
1476 'num',
1477 '30',
1478 xl('Rx Right Margin (px)')
1480 'rx_top_margin' => array(
1481 xl('Rx Top Margin (px)'),
1482 'num',
1483 '72',
1484 xl('Rx Top Margin (px)')
1486 'rx_bottom_margin' => array(
1487 xl('Rx Bottom Margin (px)'),
1488 'num',
1489 '30',
1490 xl('Rx Bottom Margin (px)')