Support for optional logging of print actions.
[openemr.git] / library / globals.inc.php
blob0c33e010654c1aef6a79320ba93ca7473720ab8e
1 <?php
2 // Copyright (C) 2010-2015 Rod Roark <rod@sunsetsystems.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 // $GLOBALS['print_command'] is the
10 // Print command for spooling to printers, used by statements.inc.php
11 // This is the command to be used for printing (without the filename).
12 // The word following "-P" should be the name of your printer. This
13 // example is designed for 8.5x11-inch paper with 1-inch margins,
14 // 10 CPI, 6 LPI, 65 columns, 54 lines per page.
16 // IF lpr services are installed on Windows this setting will be similar
17 // Otherwise configure it as needed (print /d:PRN) might be an option for Windows parallel printers
19 // Current supported languages: // Allow capture of term for translation:
20 // Albanian // xl('Albanian')
21 // Amharic // xl('Amharic')
22 // Arabic // xl('Arabic')
23 // Armenian // xl('Armenian')
24 // Bahasa Indonesia // xl('Bahasa Indonesia')
25 // Bengali // xl('Bengali')
26 // Bosnian // xl('Bosnian')
27 // Chinese (Simplified) // xl('Chinese (Simplified)')
28 // Chinese (Traditional) // xl('Chinese (Traditional)')
29 // Croatian // xl('Croatian')
30 // Czech // xl('Czech')
31 // Danish // xl('Danish')
32 // Dutch // xl('Dutch')
33 // English (Indian) // xl('English (Indian)')
34 // English (Standard) // xl('English (Standard)')
35 // Estonian // xl('Estonian')
36 // Finnish // xl('Finnish')
37 // French // xl('French (Standard)')
38 // French // xl('French (Canadian)')
39 // Georgian // xl('Georgian')
40 // German // xl('German')
41 // Greek // xl('Greek')
42 // Hebrew // xl('Hebrew')
43 // Hindi // xl('Hindi')
44 // Hungarian // xl('Hungarian')
45 // Italian // xl('Italian')
46 // Japanese // xl('Japanese')
47 // Korean // xl('Korean')
48 // Lithuanian // xl('Lithuanian')
49 // Norwegian // xl('Norwegian')
50 // Persian // xl('Persian')
51 // Polish // xl('Polish')
52 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
53 // Portuguese (European) // xl('Portuguese (European)')
54 // Romanian // xl('Romanian')
55 // Russian // xl('Russian')
56 // Serbian // xl('Serbian')
57 // Sinhala // xl('Sinhala')
58 // Slovak // xl('Slovak')
59 // Spanish (Latin American) // xl('Spanish (Latin American)')
60 // Spanish (Spain) // xl('Spanish (Spain)')
61 // Swedish // xl('Swedish')
62 // Turkish // xl('Turkish')
63 // Ukrainian // xl('Ukrainian')
64 // Vietnamese // xl('Vietnamese')
66 // OS-dependent stuff.
67 if (stristr(PHP_OS, 'WIN')) {
68 // MS Windows
69 $mysql_bin_dir = 'C:/xampp/mysql/bin';
70 $perl_bin_dir = 'C:/xampp/perl/bin';
71 $temporary_files_dir = 'C:/windows/temp';
72 $backup_log_dir = 'C:/windows/temp';
74 else {
75 // Everything else
76 $mysql_bin_dir = '/usr/bin';
77 $perl_bin_dir = '/usr/bin';
78 $temporary_files_dir = '/tmp';
79 $backup_log_dir = '/tmp';
82 // Language constant declarations:
83 // xl('Appearance')
84 // xl('Locale')
85 // xl('Features')
86 // xl('Calendar')
87 // xl('Security')
88 // xl('Notifications')
89 // xl('Miscellaneous')
91 // List of user specific tabs and globals
92 $USER_SPECIFIC_TABS = array('Appearance',
93 'Locale',
94 'Calendar',
95 'Connectors');
96 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
97 'concurrent_layout',
98 'css_header',
99 'gbl_pt_list_page_size',
100 'gbl_pt_list_new_window',
101 'drop_bottom',
102 'units_of_measurement',
103 'us_weight_format',
104 'date_display_format',
105 'time_display_format',
106 'calendar_view_type',
107 'event_color',
108 'pat_trkr_timer',
109 'checkout_roll_off',
110 'ptkr_pt_list_new_window',
111 'erx_import_status_message');
113 $GLOBALS_METADATA = array(
115 // Appearance Tab
117 'Appearance' => array(
119 'default_top_pane' => array(
120 xl('Main Top Pane Screen'), // descriptive name
121 array(
122 'main_info.php' => xl('Calendar Screen'),
123 '../new/new.php' => xl('Patient Search/Add Screen'),
124 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
126 'main_info.php', // default = calendar
127 xl('Type of screen layout')
130 'concurrent_layout' => array(
131 xl('Layout Style'), // descriptive name
132 array(
133 '0' => xl('Old style layout with no left menu'),
134 '1' => xl('Navigation menu consists of pairs of radio buttons'),
135 '2' => xl('Navigation menu is a tree view'),
136 '3' => xl('Navigation uses a sliding menu'),
138 '3', // default = tree menu
139 xl('Type of screen layout')
142 'default_encounter_view' => array(
143 xl('Default Encounter View'), // descriptive name
144 array(
145 '0' => xl('Clinical View'),
146 '1' => xl('Billing View'),
148 '0', // default = tree menu
149 xl('Choose your default encounter view')
152 'css_header' => array(
153 xl('Theme'),
154 'css',
155 'style_oemr.css',
156 xl('Pick a CSS theme.')
159 'gbl_nav_area_width' => array(
160 xl('Navigation Area Width'),
161 'num',
162 '150',
163 xl('Width in pixels of the left navigation frame.')
166 'openemr_name' => array(
167 xl('Application Title'),
168 'text',
169 'OpenEMR',
170 xl('Application name for login page and main window title.')
173 'full_new_patient_form' => array(
174 xl('New Patient Form'),
175 array(
176 '0' => xl('Old-style static form without search or duplication check'),
177 '1' => xl('All demographics fields, with search and duplication check'),
178 '2' => xl('Mandatory or specified fields only, search and dup check'),
179 '3' => xl('Mandatory or specified fields only, dup check, no search'),
181 '1', // default
182 xl('Style of form used for adding new patients')
185 'patient_search_results_style' => array(
186 xl('Patient Search Results Style'),
187 array(
188 '0' => xl('Encounter statistics'),
189 '1' => xl('Mandatory and specified fields'),
191 '0', // default
192 xl('Type of columns displayed for patient search results')
195 'gbl_tall_nav_area' => array(
196 xl('Tall Navigation Area'),
197 'bool', // data type
198 '0', // default = false
199 xl('Navigation area uses full height of frameset')
202 'gbl_nav_visit_forms' => array(
203 xl('Navigation Area Visit Forms'),
204 'bool', // data type
205 '1', // default = true
206 xl('Navigation area includes encounter forms')
209 'simplified_demographics' => array(
210 xl('Simplified Demographics'),
211 'bool', // data type
212 '0', // default = false
213 xl('Omit insurance and some other things from the demographics form')
216 'simplified_prescriptions' => array(
217 xl('Simplified Prescriptions'),
218 'bool', // data type
219 '0', // default = false
220 xl('Omit form, route and interval which then become part of dosage')
223 'simplified_copay' => array(
224 xl('Simplified Co-Pay'),
225 'bool', // data type
226 '0', // default = false
227 xl('Omit method of payment from the co-pay panel')
230 'use_charges_panel' => array(
231 xl('Use Charges Panel'),
232 'bool', // data type
233 '0', // default = false
234 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
237 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
238 'enable_fees_in_left_menu' => array(
239 xl('Enable Fees In Left Menu'),
240 'bool', // data type
241 '1', // default = true
242 xl('Enable Fees In Left Menu')
244 // EDI history 2012-09-13
245 'enable_edihistory_in_left_menu' => array(
246 xl('Enable EDI History In Left Menu'),
247 'bool', // data type
248 '1', // default = true
249 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
252 'online_support_link' => array(
253 xl('Online Support Link'),
254 'text', // data type
255 'http://open-emr.org/',
256 xl('URL for OpenEMR support.')
259 'drop_bottom' => array(
260 xl('Remove Bottom Pane'),
261 'bool', // data type
262 '0', // default = false
263 xl('Removes the bottom pane by default on start up.')
266 'encounter_page_size' => array(
267 xl('Encounter Page Size'),
268 array(
269 '0' => xl('Show All'),
270 '5' => '5',
271 '10' => '10',
272 '15' => '15',
273 '20' => '20',
274 '25' => '25',
275 '50' => '50',
277 '20',
278 xl('Number of encounters to display per page.')
281 'gbl_pt_list_page_size' => array(
282 xl('Patient List Page Size'),
283 array(
284 '10' => '10',
285 '25' => '25',
286 '50' => '50',
287 '100' => '100',
289 '10',
290 xl('Number of patients to display per page in the patient list.')
293 'gbl_pt_list_new_window' => array(
294 xl('Patient List New Window'),
295 'bool', // data type
296 '0', // default = false
297 xl('Default state of New Window checkbox in the patient list.')
300 'gbl_vitals_options' => array(
301 xl('Vitals Form Options'),
302 array(
303 '0' => xl('Standard'),
304 '1' => xl('Omit circumferences'),
306 '0', // default
307 xl('Special treatment for the Vitals form')
312 // Locale Tab
314 'Locale' => array(
316 'language_default' => array(
317 xl('Default Language'),
318 'lang', // data type
319 'English (Standard)', // default = english
320 xl('Default language if no other is allowed or chosen.')
323 'language_menu_showall' => array(
324 xl('All Languages Allowed'),
325 'bool', // data type
326 '1', // default = true
327 xl('Allow all available languages as choices on menu at login.')
330 'language_menu_other' => array(
331 xl('Allowed Languages'),
332 'm_lang', // data type
333 '', // default = none
334 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
337 'allow_debug_language' => array(
338 xl('Allow Debugging Language'),
339 'bool', // data type
340 '1', // default = true during development and false for production releases
341 xl('This will allow selection of the debugging (\'dummy\') language.')
344 'translate_layout' => array(
345 xl('Translate Layouts'),
346 'bool', // data type
347 '1', // default = true
348 xl('Is text from form layouts to be translated?')
351 'translate_lists' => array(
352 xl('Translate Lists'),
353 'bool', // data type
354 '1', // default = true
355 xl('Is text from lists to be translated?')
358 'translate_gacl_groups' => array(
359 xl('Translate Access Control Groups'),
360 'bool', // data type
361 '1', // default = true
362 xl('Are access control group names to be translated?')
365 'translate_form_titles' => array(
366 xl('Translate Patient Note Titles'),
367 'bool', // data type
368 '1', // default = true
369 xl('Are patient note titles to be translated?')
372 'translate_document_categories' => array(
373 xl('Translate Document Categories'),
374 'bool', // data type
375 '1', // default = true
376 xl('Are document category names to be translated?')
379 'translate_appt_categories' => array(
380 xl('Translate Appointment Categories'),
381 'bool', // data type
382 '1', // default = true
383 xl('Are appointment category names to be translated?')
386 'units_of_measurement' => array(
387 xl('Units for Visit Forms'),
388 array(
389 '1' => xl('Show both US and metric (main unit is US)'),
390 '2' => xl('Show both US and metric (main unit is metric)'),
391 '3' => xl('Show US only'),
392 '4' => xl('Show metric only'),
394 '1', // default = Both/US
395 xl('Applies to the Vitals form and Growth Chart')
398 'us_weight_format' => array(
399 xl('Display Format for US Weights'),
400 array(
401 '1'=>xl('Show pounds as decimal value'),
402 '2'=>xl('Show pounds and ounces')
404 '1',
405 xl('Applies to Vitals form')
408 'disable_deprecated_metrics_form' => array(
409 xl('Disable Old Metric Vitals Form'),
410 'bool', // data type
411 '1', // default = true
412 xl('This was the older metric-only Vitals form, now deprecated.')
415 'phone_country_code' => array(
416 xl('Telephone Country Code'),
417 'num',
418 '1', // default = North America
419 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
422 'date_display_format' => array(
423 xl('Date Display Format'),
424 array(
425 '0' => xl('YYYY-MM-DD'),
426 '1' => xl('MM/DD/YYYY'),
427 '2' => xl('DD/MM/YYYY'),
429 '0',
430 xl('Format used to display most dates.')
433 'time_display_format' => array(
434 xl('Time Display Format'),
435 array(
436 '0' => xl('24 hr'),
437 '1' => xl('12 hr'),
439 '0',
440 xl('Format used to display most times.')
443 'currency_decimals' => array(
444 xl('Currency Decimal Places'),
445 array(
446 '0' => xl('0'),
447 '1' => xl('1'),
448 '2' => xl('2'),
450 '2',
451 xl('Number of digits after decimal point for currency, usually 0 or 2.')
454 'currency_dec_point' => array(
455 xl('Currency Decimal Point Symbol'),
456 array(
457 '.' => xl('Period'),
458 ',' => xl('Comma'),
460 '.',
461 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
464 'currency_thousands_sep' => array(
465 xl('Currency Thousands Separator'),
466 array(
467 ',' => xl('Comma'),
468 '.' => xl('Period'),
469 ' ' => xl('Space'),
470 '' => xl('None'),
472 ',',
473 xl('Symbol used to separate thousands for currency.')
476 'gbl_currency_symbol' => array(
477 xl('Currency Designator'),
478 'text', // data type
479 '$', // default
480 xl('Code or symbol to indicate currency')
482 'age_display_format'=>array(xl('Age Display Format'),
483 array(
484 '0'=>xl('Years or months'),
485 '1'=>xl('Years, months and days')
487 '0',
488 xl('Format for age display')
490 'age_display_limit' => array(
491 xl('Age in Years for Display Format Change'),
492 'num',
493 '3',
494 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
498 // Features Tab
500 'Features' => array(
502 'specific_application' => array(
503 xl('Specific Application'),
504 array(
505 '0' => xl('None'),
506 '1' => xl('Athletic team'),
507 '2' => xl('IPPF'),
508 '3' => xl('Weight loss clinic'),
510 '0', // default
511 xl('Indicator for specialized usage')
514 'inhouse_pharmacy' => array(
515 xl('Drugs and Products'),
516 array(
517 '0' => xl('Do not inventory and sell any products'),
518 '1' => xl('Inventory and sell drugs only'),
519 '2' => xl('Inventory and sell both drugs and non-drug products'),
520 '3' => xl('Products but no prescription drugs and no templates'),
522 '0', // default
523 xl('Option to support inventory and sales of products')
526 'disable_chart_tracker' => array(
527 xl('Disable Chart Tracker'),
528 'bool', // data type
529 '0', // default = false
530 xl('Removes the Chart Tracker feature')
533 'disable_phpmyadmin_link' => array(
534 xl('Disable phpMyAdmin'),
535 'bool', // data type
536 '0', // default = false
537 xl('Removes support for phpMyAdmin')
540 'disable_immunizations' => array(
541 xl('Disable Immunizations'),
542 'bool', // data type
543 '0', // default = false
544 xl('Removes support for immunizations')
547 'disable_prescriptions' => array(
548 xl('Disable Prescriptions'),
549 'bool', // data type
550 '0', // default = false
551 xl('Removes support for prescriptions')
554 'omit_employers' => array(
555 xl('Omit Employers'),
556 'bool', // data type
557 '0', // default = false
558 xl('Omit employer information in patient demographics')
561 'select_multi_providers' => array(
562 xl('Support Multi-Provider Events'),
563 'bool', // data type
564 '0', // default = false
565 xl('Support calendar events that apply to multiple providers')
568 'disable_non_default_groups' => array(
569 xl('Disable User Groups'),
570 'bool', // data type
571 '1', // default = true
572 xl('Normally this should be checked. Not related to access control.')
575 'ignore_pnotes_authorization' => array(
576 xl('Skip Authorization of Patient Notes'),
577 'bool', // data type
578 '1', // default = true
579 xl('Do not require patient notes to be authorized')
582 'support_encounter_claims' => array(
583 xl('Allow Encounter Claims'),
584 'bool', // data type
585 '0', // default = false
586 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
589 'advance_directives_warning' => array(
590 xl('Advance Directives Warning'),
591 'bool', // data type
592 '0', // default = false
593 xl('Display advance directives in the demographics page.')
596 'configuration_import_export' => array(
597 xl('Configuration Export/Import'),
598 'bool', // data type
599 '0', // default = false
600 xl('Support export/import of configuration data via the Backup page.')
603 'restrict_user_facility' => array(
604 xl('Restrict Users to Facilities'),
605 'bool', // data type
606 '0', // default
607 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
610 'set_facility_cookie' => array(
611 xl('Remember Selected Facility'),
612 'bool', // data type
613 '0', // default
614 xl('Set a facility cookie to remember the selected facility between logins.')
617 'receipts_by_provider' => array(
618 xl('Print Receipts by Provider'),
619 'bool',
620 '0', // default
621 xl('Causes Receipts to Print Encounter/Primary Provider Info')
624 'discount_by_money' => array(
625 xl('Discounts as Monetary Amounts'),
626 'bool', // data type
627 '1', // default = true
628 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
631 'gbl_visit_referral_source' => array(
632 xl('Referral Source for Encounters'),
633 'bool', // data type
634 '0', // default = false
635 xl('A referral source may be specified for each visit.')
638 'gbl_mask_patient_id' => array(
639 xl('Mask for Patient IDs'),
640 'text', // data type
641 '', // default
642 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
645 'gbl_mask_invoice_number' => array(
646 xl('Mask for Invoice Numbers'),
647 'text', // data type
648 '', // default
649 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
652 'gbl_mask_product_id' => array(
653 xl('Mask for Product IDs'),
654 'text', // data type
655 '', // default
656 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
659 'force_billing_widget_open' => array(
660 xl('Force Billing Widget Open'),
661 'bool', // data type
662 '0', // default = false
663 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
666 'num_past_appointments_to_show' => array(
667 xl('Past Appointment Display Widget'),
668 'num', // data type
669 '0', // default = false
670 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)')
673 'activate_ccr_ccd_report' => array(
674 xl('Activate CCR/CCD Reporting'),
675 'bool', // data type
676 '1', // default = true
677 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
680 'hide_document_encryption' => array(
681 xl('Hide Encryption/Decryption Options In Document Management'),
682 'bool', // data type
683 '1', // default = true
684 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
687 'use_custom_immun_list' => array(
688 xl('Use Custom Immunization List'),
689 'bool', // data type
690 '0', // default = true
691 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
694 'cms_1500' => array(
695 xl('CMS 1500 Paper Form Format'),
696 array(
697 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
698 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
700 '1', // default
701 xl('This specifies which revision of the form the billing module should generate')
704 'cms_1500_box_31_format' => array(
705 xl('CMS 1500: Box 31 Format'),
706 array(
707 '0' => xl('Signature on File'),
708 '1' => xl('Firstname Lastname'),
709 '2' => xl('None'),
711 '0', // default
712 xl('This specifies whether to include date in Box 31.')
716 'cms_1500_box_31_date' => array(
717 xl('CMS 1500: Date in Box 31 (Signature)'),
718 array(
719 '0' => xl('None'),
720 '1' => xl('Date of Service'),
721 '2' => xl('Today'),
723 '0', // default
724 xl('This specifies whether to include date in Box 31.')
727 'amendments' => array (
728 xl('Amendments'),
729 'bool', // data type
730 '1', // default = true
731 xl('Enable amendments feature')
734 'use_custom_daysheet' => array(
735 xl('Use Custom End of Day Report'),
736 array(
737 '0' => xl('None'),
738 '1' => xl('Print End of Day Report 1'),
739 '2' => xl('Print End of Day Report 2'),
740 '3' => xl('Print End of Day Report 3'),
741 ), // data type
742 '1', // default = Print End of Day Report 1
743 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
746 'daysheet_provider_totals' => array(
747 xl('End of Day by Provider or allow Totals Only'),
748 array(
749 '0' => xl('Provider'),
750 '1' => xl('Totals Only'),
752 '1', // default
753 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
757 // E-Sign Tab
759 'E-Sign' => array(
761 'esign_all' => array(
762 xl('Allows E-Sign on the entire encounter'),
763 'bool', // data type
764 '0', // default = false
765 xl('This will enable signing an entire encounter, rather than individual forms')
768 'lock_esign_all' => array(
769 xl('Lock e-signed encounters and their forms'),
770 'bool', // data type
771 '0', // default = false
772 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
775 'esign_individual' => array(
776 xl('Allows E-Signing Individual Forms'),
777 'bool', // data type
778 '1', // default = false
779 xl('This will enable signing individual forms separately')
782 'lock_esign_individual' => array(
783 xl('Lock an e-signed form individually'),
784 'bool', // data type
785 '1', // default = false
786 xl('This will disable the Edit button on any form that is e-signed')
789 'esign_lock_toggle' => array(
790 xl('Enable lock toggle'),
791 'bool', // data type
792 '0', // default = false
793 xl('This will give the user the option to lock (separate locking and signing)')
796 'esign_report_hide_empty_sig' => array(
797 xl('Hide Empty E-Sign Logs On Report'),
798 'bool', // data type
799 '1', // default = false
800 xl('This will hide empty e-sign logs on the patient report')
804 //Documents Tab
805 'Documents' => array(
806 'document_storage_method' => array(
807 xl('Document Storage Method'),
808 array(
809 '0' => xl('Hard Disk'),
810 '1' => xl('CouchDB')
812 '0', // default
813 xl('Option to save method of document storage.')
815 'couchdb_host' => array(
816 xl('CouchDB HostName'),
817 'text',
818 'localhost',
819 xl('CouchDB host'),
821 'couchdb_user' => array(
822 xl('CouchDB UserName'),
823 'text',
825 xl('Username to connect to CouchDB'),
827 'couchdb_pass' => array(
828 xl('CouchDB Password'),
829 'text',
831 xl('Password to connect to CouchDB'),
833 'couchdb_port' => array(
834 xl('CouchDB Port'),
835 'text',
836 '5984',
837 xl('CouchDB port'),
839 'couchdb_dbase' => array(
840 xl('CouchDB Database'),
841 'text',
843 xl('CouchDB database name'),
845 'couchdb_log' => array(
846 xl('CouchDB Log Enable'),
847 'bool',
848 '0',
849 xl('Enable log for document uploads/downloads to CouchDB'),
852 'patient_id_category_name' => array(
853 xl('Patient ID Category Name'),
854 'text', // data type
855 'Patient ID card', // default
856 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
859 'patient_photo_category_name' => array(
860 xl('Patient Photo Category Name'),
861 'text', // data type
862 'Patient Photograph', // default
863 xl('Optional category name for photo images that can be viewed from the patient summary page.')
866 'lab_results_category_name' => array(
867 xl('Lab Results Category Name'),
868 'text', // data type
869 'Lab Report', // default
870 xl('Document category name for storage of electronically received lab results.')
873 'gbl_mdm_category_name' => array(
874 xl('MDM Document Category Name'),
875 'text', // data type
876 'Lab Report', // default
877 xl('Document category name for storage of electronically received MDM documents.')
882 // Calendar Tab
884 'Calendar' => array(
886 'disable_calendar' => array(
887 xl('Disable Calendar'),
888 'bool', // data type
889 '0', // default
890 xl('Do not display the calendar.')
893 'schedule_start' => array(
894 xl('Calendar Starting Hour'),
895 'hour',
896 '8', // default
897 xl('Beginning hour of day for calendar events.')
900 'schedule_end' => array(
901 xl('Calendar Ending Hour'),
902 'hour',
903 '17', // default
904 xl('Ending hour of day for calendar events.')
907 'calendar_interval' => array(
908 xl('Calendar Interval'),
909 array(
910 '5' => '5',
911 '10' => '10',
912 '15' => '15',
913 '20' => '20',
914 '30' => '30',
915 '60' => '60',
917 '15', // default
918 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
921 'calendar_view_type' => array(
922 xl('Default Calendar View'),
923 array(
924 'day' => xl('Day'),
925 'week' => xl('Week'),
926 'month' => xl('Month'),
928 'day', // default
929 xl('This sets the Default Calendar View, Default is Day.')
932 'calendar_appt_style' => array(
933 xl('Appointment Display Style'),
934 array(
935 '1' => 'Last name',
936 '2' => 'Last name, first name',
937 '3' => 'Last name, first name (title)',
938 '4' => 'Last name, first name (title: description)',
940 '2', // default
941 xl('This determines how appointments display on the calendar.')
944 'docs_see_entire_calendar' => array(
945 xl('Providers See Entire Calendar'),
946 'bool', // data type
947 '0', // default
948 xl('Check this if you want providers to see all appointments by default and not just their own.')
951 'auto_create_new_encounters' => array(
952 xl('Auto-Create New Encounters'),
953 'bool', // data type
954 '1', // default
955 xl('Automatically create a new encounter when an appointment check in status is selected.')
958 'event_color' => array(
959 xl('Appointment/Event Color'),
960 array(
961 '1' => 'Category Color Schema',
962 '2' => 'Facility Color Schema',
963 ), // data type
964 '1', // default
965 xl('This determines which color schema used for appointment')
968 'disable_pat_trkr' => array(
969 xl('Disable Patient Flow Board'),
970 'bool', // data type
971 '0', // default
972 xl('Do not display the patient flow board.')
975 'ptkr_pt_list_new_window' => array(
976 xl('Open Demographics in New Window from Patient Flow Board'),
977 'bool', // data type
978 '0', // default = false
979 xl('When Checked, Demographics Will Open in New Window from Patient Flow Board.')
982 'pat_trkr_timer' => array(
983 xl('Patient Flow Board Timer Interval'),
984 array(
985 '0' => 'No automatic refresh',
986 '0:10' => '10',
987 '0:20' => '20',
988 '0:30' => '30',
989 '0:40' => '40',
990 '0:50' => '50',
991 '0:59' => '60',
993 '0:20', // default
994 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
997 'checkout_roll_off' => array(
998 xl('Number of Minutes to display completed checkouts'),
999 'num',
1000 '0', // default
1001 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1004 'drug_screen' => array(
1005 xl('Enable Random Drug Testing'),
1006 'bool', // data type
1007 '0', // default
1008 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1011 'drug_testing_percentage' => array(
1012 xl('Percentage of Patients to Drug Test'),
1013 'num',
1014 '33', // default
1015 xl('Percentage of Patients to select for Random Drug Testing.')
1018 'maximum_drug_test_yearly' => array(
1019 xl('Maximum number of times a Patient can be tested in a year'),
1020 'num',
1021 '0', // default
1022 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1027 // Security Tab
1029 'Security' => array(
1031 'timeout' => array(
1032 xl('Idle Session Timeout Seconds'),
1033 'num', // data type
1034 '7200', // default
1035 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1038 'secure_password' => array(
1039 xl('Require Strong Passwords'),
1040 'bool', // data type
1041 '0', // default
1042 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1045 'password_history' => array(
1046 xl('Require Unique Passwords'),
1047 'bool', // data type
1048 '0', // default
1049 xl('Means none of last three passwords are allowed when changing a password.')
1051 'password_compatibility' => array(
1052 xl('Permit unsalted passwords'),
1053 'bool', // data type
1054 '1', // default
1055 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')
1058 'password_expiration_days' => array(
1059 xl('Default Password Expiration Days'),
1060 'num', // data type
1061 '0', // default
1062 xl('Default password expiration period in days. 0 means this feature is disabled.')
1065 'password_grace_time' => array(
1066 xl('Password Expiration Grace Period'),
1067 'num', // data type
1068 '0', // default
1069 xl('Period in days where a user may login with an expired password.')
1072 'is_client_ssl_enabled' => array(
1073 xl('Enable Client SSL'),
1074 'bool', // data type
1075 '0', // default
1076 xl('Enable client SSL certificate authentication.')
1079 'certificate_authority_crt' => array(
1080 xl('Path to CA Certificate File'),
1081 'text', // data type
1082 '', // default
1083 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1086 'certificate_authority_key' => array(
1087 xl('Path to CA Key File'),
1088 'text', // data type
1089 '', // default
1090 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1093 'client_certificate_valid_in_days' => array(
1094 xl('Client Certificate Expiration Days'),
1095 'num', // data type
1096 '365', // default
1097 xl('Number of days that the client certificate is valid.')
1100 'Emergency_Login_email_id' => array(
1101 xl('Emergency Login Email Address'),
1102 'text', // data type
1103 '', // default
1104 xl('Email address, if any, to receive emergency login user activation messages.')
1109 // Notifications Tab
1111 'Notifications' => array(
1113 'patient_reminder_sender_name' => array(
1114 xl('Patient Reminder Sender Name'),
1115 'text', // data type
1116 '', // default
1117 xl('Name of the sender for patient reminders.')
1120 'patient_reminder_sender_email' => array(
1121 xl('Patient Reminder Sender Email'),
1122 'text', // data type
1123 '', // default
1124 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.')
1127 'practice_return_email_path' => array(
1128 xl('Notification Email Address'),
1129 'text', // data type
1130 '', // default
1131 xl('Email address, if any, to receive administrative notifications.')
1134 'EMAIL_METHOD' => array(
1135 xl('Email Transport Method'),
1136 array(
1137 'PHPMAIL' => 'PHPMAIL',
1138 'SENDMAIL' => 'SENDMAIL',
1139 'SMTP' => 'SMTP',
1141 'SMTP', // default
1142 xl('Method for sending outgoing email.')
1145 'SMTP_HOST' => array(
1146 xl('SMTP Server Hostname'),
1147 'text', // data type
1148 'localhost', // default
1149 xl('If SMTP is used, the server`s hostname or IP address.')
1152 'SMTP_PORT' => array(
1153 xl('SMTP Server Port Number'),
1154 'num', // data type
1155 '25', // default
1156 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1159 'SMTP_USER' => array(
1160 xl('SMTP User for Authentication'),
1161 'text', // data type
1162 '', // default
1163 xl('Must be empty if SMTP authentication is not used.')
1166 'SMTP_PASS' => array(
1167 xl('SMTP Password for Authentication'),
1168 'text', // data type
1169 '', // default
1170 xl('Must be empty if SMTP authentication is not used.')
1173 'SMTP_SECURE' => array(
1174 xl('SMTP Security Protocol'),
1175 array(
1176 '' => xl('None'),
1177 'ssl' => 'SSL',
1178 'tls' => 'TLS'
1181 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1184 'EMAIL_NOTIFICATION_HOUR' => array(
1185 xl('Email Notification Hours'),
1186 'num', // data type
1187 '50', // default
1188 xl('Number of hours in advance to send email notifications.')
1191 'SMS_NOTIFICATION_HOUR' => array(
1192 xl('SMS Notification Hours'),
1193 'num', // data type
1194 '50', // default
1195 xl('Number of hours in advance to send SMS notifications.')
1198 'SMS_GATEWAY_USENAME' => array(
1199 xl('SMS Gateway Username'),
1200 'text', // data type
1201 '', // default
1202 xl('Username for SMS Gateway.')
1205 'SMS_GATEWAY_PASSWORD' => array(
1206 xl('SMS Gateway Password'),
1207 'text', // data type
1208 '', // default
1209 xl('Password for SMS Gateway.')
1212 'SMS_GATEWAY_APIKEY' => array(
1213 xl('SMS Gateway API Key'),
1214 'text', // data type
1215 '', // default
1216 xl('API key for SMS Gateway.')
1219 'phone_notification_hour' => array(
1220 xl('Phone Notification Hour'),
1221 'num', // data type
1222 '50', // default
1223 xl('Number of hours in advance to send Phone notification.')
1226 'phone_gateway_username' => array(
1227 xl('Phone Gateway Username'),
1228 'text', // data type
1229 '', // default
1230 xl('Username for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
1233 'phone_gateway_password' => array(
1234 xl('Phone Gateway Password'),
1235 'text', // data type
1236 '', // default
1237 xl('Password for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
1240 'phone_gateway_url' => array(
1241 xl('Phone Gateway URL'),
1242 'text', // data type
1243 '', // default
1244 xl('URL for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
1249 // CDR (Clinical Decision Rules)
1251 'CDR' => array(
1253 'enable_cdr' => array(
1254 xl('Enable Clinical Decisions Rules (CDR)'),
1255 'bool', // data type
1256 '1', // default
1257 xl('Enable Clinical Decisions Rules (CDR)')
1260 'enable_cdr_crw' => array(
1261 xl('Enable Clinical Reminder Widget'),
1262 'bool', // data type
1263 '1', // default
1264 xl('Enable Clinical Reminder Widget')
1267 'enable_cdr_crp' => array(
1268 xl('Enable Clinical Reminder Popup'),
1269 'bool', // data type
1270 '1', // default
1271 xl('Enable Clinical Reminder Popup')
1274 'enable_cdr_prw' => array(
1275 xl('Enable Patient Reminder Widget'),
1276 'bool', // data type
1277 '1', // default
1278 xl('Enable Patient Reminder Widget')
1281 'enable_cqm' => array(
1282 xl('Enable CQM Reporting'),
1283 'bool', // data type
1284 '1', // default
1285 xl('Enable Clinical Quality Measure (CQM) Reporting')
1288 'pqri_registry_name' => array(
1289 xl('PQRI Registry Name'),
1290 'text', // data type
1291 'Model Registry', // default
1292 xl('PQRI Registry Name')
1295 'pqri_registry_id' => array(
1296 xl('PQRI Registry ID'),
1297 'text', // data type
1298 '125789123', // default
1299 xl('PQRI Registry ID')
1302 'enable_amc' => array(
1303 xl('Enable AMC Reporting'),
1304 'bool', // data type
1305 '1', // default
1306 xl('Enable Automated Measure Calculations (AMC) Reporting')
1309 'enable_amc_prompting' => array(
1310 xl('Enable AMC Prompting'),
1311 'bool', // data type
1312 '1', // default
1313 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1316 'enable_amc_tracking' => array(
1317 xl('Enable AMC Tracking'),
1318 'bool', // data type
1319 '1', // default
1320 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
1323 'cdr_report_nice' => array(
1324 xl('CDR Reports Processing Priority'),
1325 array(
1326 '' => xl('Default Priority'),
1327 '5' => xl('Moderate Priority'),
1328 '10' => xl('Moderate/Low Priority'),
1329 '15' => xl('Low Priority'),
1330 '20' => xl('Lowest Priority')
1332 '', // default
1333 xl('Set processing priority for CDR engine based reports.')
1336 'pat_rem_clin_nice' => array(
1337 xl('Patient Reminder Creation Processing Priority'),
1338 array(
1339 '' => xl('Default Priority'),
1340 '5' => xl('Moderate Priority'),
1341 '10' => xl('Moderate/Low Priority'),
1342 '15' => xl('Low Priority'),
1343 '20' => xl('Lowest Priority')
1345 '', // default
1346 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
1349 'report_itemizing_standard' => array(
1350 xl('Enable Standard Report Itemization'),
1351 'bool', // data type
1352 '1', // default
1353 xl('Enable Itemization of Standard Clinical Rules Reports')
1356 'report_itemizing_cqm' => array(
1357 xl('Enable CQM Report Itemization'),
1358 'bool', // data type
1359 '1', // default
1360 xl('Enable Itemization of CQM Reports')
1363 'report_itemizing_amc' => array(
1364 xl('Enable AMC Report Itemization'),
1365 'bool', // data type
1366 '1', // default
1367 xl('Enable Itemization of AMC Reports')
1372 // Logging
1374 'Logging' => array(
1376 'enable_auditlog' => array(
1377 xl('Enable Audit Logging'),
1378 'bool', // data type
1379 '1', // default
1380 xl('Enable Audit Logging')
1383 'audit_events_patient-record' => array(
1384 xl('Audit Logging Patient Record'),
1385 'bool', // data type
1386 '1', // default
1387 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1390 'audit_events_scheduling' => array(
1391 xl('Audit Logging Scheduling'),
1392 'bool', // data type
1393 '1', // default
1394 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1397 'audit_events_order' => array(
1398 xl('Audit Logging Order'),
1399 'bool', // data type
1400 '1', // default
1401 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1404 'audit_events_security-administration' => array(
1405 xl('Audit Logging Security Administration'),
1406 'bool', // data type
1407 '1', // default
1408 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1411 'audit_events_backup' => array(
1412 xl('Audit Logging Backups'),
1413 'bool', // data type
1414 '1', // default
1415 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1418 'audit_events_other' => array(
1419 xl('Audit Logging Miscellaneous'),
1420 'bool', // data type
1421 '1', // default
1422 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1425 'audit_events_query' => array(
1426 xl('Audit Logging SELECT Query'),
1427 'bool', // data type
1428 '0', // default
1429 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1432 'audit_events_cdr' => array(
1433 xl('Audit CDR Engine Queries'),
1434 'bool', // data type
1435 '0', // default
1436 xl('Enable logging of CDR Engine Queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1439 'enable_atna_audit' => array(
1440 xl('Enable ATNA Auditing'),
1441 'bool', // data type
1442 '0', // default
1443 xl('Enable Audit Trail and Node Authentication (ATNA).')
1446 'atna_audit_host' => array(
1447 xl('ATNA audit host'),
1448 'text', // data type
1449 '', // default
1450 xl('The hostname of the ATNA audit repository machine.')
1453 'atna_audit_port' => array(
1454 xl('ATNA audit port'),
1455 'text', // data type
1456 '6514', // default
1457 xl('Listening port of the RFC 5425 TLS syslog server.')
1460 'atna_audit_localcert' => array(
1461 xl('ATNA audit local certificate'),
1462 'text', // data type
1463 '', // default
1464 xl('Certificate to send to RFC 5425 TLS syslog server.')
1467 'atna_audit_cacert' => array(
1468 xl('ATNA audit CA certificate'),
1469 'text', // data type
1470 '', // default
1471 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
1474 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
1475 'enable_auditlog_encryption' => array(
1476 xl('Enable Audit Log Encryption'),
1477 'bool', // data type
1478 '0', // default
1479 xl('Enable Audit Log Encryption')
1482 'billing_log_option' => array(
1483 xl('Billing Log Option'),
1484 array(
1485 '1' => xl('Billing Log Append'),
1486 '2' => xl('Billing Log Overwrite')
1488 '1', // default
1489 xl('Billing log setting to append or overwrite the log file.')
1492 'gbl_print_log_option' => array(
1493 xl('Printing Log Option'),
1494 array(
1495 '0' => xl('No logging'),
1496 '1' => xl('Hide print feature where not implemented'),
1497 '2' => xl('Log entire document where not implemented'),
1499 '0', // default
1500 xl('How to handle printer logging.')
1505 // Miscellaneous Tab
1507 'Miscellaneous' => array(
1509 'mysql_bin_dir' => array(
1510 xl('Path to MySQL Binaries'),
1511 'text', // data type
1512 $mysql_bin_dir, // default
1513 xl('Full path to directory containing MySQL executables.')
1516 'perl_bin_dir' => array(
1517 xl('Path to Perl Binaries'),
1518 'text', // data type
1519 $perl_bin_dir, // default
1520 xl('Full path to directory containing Perl executables.')
1523 'temporary_files_dir' => array(
1524 xl('Path to Temporary Files'),
1525 'text', // data type
1526 $temporary_files_dir, // default
1527 xl('Full path to directory used for temporary files.')
1530 'backup_log_dir' => array(
1531 xl('Path for Event Log Backup'),
1532 'text', // data type
1533 $backup_log_dir, // default
1534 xl('Full path to directory for event log backup.')
1537 'state_data_type' => array(
1538 xl('State Data Type'),
1539 array(
1540 '2' => xl('Text field'),
1541 '1' => xl('Single-selection list'),
1542 '26' => xl('Single-selection list with ability to add to the list'),
1544 '26', // default
1545 xl('Field type to use for employer or subscriber state in demographics.')
1548 'state_list' => array(
1549 xl('State list'),
1550 'text', // data type
1551 'state', // default
1552 xl('List used by above State Data Type option.')
1555 'state_custom_addlist_widget' => array(
1556 xl('State List Widget Custom Fields'),
1557 'bool', // data type
1558 '1', // default
1559 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
1562 'country_data_type' => array(
1563 xl('Country Data Type'),
1564 array(
1565 '2' => xl('Text field'),
1566 '1' => xl('Single-selection list'),
1567 '26' => xl('Single-selection list with ability to add to the list'),
1569 '26', // default
1570 xl('Field type to use for employer or subscriber country in demographics.')
1573 'country_list' => array(
1574 xl('Country list'),
1575 'text', // data type
1576 'country', // default
1577 xl('List used by above Country Data Type option.')
1580 'print_command' => array(
1581 xl('Print Command'),
1582 'text', // data type
1583 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
1584 xl('Shell command for printing from the server.')
1587 'default_chief_complaint' => array(
1588 xl('Default Reason for Visit'),
1589 'text', // data type
1591 xl('You may put text here as the default complaint in the New Patient Encounter form.')
1594 'default_new_encounter_form' => array(
1595 xl('Default Encounter Form ID'),
1596 'text', // data type
1598 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
1601 'MedicareReferrerIsRenderer' => array(
1602 xl('Medicare Referrer Is Renderer'),
1603 'bool', // data type
1604 '0', // default = true
1605 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
1608 'post_to_date_benchmark' => array(
1609 xl('Financial Close Date (yyyy-mm-dd)'),
1610 'text', // data type
1611 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
1612 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
1615 'enable_hylafax' => array(
1616 xl('Enable Hylafax Support'),
1617 'bool', // data type
1618 '0', // default
1619 xl('Enable Hylafax Support')
1622 'hylafax_server' => array(
1623 xl('Hylafax Server'),
1624 'text', // data type
1625 'localhost', // default
1626 xl('Hylafax server hostname.')
1629 'hylafax_basedir' => array(
1630 xl('Hylafax Directory'),
1631 'text', // data type
1632 '/var/spool/fax', // default
1633 xl('Location where Hylafax stores faxes.')
1636 'hylafax_enscript' => array(
1637 xl('Hylafax Enscript Command'),
1638 'text', // data type
1639 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
1640 xl('Enscript command used by Hylafax.')
1643 'enable_scanner' => array(
1644 xl('Enable Scanner Support'),
1645 'bool', // data type
1646 '0', // default
1647 xl('Enable Scanner Support')
1650 'scanner_output_directory' => array(
1651 xl('Scanner Directory'),
1652 'text', // data type
1653 '/mnt/scan_docs', // default
1654 xl('Location where scans are stored.')
1659 // Portal Tab
1661 'Portal' => array(
1663 'portal_onsite_enable' => array(
1664 xl('Enable Onsite Patient Portal'),
1665 'bool', // data type
1666 '0',
1667 xl('Enable Onsite Patient Portal.')
1670 'portal_onsite_address' => array(
1671 xl('Onsite Patient Portal Site Address'),
1672 'text', // data type
1673 'https://your_web_site.com/openemr/patients',
1674 xl('Website link for the Onsite Patient Portal.')
1677 'portal_onsite_document_download' => array(
1678 xl('Enable Onsite Patient Portal Document Download'),
1679 'bool', // data type
1680 '1',
1681 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
1684 'portal_offsite_enable' => array(
1685 xl('Enable Offsite Patient Portal'),
1686 'bool', // data type
1687 '0',
1688 xl('Enable Offsite Patient Portal.')
1691 'portal_offsite_providerid' => array(
1692 xl('Offsite Patient Portal Provider ID'),
1693 'text', // data type
1695 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
1698 'portal_offsite_username' => array(
1699 xl('Offsite Patient Portal Username'),
1700 'text', // data type
1702 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
1705 'portal_offsite_password' => array(
1706 xl('Offsite Patient Portal Password'),
1707 'pwd', // data type
1709 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
1712 'portal_offsite_address' => array(
1713 xl('Offsite Patient Portal Site Address'),
1714 'text', // data type
1715 'https://ssh.mydocsportal.com/provider.php',
1716 xl('Offsite Https link for the Patient Portal.')
1719 'portal_offsite_address_patient_link' => array(
1720 xl('Offsite Patient Portal Site Address (Patient Link)'),
1721 'text', // data type
1722 'https://ssh.mydocsportal.com',
1723 xl('Offsite Https link for the Patient Portal.(Patient Link)')
1726 // Currently the "CMS Portal" supports WordPress. Other Content Management
1727 // Systems may be supported in the future.
1729 'gbl_portal_cms_enable' => array(
1730 xl('Enable CMS Portal'),
1731 'bool', // data type
1732 '0',
1733 xl('Enable support for the open source WordPress Portal by Sunset Systems')
1736 'gbl_portal_cms_address' => array(
1737 xl('CMS Portal Site Address'),
1738 'text', // data type
1739 'https://your_cms_site.com/',
1740 xl('URL for the WordPress site that supports the portal')
1743 'gbl_portal_cms_username' => array(
1744 xl('CMS Portal Username'),
1745 'text', // data type
1747 xl('Login name of WordPress user for portal access')
1750 'gbl_portal_cms_password' => array(
1751 xl('CMS Portal Password'),
1752 'text', // data type
1754 xl('Password for the above user')
1759 // Connectors Tab
1761 'Connectors' => array(
1763 'lab_exchange_enable' => array(
1764 xl('Enable Lab Exchange'),
1765 'bool', // data type
1766 '0',
1767 xl('Enable the Medical Information Integration, LLC Lab Exchange Service.')
1770 'lab_exchange_siteid' => array(
1771 xl('Lab Exchange Site ID'),
1772 'text', // data type
1773 '3',
1774 xl('Site ID for the Medical Information Integration, LLC Lab Exchange Service.')
1777 'lab_exchange_token' => array(
1778 xl('Lab Exchange Token ID'),
1779 'text', // data type
1780 '12345',
1781 xl('Token ID for the Medical Information Integration, LLC Lab Exchange Service.')
1784 'lab_exchange_endpoint' => array(
1785 xl('Lab Exchange Site Address'),
1786 'text', // data type
1787 'https://len.mi-squared.com:29443/len/api',
1788 xl('Contact Medical Information Integration, LLC at http://mi-squared.com for Lab Exchange Service.')
1791 'erx_enable' => array(
1792 xl('Enable NewCrop eRx Service'),
1793 'bool',
1794 '0',
1795 xl('Enable NewCrop eRx Service.') + ' ' +
1796 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing to the NewCrop eRx service.')
1799 'erx_newcrop_path' => array(
1800 xl('NewCrop eRx Site Address'),
1801 'text',
1802 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
1803 xl('URL for NewCrop eRx Site Address.')
1806 'erx_newcrop_path_soap' => array(
1807 xl('NewCrop eRx Web Service Address'),
1808 'text',
1809 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
1810 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
1813 'erx_soap_ttl_allergies' => array(
1814 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
1815 'num',
1816 '21600',
1817 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
1820 'erx_soap_ttl_medications' => array(
1821 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
1822 'num',
1823 '21600',
1824 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
1827 'erx_account_partner_name' => array(
1828 xl('NewCrop eRx Partner Name'),
1829 'text',
1831 xl('Partner Name issued for NewCrop eRx service.')
1834 'erx_account_name' => array(
1835 xl('NewCrop eRx Name'),
1836 'text',
1838 xl('Account Name issued for NewCrop eRx service.')
1841 'erx_account_password' => array(
1842 xl('NewCrop eRx Password'),
1843 'pass',
1845 xl('Account Password issued for NewCrop eRx service.')
1848 'erx_account_id' => array(
1849 xl('NewCrop eRx Account Id'),
1850 'text',
1851 '1',
1852 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
1855 'erx_upload_active' => array(
1856 xl('Only upload active prescriptions'),
1857 'bool',
1858 '0',
1859 xl('Only upload active prescriptions to NewCrop eRx.')
1862 'erx_import_status_message' => array(
1863 xl('Enable NewCrop eRx import status message'),
1864 'bool',
1865 '0',
1866 xl('Enable import status message after visiting NewCrop eRx.')
1869 'erx_medication_display' => array(
1870 xl('Do not display NewCrop eRx Medications uploaded'),
1871 'bool',
1872 '0',
1873 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
1876 'erx_allergy_display' => array(
1877 xl('Do not display NewCrop eRx Allergy uploaded'),
1878 'bool',
1879 '0',
1880 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
1883 'erx_default_patient_country' => array(
1884 xl('NewCrop eRx Default Patient Country'),
1885 array(
1886 '' => '',
1887 'US' => xl('USA'),
1888 'CA' => xl('Canada'),
1889 'MX' => xl('Mexico'),
1892 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
1895 'erx_debug_setting' => array(
1896 xl('NewCrop eRx Debug Setting'),
1897 array(
1898 0 => xl('None'),
1899 1 => xl('Request Only'),
1900 2 => xl('Response Only'),
1901 3 => xl('Request & Response'),
1903 '0',
1904 xl('Log all NewCrop eRx Requests and / or Responses.'),
1907 'phimail_enable' => array(
1908 xl('Enable phiMail Direct Messaging Service'),
1909 'bool', // data type
1910 '0',
1911 xl('Enable phiMail Direct Messaging Service')
1914 'phimail_server_address' => array(
1915 xl('phiMail Server Address'),
1916 'text', // data type
1917 'https://phimail.example.com:32541',
1918 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
1921 'phimail_username' => array(
1922 xl('phiMail Username'),
1923 'text', // data type
1925 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
1928 'phimail_password' => array(
1929 xl('phiMail Password'),
1930 'pass', // data type
1932 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
1935 'phimail_notify' => array(
1936 xl('phiMail notification user'),
1937 'text', // data type
1938 'admin',
1939 xl('This user will receive notification of new incoming Direct messages')
1942 'phimail_interval' => array(
1943 xl('phiMail Message Check Interval (minutes)'),
1944 'num', // data type
1945 '5',
1946 xl('Interval between message checks (set to zero for manual checks only)')
1949 'phimail_ccd_enable' => array(
1950 xl('phiMail Allow CCD Send'),
1951 'bool', // data type
1952 '0',
1953 xl('phiMail Allow CCD Send')
1956 'phimail_ccr_enable' => array(
1957 xl('phiMail Allow CCR Send'),
1958 'bool', // data type
1959 '0',
1960 xl('phiMail Allow CCR Send')
1964 'Rx' => array(
1965 'rx_enable_DEA' => array(
1966 xl('Rx Enable DEA #'),
1967 'bool', // data type
1968 '1',
1969 xl('Rx Enable DEA #')
1971 'rx_show_DEA' => array(
1972 xl('Rx Show DEA #'),
1973 'bool', // data type
1974 '0',
1975 xl('Rx Show DEA #')
1977 'rx_enable_NPI' => array(
1978 xl('Rx Enable NPI'),
1979 'bool', // data type
1980 '0',
1981 xl('Rx Enable NPI')
1983 'rx_show_NPI' => array(
1984 xl('Rx Show NPI'),
1985 'bool', // data type
1986 '0',
1987 xl('Rx Show NPI')
1989 'rx_enable_SLN' => array(
1990 xl('Rx Enable State Lic. #'),
1991 'bool', // data type
1992 '0',
1993 xl('Rx Enable State Lic. #')
1995 'rx_show_SLN' => array(
1996 xl('Rx Show State Lic. #'),
1997 'bool', // data type
1998 '0',
1999 xl('Rx Show State Lic. #')
2001 'rx_paper_size' => array(
2002 xl('Rx Paper Size'), // descriptive name
2003 array(
2004 'LETTER' => xl('Letter Paper Size'),
2005 'LEGAL' => xl('Legal Paper Size'),
2006 'FOLIO' => xl('Folio Paper Size'),
2007 'EXECUTIVE' => xl('Executive Paper Size'),
2008 '4A0' => ('4A0' . " " . xl('Paper Size')),
2009 '2A0' => ('2A0' . " " . xl('Paper Size')),
2010 'A0' => ('A0' . " " . xl('Paper Size')),
2011 'A1' => ('A1' . " " . xl('Paper Size')),
2012 'A2' => ('A2' . " " . xl('Paper Size')),
2013 'A3' => ('A3' . " " . xl('Paper Size')),
2014 'A4' => ('A4' . " " . xl('Paper Size')),
2015 'A5' => ('A5' . " " . xl('Paper Size')),
2016 'A6' => ('A6' . " " . xl('Paper Size')),
2017 'A7' => ('A7' . " " . xl('Paper Size')),
2018 'A8' => ('A8' . " " . xl('Paper Size')),
2019 'A9' => ('A9' . " " . xl('Paper Size')),
2020 'A10' => ('A10' . " " . xl('Paper Size')),
2021 'B0' => ('B0' . " " . xl('Paper Size')),
2022 'B1' => ('B1' . " " . xl('Paper Size')),
2023 'B2' => ('B2' . " " . xl('Paper Size')),
2024 'B3' => ('B3' . " " . xl('Paper Size')),
2025 'B4' => ('B4' . " " . xl('Paper Size')),
2026 'B5' => ('B5' . " " . xl('Paper Size')),
2027 'B6' => ('B6' . " " . xl('Paper Size')),
2028 'B7' => ('B7' . " " . xl('Paper Size')),
2029 'B8' => ('B8' . " " . xl('Paper Size')),
2030 'B9' => ('B9' . " " . xl('Paper Size')),
2031 'B10' => ('B10' . " " . xl('Paper Size')),
2032 'C0' => ('C0' . " " . xl('Paper Size')),
2033 'C1' => ('C1' . " " . xl('Paper Size')),
2034 'C2' => ('C2' . " " . xl('Paper Size')),
2035 'C3' => ('C3' . " " . xl('Paper Size')),
2036 'C4' => ('C4' . " " . xl('Paper Size')),
2037 'C5' => ('C5' . " " . xl('Paper Size')),
2038 'C6' => ('C6' . " " . xl('Paper Size')),
2039 'C7' => ('C7' . " " . xl('Paper Size')),
2040 'C8' => ('C8' . " " . xl('Paper Size')),
2041 'C9' => ('C9' . " " . xl('Paper Size')),
2042 'C10' => ('C10' . " " . xl('Paper Size')),
2043 'RA0' => ('RA0' . " " . xl('Paper Size')),
2044 'RA1' => ('RA1' . " " . xl('Paper Size')),
2045 'RA2' => ('RA2' . " " . xl('Paper Size')),
2046 'RA3' => ('RA3' . " " . xl('Paper Size')),
2047 'RA4' => ('RA4' . " " . xl('Paper Size')),
2048 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2049 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2050 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2051 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2052 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2054 'LETTER', // default = tree menu
2055 xl('Rx Paper Size')
2057 'rx_left_margin' => array(
2058 xl('Rx Left Margin (px)'),
2059 'num',
2060 '30',
2061 xl('Rx Left Margin (px)')
2063 'rx_right_margin' => array(
2064 xl('Rx Right Margin (px)'),
2065 'num',
2066 '30',
2067 xl('Rx Right Margin (px)')
2069 'rx_top_margin' => array(
2070 xl('Rx Top Margin (px)'),
2071 'num',
2072 '72',
2073 xl('Rx Top Margin (px)')
2075 'rx_bottom_margin' => array(
2076 xl('Rx Bottom Margin (px)'),
2077 'num',
2078 '30',
2079 xl('Rx Bottom Margin (px)')
2083 'PDF' => array (
2084 'pdf_layout' => array (
2085 xl('Layout'),
2086 array(
2087 'P' => xl('Portrait'),
2088 'L' => xl('Landscape')
2090 'P', //defaut
2091 xl("Choose Layout Direction"),
2093 'pdf_language' => array (
2094 xl('PDF Language'),
2095 array(
2096 'aa' => xl('Afar'),
2097 'af' => xl('Afrikaans'),
2098 'ak' => xl('Akan'),
2099 'sq' => xl('Albanian'),
2100 'am' => xl('Amharic'),
2101 'ar' => xl('Arabic'),
2102 'an' => xl('Aragonese'),
2103 'hy' => xl('Armenian'),
2104 'as' => xl('Assamese'),
2105 'av' => xl('Avaric'),
2106 'ae' => xl('Avestan'),
2107 'ay' => xl('Aymara'),
2108 'az' => xl('Azerbaijani'),
2109 'bm' => xl('Bambara'),
2110 'ba' => xl('Bashkir'),
2111 'eu' => xl('Basque'),
2112 'be' => xl('Belarusian'),
2113 'bn' => xl('Bengali- Bangla'),
2114 'bh' => xl('Bihari'),
2115 'bi' => xl('Bislama'),
2116 'bs' => xl('Bosnian'),
2117 'br' => xl('Breton'),
2118 'bg' => xl('Bulgarian'),
2119 'my' => xl('Burmese'),
2120 'ca' => xl('Catalan- Valencian'),
2121 'ch' => xl('Chamorro'),
2122 'ce' => xl('Chechen'),
2123 'ny' => xl('Chichewa- Chewa- Nyanja'),
2124 'zh' => xl('Chinese'),
2125 'cv' => xl('Chuvash'),
2126 'kw' => xl('Cornish'),
2127 'co' => xl('Corsican'),
2128 'cr' => xl('Cree'),
2129 'hr' => xl('Croatian'),
2130 'cs' => xl('Czech'),
2131 'da' => xl('Danish'),
2132 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2133 'nl' => xl('Dutch'),
2134 'dz' => xl('Dzongkha'),
2135 'en' => xl('English'),
2136 'eo' => xl('Esperanto'),
2137 'et' => xl('Estonian'),
2138 'ee' => xl('Ewe'),
2139 'fo' => xl('Faroese'),
2140 'fj' => xl('Fijian'),
2141 'fi' => xl('Finnish'),
2142 'fr' => xl('French'),
2143 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2144 'gl' => xl('Galician'),
2145 'ka' => xl('Georgian'),
2146 'de' => xl('German'),
2147 'el' => xl('Greek, Modern'),
2148 'gn' => xl('Guaraní'),
2149 'gu' => xl('Gujarati'),
2150 'ht' => xl('Haitian- Haitian Creole'),
2151 'ha' => xl('Hausa'),
2152 'he' => xl('Hebrew (modern)'),
2153 'hz' => xl('Herero'),
2154 'hi' => xl('Hindi'),
2155 'ho' => xl('Hiri Motu'),
2156 'hu' => xl('Hungarian'),
2157 'ia' => xl('Interlingua'),
2158 'id' => xl('Indonesian'),
2159 'ie' => xl('Interlingue'),
2160 'ga' => xl('Irish'),
2161 'ig' => xl('Igbo'),
2162 'ik' => xl('Inupiaq'),
2163 'io' => xl('Ido'),
2164 'is' => xl('Icelandic'),
2165 'it' => xl('Italian'),
2166 'iu' => xl('Inuktitut'),
2167 'ja' => xl('Japanese'),
2168 'jv' => xl('Javanese'),
2169 'kl' => xl('Kalaallisut, Greenlandic'),
2170 'kn' => xl('Kannada'),
2171 'kr' => xl('Kanuri'),
2172 'ks' => xl('Kashmiri'),
2173 'kk' => xl('Kazakh'),
2174 'km' => xl('Khmer'),
2175 'ki' => xl('Kikuyu, Gikuyu'),
2176 'rw' => xl('Kinyarwanda'),
2177 'ky' => xl('Kyrgyz'),
2178 'kv' => xl('Komi'),
2179 'kg' => xl('Kongo'),
2180 'ko' => xl('Korean'),
2181 'ku' => xl('Kurdish'),
2182 'kj' => xl('Kwanyama, Kuanyama'),
2183 'la' => xl('Latin'),
2184 'lb' => xl('Luxembourgish, Letzeburgesch'),
2185 'lg' => xl('Ganda'),
2186 'li' => xl('Limburgish, Limburgan, Limburger'),
2187 'ln' => xl('Lingala'),
2188 'lo' => xl('Lao'),
2189 'lt' => xl('Lithuanian'),
2190 'lu' => xl('Luba-Katanga'),
2191 'lv' => xl('Latvian'),
2192 'gv' => xl('Manx'),
2193 'mk' => xl('Macedonian'),
2194 'mg' => xl('Malagasy'),
2195 'ms' => xl('Malay'),
2196 'ml' => xl('Malayalam'),
2197 'mt' => xl('Maltese'),
2198 'mi' => xl('Māori'),
2199 'mr' => xl('Marathi (Marāṭhī)'),
2200 'mh' => xl('Marshallese'),
2201 'mn' => xl('Mongolian'),
2202 'na' => xl('Nauru'),
2203 'nv' => xl('Navajo, Navaho'),
2204 'nb' => xl('Norwegian Bokmål'),
2205 'nd' => xl('North Ndebele'),
2206 'ne' => xl('Nepali'),
2207 'ng' => xl('Ndonga'),
2208 'nn' => xl('Norwegian Nynorsk'),
2209 'no' => xl('Norwegian'),
2210 'ii' => xl('Nuosu'),
2211 'nr' => xl('South Ndebele'),
2212 'oc' => xl('Occitan'),
2213 'oj' => xl('Ojibwe, Ojibwa'),
2214 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2215 'om' => xl('Oromo'),
2216 'or' => xl('Oriya'),
2217 'os' => xl('Ossetian, Ossetic'),
2218 'pa' => xl('Panjabi, Punjabi'),
2219 'pi' => xl('Pāli'),
2220 'fa' => xl('Persian (Farsi)'),
2221 'pl' => xl('Polish'),
2222 'ps' => xl('Pashto, Pushto'),
2223 'pt' => xl('Portuguese'),
2224 'qu' => xl('Quechua'),
2225 'rm' => xl('Romansh'),
2226 'rn' => xl('Kirundi'),
2227 'ro' => xl('Romanian'),
2228 'ru' => xl('Russian'),
2229 'sa' => xl('Sanskrit (Saṁskṛta)'),
2230 'sc' => xl('Sardinian'),
2231 'sd' => xl('Sindhi'),
2232 'se' => xl('Northern Sami'),
2233 'sm' => xl('Samoan'),
2234 'sg' => xl('Sango'),
2235 'sr' => xl('Serbian'),
2236 'gd' => xl('Scottish Gaelic- Gaelic'),
2237 'sn' => xl('Shona'),
2238 'si' => xl('Sinhala, Sinhalese'),
2239 'sk' => xl('Slovak'),
2240 'sl' => xl('Slovene'),
2241 'so' => xl('Somali'),
2242 'st' => xl('Southern Sotho'),
2243 'es' => xl('Spanish- Castilian'),
2244 'su' => xl('Sundanese'),
2245 'sw' => xl('Swahili'),
2246 'ss' => xl('Swati'),
2247 'sv' => xl('Swedish'),
2248 'ta' => xl('Tamil'),
2249 'te' => xl('Telugu'),
2250 'tg' => xl('Tajik'),
2251 'th' => xl('Thai'),
2252 'ti' => xl('Tigrinya'),
2253 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2254 'tk' => xl('Turkmen'),
2255 'tl' => xl('Tagalog'),
2256 'tn' => xl('Tswana'),
2257 'to' => xl('Tonga (Tonga Islands)'),
2258 'tr' => xl('Turkish'),
2259 'ts' => xl('Tsonga'),
2260 'tt' => xl('Tatar'),
2261 'tw' => xl('Twi'),
2262 'ty' => xl('Tahitian'),
2263 'ug' => xl('Uyghur, Uighur'),
2264 'uk' => xl('Ukrainian'),
2265 'ur' => xl('Urdu'),
2266 'uz' => xl('Uzbek'),
2267 've' => xl('Venda'),
2268 'vi' => xl('Vietnamese'),
2269 'vo' => xl('Volapük'),
2270 'wa' => xl('Walloon'),
2271 'cy' => xl('Welsh'),
2272 'wo' => xl('Wolof'),
2273 'fy' => xl('Western Frisian'),
2274 'xh' => xl('Xhosa'),
2275 'yi' => xl('Yiddish'),
2276 'yo' => xl('Yoruba'),
2277 'za' => xl('Zhuang, Chuang'),
2278 'zu' => xl('Zulu'),
2280 'en', // default English
2281 xl('Choose PDF languange Preference'),
2283 'pdf_size' => array(
2284 xl('Paper Size'), // Descriptive Name
2285 array(
2286 'LETTER' => xl('Letter Paper Size'),
2287 'LEGAL' => xl('Legal Paper Size'),
2288 'FOLIO' => xl('Folio Paper Size'),
2289 'EXECUTIVE' => xl('Executive Paper Size'),
2290 '4A0' => ('4A0' . " " . xl('Paper Size')),
2291 '2A0' => ('2A0' . " " . xl('Paper Size')),
2292 'A0' => ('A0' . " " . xl('Paper Size')),
2293 'A1' => ('A1' . " " . xl('Paper Size')),
2294 'A2' => ('A2' . " " . xl('Paper Size')),
2295 'A3' => ('A3' . " " . xl('Paper Size')),
2296 'A4' => ('A4' . " " . xl('Paper Size')),
2297 'A5' => ('A5' . " " . xl('Paper Size')),
2298 'A6' => ('A6' . " " . xl('Paper Size')),
2299 'A7' => ('A7' . " " . xl('Paper Size')),
2300 'A8' => ('A8' . " " . xl('Paper Size')),
2301 'A9' => ('A9' . " " . xl('Paper Size')),
2302 'A10' => ('A10' . " " . xl('Paper Size')),
2303 'B0' => ('B0' . " " . xl('Paper Size')),
2304 'B1' => ('B1' . " " . xl('Paper Size')),
2305 'B2' => ('B2' . " " . xl('Paper Size')),
2306 'B3' => ('B3' . " " . xl('Paper Size')),
2307 'B4' => ('B4' . " " . xl('Paper Size')),
2308 'B5' => ('B5' . " " . xl('Paper Size')),
2309 'B6' => ('B6' . " " . xl('Paper Size')),
2310 'B7' => ('B7' . " " . xl('Paper Size')),
2311 'B8' => ('B8' . " " . xl('Paper Size')),
2312 'B9' => ('B9' . " " . xl('Paper Size')),
2313 'B10' => ('B10' . " " . xl('Paper Size')),
2314 'C0' => ('C0' . " " . xl('Paper Size')),
2315 'C1' => ('C1' . " " . xl('Paper Size')),
2316 'C2' => ('C2' . " " . xl('Paper Size')),
2317 'C3' => ('C3' . " " . xl('Paper Size')),
2318 'C4' => ('C4' . " " . xl('Paper Size')),
2319 'C5' => ('C5' . " " . xl('Paper Size')),
2320 'C6' => ('C6' . " " . xl('Paper Size')),
2321 'C7' => ('C7' . " " . xl('Paper Size')),
2322 'C8' => ('C8' . " " . xl('Paper Size')),
2323 'C9' => ('C9' . " " . xl('Paper Size')),
2324 'C10' => ('C10' . " " . xl('Paper Size')),
2325 'RA0' => ('RA0' . " " . xl('Paper Size')),
2326 'RA1' => ('RA1' . " " . xl('Paper Size')),
2327 'RA2' => ('RA2' . " " . xl('Paper Size')),
2328 'RA3' => ('RA3' . " " . xl('Paper Size')),
2329 'RA4' => ('RA4' . " " . xl('Paper Size')),
2330 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2331 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2332 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2333 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2334 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2336 'LETTER',
2337 xl('Choose Paper Size')
2339 'pdf_left_margin' => array(
2340 xl('Left Margin (mm)'),
2341 'num',
2342 '5',
2343 xl('Left Margin (mm)')
2345 'pdf_right_margin' => array(
2346 xl('Right Margin (mm)'),
2347 'num',
2348 '5',
2349 xl('Right Margin (mm)')
2351 'pdf_top_margin' => array(
2352 xl('Top Margin (mm)'),
2353 'num',
2354 '5',
2355 xl('Top Margin (mm)')
2357 'pdf_bottom_margin' => array(
2358 xl('Bottom Margin (px)'),
2359 'num',
2360 '8',
2361 xl('Bottom Margin (px)')
2363 'pdf_output' => array (
2364 xl('Output Type'),
2365 array(
2366 'D' => xl('Download'),
2367 'I' => xl('Inline')
2369 'D', //defaut
2370 xl("Choose Download or Display Inline"),
2373 'chart_label_type' => array(
2374 xl('Patient Label Type'),
2375 array(
2376 '0' => xl('None'),
2377 '1' => '5160',
2378 '2' => '5161',
2379 '3' => '5162'
2381 '1', // default
2382 xl('Avery Label type for printing patient labels from popups in left nav screen'),
2385 'barcode_label_type' => array(
2386 xl('Barcode Label Type'),
2387 array(
2388 '0' => xl('None'),
2389 '1' => 'std25',
2390 '2' => 'int25',
2391 '3' => 'ean8',
2392 '4' => 'ean13',
2393 '5' => 'upc',
2394 '6' => 'code11',
2395 '7' => 'code39',
2396 '8' => 'code93',
2397 '9' => 'code128',
2398 '10' => 'codabar',
2399 '11' => 'msi',
2400 '12' => 'datamatrix'
2402 '9', // default = None
2403 xl('Barcode type for printing barcode labels from popups in left nav screen.')
2406 'addr_label_type' => array(
2407 xl('Print Patient Address Label'),
2408 'bool', // data type
2409 '1', // default = false
2410 xl('Select to print patient address labels from popups in left nav screen.')