Merge pull request #1417 from priya-anand/patch-5
[openemr.git] / library / globals.inc.php
blobde44d51dd3cb3d95a3945cbf6369fa29ee36599c
1 <?php
2 // Copyright (C) 2010-2015 Rod Roark <rod@sunsetsystems.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 // $GLOBALS['print_command'] is the
10 // Print command for spooling to printers, used by statements.inc.php
11 // This is the command to be used for printing (without the filename).
12 // The word following "-P" should be the name of your printer. This
13 // example is designed for 8.5x11-inch paper with 1-inch margins,
14 // 10 CPI, 6 LPI, 65 columns, 54 lines per page.
16 // IF lpr services are installed on Windows this setting will be similar
17 // Otherwise configure it as needed (print /d:PRN) might be an option for Windows parallel printers
19 // Current supported languages: // Allow capture of term for translation:
20 // Albanian // xl('Albanian')
21 // Amharic // xl('Amharic')
22 // Arabic // xl('Arabic')
23 // Armenian // xl('Armenian')
24 // Bahasa Indonesia // xl('Bahasa Indonesia')
25 // Bengali // xl('Bengali')
26 // Bosnian // xl('Bosnian')
27 // Chinese (Simplified) // xl('Chinese (Simplified)')
28 // Chinese (Traditional) // xl('Chinese (Traditional)')
29 // Croatian // xl('Croatian')
30 // Czech // xl('Czech')
31 // Danish // xl('Danish')
32 // Dutch // xl('Dutch')
33 // English (Indian) // xl('English (Indian)')
34 // English (Standard) // xl('English (Standard)')
35 // Estonian // xl('Estonian')
36 // Finnish // xl('Finnish')
37 // French // xl('French (Standard)')
38 // French // xl('French (Canadian)')
39 // Georgian // xl('Georgian')
40 // German // xl('German')
41 // Greek // xl('Greek')
42 // Hebrew // xl('Hebrew')
43 // Hindi // xl('Hindi')
44 // Hungarian // xl('Hungarian')
45 // Italian // xl('Italian')
46 // Japanese // xl('Japanese')
47 // Korean // xl('Korean')
48 // Lithuanian // xl('Lithuanian')
49 // Marathi // xl('Marathi')
50 // Mongolian // xl('Mongolian')
51 // Norwegian // xl('Norwegian')
52 // Persian // xl('Persian')
53 // Polish // xl('Polish')
54 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
55 // Portuguese (European) // xl('Portuguese (European)')
56 // Romanian // xl('Romanian')
57 // Russian // xl('Russian')
58 // Serbian // xl('Serbian')
59 // Sinhala // xl('Sinhala')
60 // Slovak // xl('Slovak')
61 // Somali // xl('Somali')
62 // Spanish (Latin American) // xl('Spanish (Latin American)')
63 // Spanish (Spain) // xl('Spanish (Spain)')
64 // Swedish // xl('Swedish')
65 // Tamil // xl('Tamil')
66 // Thai // xl('Thai')
67 // Turkish // xl('Turkish')
68 // Ukrainian // xl('Ukrainian')
69 // Urdu // xl('Urdu')
70 // Vietnamese // xl('Vietnamese')
72 // OS-dependent stuff.
73 if (stristr(PHP_OS, 'WIN')) {
74 // MS Windows
75 $mysql_bin_dir = 'C:/xampp/mysql/bin';
76 $perl_bin_dir = 'C:/xampp/perl/bin';
77 $temporary_files_dir = 'C:/windows/temp';
78 $backup_log_dir = 'C:/windows/temp';
79 } else {
80 // Everything else
81 $mysql_bin_dir = '/usr/bin';
82 $perl_bin_dir = '/usr/bin';
83 $temporary_files_dir = '/tmp';
84 $backup_log_dir = '/tmp';
87 // Language constant declarations:
88 // xl('Appearance')
89 // xl('Locale')
90 // xl('Features')
91 // xl('Calendar')
92 // xl('Security')
93 // xl('Notifications')
94 // xl('Miscellaneous')
96 // List of user specific tabs and globals
97 $USER_SPECIFIC_TABS = array('Appearance',
98 'Locale',
99 'Report',
100 'Calendar',
101 'CDR',
102 'Connectors');
103 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
104 'default_second_tab',
105 'new_tabs_layout',
106 'theme_tabs_layout',
107 'css_header',
108 'menu_styling_vertical',
109 'default_encounter_view',
110 'gbl_pt_list_page_size',
111 'gbl_pt_list_new_window',
112 'units_of_measurement',
113 'us_weight_format',
114 'date_display_format',
115 'time_display_format',
116 'ledger_begin_date',
117 'print_next_appointment_on_ledger',
118 'calendar_view_type',
119 'event_color',
120 'pat_trkr_timer',
121 'ptkr_visit_reason',
122 'checkout_roll_off',
123 'patient_birthday_alert',
124 'patient_birthday_alert_manual_off',
125 'erx_import_status_message');
127 // Gets array of time zones supported by PHP.
129 function gblTimeZones()
131 $zones = timezone_identifiers_list();
132 $arr = array('' => xl('Unassigned'));
133 foreach ($zones as $zone) {
134 $arr[$zone] = str_replace('_', ' ', $zone);
137 return $arr;
140 $GLOBALS_METADATA = array(
142 // Appearance Tab
144 'Appearance' => array(
146 'default_top_pane' => array(
147 xl('Main Top Pane Screen(Or Default First Tab)'), // descriptive name
148 array(
149 'main_info.php' => xl('Calendar Screen'),
150 '../new/new.php' => xl('Patient Search/Add Screen'),
151 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
152 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
153 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen')
155 'main_info.php', // default = calendar
156 xl('Main Top Pane Screen(Or Default First Tab)')
159 'default_second_tab' => array(
160 xl('Default Second Tab'), // descriptive name
161 array(
162 '../../interface/main/messages/messages.php?form_active=1' => xl('Messages Screen'),
163 'main_info.php' => xl('Calendar Screen'),
164 '../new/new.php' => xl('Patient Search/Add Screen'),
165 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
166 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
168 '../../interface/main/messages/messages.php?form_active=1', // default = messages
169 xl('Default Second Tab')
172 'new_tabs_layout' => array(
173 xl('Layout (need to logout/login after change this setting)'),
174 array(
175 '0' => xl('Frame'),
176 '1' => xl('Tabs'),
178 '1',
179 xl('Choose the layout (need to logout and then login to see this new setting).')
182 'theme_tabs_layout' => array(
183 xl('Tabs Layout Theme (need to logout/login after change this setting)'),
184 'tabs_css',
185 'tabs_style_full.css',
186 xl('Theme of the tabs layout (need to logout and then login to see this new setting). Note this is only applicable if use the Light or Manila general theme below.')
189 'css_header' => array(
190 xl('General Theme (need to logout/login after change this setting)'),
191 'css',
192 'style_light.css',
193 xl('Pick a general theme (need to logout/login after change this setting).')
196 'font-family' => [
197 xl('Default font (need to logout/login after change this setting)'),
199 '__default__' => 'Use Theme Font',
200 'Arial, Helvetica, sans-serif' => "Arial",
201 '"Arial Black", Gadget, sans-serif' => "Arial Black",
202 'Impact, Charcoal, sans-serif' => "Impact",
203 '"Lucida Sans Unicode", "Lucida Grande", sans-serif' => "Lucida Sans",
204 'Tahoma, Geneva, sans-serif' => "Tahoma",
205 '"Trebuchet MS", Helvetica, sans-serif' => "Trebuchet MS",
206 'Verdana, Geneva, sans-serif' => "Verdana",
207 'lato' => "Lato",
209 '__default__',
210 xl('Select the default font'),
213 'font-size' => [
214 xl('Default font size (need to logout/login after change this setting)'),
216 '__default__' => 'Use Theme Font Size',
217 '10px' => '10px',
218 '12px' => '12px',
219 '14px' => '14px',
220 '16px' => '16px',
221 '18px' => '18px',
223 '__default__',
224 xl("Select the default font size"),
227 'menu_styling_vertical' => array(
228 xl('Vertical Menu Style'),
229 array(
230 '0' => xl('Tree'),
231 '1' => xl('Sliding'),
233 '1',
234 xl('Vertical Menu Style')
237 'default_encounter_view' => array(
238 xl('Default Encounter View'), // descriptive name
239 array(
240 '0' => xl('Clinical View'),
241 '1' => xl('Billing View'),
243 '0', // default = tree menu
244 xl('Choose your default encounter view')
247 'gbl_nav_area_width' => array(
248 xl('Navigation Area Width'),
249 'num',
250 '175',
251 xl('Width in pixels of the left navigation frame.')
254 'openemr_name' => array(
255 xl('Application Title'),
256 'text',
257 'OpenEMR',
258 xl('Application name for login page and main window title.')
261 'enable_group_therapy' => array(
262 xl('Enable Group Therapy'),
263 'bool', // data type
264 '0', // default = false
265 xl('Enables groups module in system.')
268 'full_new_patient_form' => array(
269 xl('New Patient Form'),
271 array(
272 '0' => xl('Old-style static form without search or duplication check'),
273 '1' => xl('All demographics fields, with search and duplication check'),
274 '2' => xl('Mandatory or specified fields only, search and dup check'),
275 '3' => xl('Mandatory or specified fields only, dup check, no search'),
276 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
278 '1', // default
279 xl('Style of form used for adding new patients')
282 'gbl_edit_patient_form' => array(
283 xl('Modify Patient Form'),
285 array(
286 '0' => xl('Standard check'),
287 '1' => xl('Zend Module check in addition to standard check')
289 '0', // default
290 xl('Validation mechanism for when modifying patient demographics.')
293 'patient_search_results_style' => array(
294 xl('Patient Search Results Style'),
295 array(
296 '0' => xl('Encounter statistics'),
297 '1' => xl('Mandatory and specified fields'),
299 '0', // default
300 xl('Type of columns displayed for patient search results')
303 'gbl_tall_nav_area' => array(
304 xl('Tall Navigation Area'),
305 'bool', // data type
306 '0', // default = false
307 xl('Navigation area uses full height of frameset')
310 'gbl_nav_visit_forms' => array(
311 xl('Navigation Area Visit Forms'),
312 'bool', // data type
313 '1', // default = true
314 xl('Navigation area includes encounter forms')
317 'simplified_demographics' => array(
318 xl('Simplified Demographics'),
319 'bool', // data type
320 '0', // default = false
321 xl('Omit insurance and some other things from the demographics form')
324 'simplified_prescriptions' => array(
325 xl('Simplified Prescriptions'),
326 'bool', // data type
327 '0', // default = false
328 xl('Omit form, route and interval which then become part of dosage')
331 'simplified_copay' => array(
332 xl('Simplified Co-Pay'),
333 'bool', // data type
334 '0', // default = false
335 xl('Omit method of payment from the co-pay panel')
338 'use_charges_panel' => array(
339 xl('Use Charges Panel'),
340 'bool', // data type
341 '0', // default = false
342 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
345 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
346 'enable_fees_in_left_menu' => array(
347 xl('Enable Fees Submenu'),
348 'bool', // data type
349 '1', // default = true
350 xl('Enable Fees Submenu')
352 'enable_batch_payment' => array(
353 xl('Enable Batch Payment'),
354 'bool', // data type
355 '1', // default = true
356 xl('Enable Batch Payment')
358 'enable_posting' => array(
359 xl('Enable Posting'),
360 'bool', // data type
361 '1', // default = true
362 xl('Enable Posting')
364 // EDI history 2012-09-13
365 'enable_edihistory_in_left_menu' => array(
366 xl('Enable EDI History'),
367 'bool', // data type
368 '1', // default = true
369 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
372 'online_support_link' => array(
373 xl('Online Support Link'),
374 'text', // data type
375 'http://open-emr.org/',
376 xl('URL for OpenEMR support.')
379 'support_phone_number' => array(
380 xl('Support Phone Number'),
381 'text',
383 xl('Phone Number for Vendor Support that Appears on the About Page.')
386 'encounter_page_size' => array(
387 xl('Encounter Page Size'),
388 array(
389 '0' => xl('Show All'),
390 '5' => '5',
391 '10' => '10',
392 '15' => '15',
393 '20' => '20',
394 '25' => '25',
395 '50' => '50',
397 '20',
398 xl('Number of encounters to display per page.')
401 'gbl_pt_list_page_size' => array(
402 xl('Patient List Page Size'),
403 array(
404 '10' => '10',
405 '25' => '25',
406 '50' => '50',
407 '100' => '100',
409 '10',
410 xl('Number of patients to display per page in the patient list.')
413 'gbl_pt_list_new_window' => array(
414 xl('Patient List New Window'),
415 'bool', // data type
416 '0', // default = false
417 xl('Default state of New Window checkbox in the patient list.')
420 'gbl_vitals_options' => array(
421 xl('Vitals Form Options'),
422 array(
423 '0' => xl('Standard'),
424 '1' => xl('Omit circumferences'),
426 '0', // default
427 xl('Special treatment for the Vitals form')
430 'insurance_information' => array(
431 xl('Show Additional Insurance Information'), // descriptive name
432 array(
433 '0' => xl('None'),
434 '1' => xl('Address Only'),
435 '2' => xl('Address and Postal Code'),
436 '3' => xl('Address and State'),
437 '4' => xl('Address, State and Postal Code'),
438 '5' => xl('Address, City, State and Postal Code'),
439 '6' => xl('Postal Code and Box Number')
441 '5', // default
442 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
445 'gb_how_sort_list' => array(
446 xl('How to sort a drop-lists'),
447 array(
448 '0' => xl('Sort by seq'),
449 '1' => xl('Sort alphabetically')
451 '0',
452 xl('What kind of sorting will be in the drop lists.')
455 'show_label_login' => array(
456 xl('Show Title on Login'),
457 'bool', // data type
458 '0', // default = false
459 xl('Show Title on Login')
462 'extra_logo_login' => array(
463 xl('Show Extra Logo on Login'),
464 'bool', // data type
465 '0', // default = false
466 xl('Show Extra Logo on Login')
469 'tiny_logo_1' => array(
470 xl('Show Mini Logo 1'),
471 'bool', // data type
472 '0', // default = false
473 xl('Show Mini Logo 1')
476 'tiny_logo_2' => array(
477 xl('Show Mini Logo 2'),
478 'bool', // data type
479 '0', // default = false
480 xl('Show Mini Logo 2')
485 // Locale Tab
487 'Locale' => array(
489 'language_default' => array(
490 xl('Default Language'),
491 'lang', // data type
492 'English (Standard)', // default = english
493 xl('Default language if no other is allowed or chosen.')
496 'language_menu_showall' => array(
497 xl('All Languages Allowed'),
498 'bool', // data type
499 '1', // default = true
500 xl('Allow all available languages as choices on menu at login.')
503 'language_menu_other' => array(
504 xl('Allowed Languages'),
505 'm_lang', // data type
506 '', // default = none
507 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
510 'allow_debug_language' => array(
511 xl('Allow Debugging Language'),
512 'bool', // data type
513 '1', // default = true during development and false for production releases
514 xl('This will allow selection of the debugging (\'dummy\') language.')
517 'translate_no_safe_apostrophe' => array(
518 xl('Do Not Use Safe Apostrophe'),
519 'bool', // data type
520 '0', // default = false
521 xl('This will turn off use of safe apostrophe, which is done by converting \' and " to `.(it is highly recommended that this setting is turned off and that safe apostrophe\'s are used)')
524 'translate_layout' => array(
525 xl('Translate Layouts'),
526 'bool', // data type
527 '1', // default = true
528 xl('Is text from form layouts to be translated?')
531 'translate_lists' => array(
532 xl('Translate Lists'),
533 'bool', // data type
534 '1', // default = true
535 xl('Is text from lists to be translated?')
538 'translate_gacl_groups' => array(
539 xl('Translate Access Control Groups'),
540 'bool', // data type
541 '1', // default = true
542 xl('Are access control group names to be translated?')
545 'translate_form_titles' => array(
546 xl('Translate Patient Note Titles'),
547 'bool', // data type
548 '1', // default = true
549 xl('Are patient note titles to be translated?')
552 'translate_document_categories' => array(
553 xl('Translate Document Categories'),
554 'bool', // data type
555 '1', // default = true
556 xl('Are document category names to be translated?')
559 'translate_appt_categories' => array(
560 xl('Translate Appointment Categories'),
561 'bool', // data type
562 '1', // default = true
563 xl('Are appointment category names to be translated?')
566 'units_of_measurement' => array(
567 xl('Units for Visit Forms'),
568 array(
569 '1' => xl('Show both US and metric (main unit is US)'),
570 '2' => xl('Show both US and metric (main unit is metric)'),
571 '3' => xl('Show US only'),
572 '4' => xl('Show metric only'),
574 '1', // default = Both/US
575 xl('Applies to the Vitals form and Growth Chart')
578 'us_weight_format' => array(
579 xl('Display Format for US Weights'),
580 array(
581 '1' => xl('Show pounds as decimal value'),
582 '2' => xl('Show pounds and ounces')
584 '1',
585 xl('Applies to Vitals form')
588 'phone_country_code' => array(
589 xl('Telephone Country Code'),
590 'num',
591 '1', // default = North America
592 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
595 'date_display_format' => array(
596 xl('Date Display Format'),
597 array(
598 '0' => xl('YYYY-MM-DD'),
599 '1' => xl('MM/DD/YYYY'),
600 '2' => xl('DD/MM/YYYY'),
602 '0',
603 xl('Format used to display most dates.')
606 'time_display_format' => array(
607 xl('Time Display Format'),
608 array(
609 '0' => xl('24 hr'),
610 '1' => xl('12 hr'),
612 '0',
613 xl('Format used to display most times.')
616 'gbl_time_zone' => array(
617 xl('Time Zone'),
618 gblTimeZones(),
620 xl('If unassigned will default to php.ini setting for date.timezone.')
623 'currency_decimals' => array(
624 xl('Currency Decimal Places'),
625 array(
626 '0' => xl('0'),
627 '1' => xl('1'),
628 '2' => xl('2'),
630 '2',
631 xl('Number of digits after decimal point for currency, usually 0 or 2.')
634 'currency_dec_point' => array(
635 xl('Currency Decimal Point Symbol'),
636 array(
637 '.' => xl('Period'),
638 ',' => xl('Comma'),
640 '.',
641 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
644 'currency_thousands_sep' => array(
645 xl('Currency Thousands Separator'),
646 array(
647 ',' => xl('Comma'),
648 '.' => xl('Period'),
649 ' ' => xl('Space'),
650 '' => xl('None'),
652 ',',
653 xl('Symbol used to separate thousands for currency.')
656 'gbl_currency_symbol' => array(
657 xl('Currency Designator'),
658 'text', // data type
659 '$', // default
660 xl('Code or symbol to indicate currency')
662 'age_display_format' => array(xl('Age Display Format'),
663 array(
664 '0' => xl('Years or months'),
665 '1' => xl('Years, months and days')
667 '0',
668 xl('Format for age display')
670 'age_display_limit' => array(
671 xl('Age in Years for Display Format Change'),
672 'num',
673 '3',
674 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
676 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
677 'weekend_days' => array(
678 xl('Your weekend days'),
679 array(
680 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
681 '0' => xl('Sunday'),
682 '5' => xl('Friday'),
683 '6' => xl('Saturday'),
684 '5,6' => xl('Friday') . ' - ' . xl('Saturday'),
686 '6,0'
687 , xl('which days are your weekend days?')
692 // Features Tab
694 'Features' => array(
696 'specific_application' => array(
697 xl('Specific Application'),
698 array(
699 '0' => xl('None'),
700 '2' => xl('IPPF'),
701 '3' => xl('Weight loss clinic'),
703 '0', // default
704 xl('Indicator for specialized usage')
707 'inhouse_pharmacy' => array(
708 xl('Drugs and Products'),
709 array(
710 '0' => xl('Do not inventory and sell any products'),
711 '1' => xl('Inventory and sell drugs only'),
712 '2' => xl('Inventory and sell both drugs and non-drug products'),
713 '3' => xl('Products but no prescription drugs and no templates'),
715 '0', // default
716 xl('Option to support inventory and sales of products')
719 'default_visit_category' => [
720 xl('Default Visit Category'),
721 'default_visit_category',
722 '_blank',
723 xl('Define a default visit category'),
726 'disable_chart_tracker' => array(
727 xl('Disable Chart Tracker'),
728 'bool', // data type
729 '0', // default = false
730 xl('Removes the Chart Tracker feature')
733 'disable_immunizations' => array(
734 xl('Disable Immunizations'),
735 'bool', // data type
736 '0', // default = false
737 xl('Removes support for immunizations')
740 'disable_prescriptions' => array(
741 xl('Disable Prescriptions'),
742 'bool', // data type
743 '0', // default = false
744 xl('Removes support for prescriptions')
747 'omit_employers' => array(
748 xl('Omit Employers'),
749 'bool', // data type
750 '0', // default = false
751 xl('Omit employer information in patient demographics')
754 'select_multi_providers' => array(
755 xl('Support Multi-Provider Events'),
756 'bool', // data type
757 '0', // default = false
758 xl('Support calendar events that apply to multiple providers')
761 'disable_non_default_groups' => array(
762 xl('Disable User Groups'),
763 'bool', // data type
764 '1', // default = true
765 xl('Normally this should be checked. Not related to access control.')
768 'ignore_pnotes_authorization' => array(
769 xl('Skip Authorization of Patient Notes'),
770 'bool', // data type
771 '1', // default = true
772 xl('Do not require patient notes to be authorized')
775 'support_encounter_claims' => array(
776 xl('Allow Encounter Claims'),
777 'bool', // data type
778 '0', // default = false
779 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
782 'advance_directives_warning' => array(
783 xl('Advance Directives Warning'),
784 'bool', // data type
785 '0', // default = false
786 xl('Display advance directives in the demographics page.')
789 'configuration_import_export' => array(
790 xl('Configuration Export/Import'),
791 'bool', // data type
792 '0', // default = false
793 xl('Support export/import of configuration data via the Backup page.')
796 'restrict_user_facility' => array(
797 xl('Restrict Users to Facilities'),
798 'bool', // data type
799 '0', // default
800 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
803 'set_facility_cookie' => array(
804 xl('Remember Selected Facility'),
805 'bool', // data type
806 '0', // default
807 xl('Set a facility cookie to remember the selected facility between logins.')
810 'receipts_by_provider' => array(
811 xl('Print Receipts by Provider'),
812 'bool',
813 '0', // default
814 xl('Causes Receipts to Print Encounter/Primary Provider Info')
817 'discount_by_money' => array(
818 xl('Discounts as Monetary Amounts'),
819 'bool', // data type
820 '1', // default = true
821 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
824 'gbl_visit_referral_source' => array(
825 xl('Referral Source for Encounters'),
826 'bool', // data type
827 '0', // default = false
828 xl('A referral source may be specified for each visit.')
831 'gbl_mask_patient_id' => array(
832 xl('Mask for Patient IDs'),
833 'text', // data type
834 '', // default
835 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
838 'gbl_mask_invoice_number' => array(
839 xl('Mask for Invoice Numbers'),
840 'text', // data type
841 '', // default
842 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
845 'gbl_mask_product_id' => array(
846 xl('Mask for Product IDs'),
847 'text', // data type
848 '', // default
849 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
852 'hide_billing_widget' => array(
853 xl('Hide Billing Widget'),
854 'bool', // data type
855 '0', // default = false
856 xl('This will hide the Billing Widget in the Patient Summary screen')
859 'force_billing_widget_open' => array(
860 xl('Force Billing Widget Open'),
861 'bool', // data type
862 '0', // default = false
863 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
866 'activate_ccr_ccd_report' => array(
867 xl('Activate CCR/CCD Reporting'),
868 'bool', // data type
869 '1', // default = true
870 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
873 'hide_document_encryption' => array(
874 xl('Hide Encryption/Decryption Options In Document Management'),
875 'bool', // data type
876 '1', // default = true
877 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
880 'use_custom_immun_list' => array(
881 xl('Use Custom Immunization List'),
882 'bool', // data type
883 '0', // default = true
884 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
887 'amendments' => array(
888 xl('Amendments'),
889 'bool', // data type
890 '1', // default = true
891 xl('Enable amendments feature')
894 'allow_pat_delete' => array(
895 xl('Allow Administrators to Delete Patients'),
896 'bool', // data type
897 '0', // default = false
898 xl('Allow Administrators to Delete Patients')
902 'observation_results_immunization' => array(
903 xl('Immunization Observation Results'),
904 'bool', // data type
905 '1', // default
906 xl('Observation Results in Immunization')
910 // Report Tab
912 'Report' => array(
914 'use_custom_daysheet' => array(
915 xl('Use Custom End of Day Report'),
916 array(
917 '0' => xl('None'),
918 '1' => xl('Print End of Day Report 1'),
919 '2' => xl('Print End of Day Report 2'),
920 '3' => xl('Print End of Day Report 3'),
921 ), // data type
922 '1', // default = Print End of Day Report 1
923 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
926 'daysheet_provider_totals' => array(
927 xl('End of Day by Provider or allow Totals Only'),
928 array(
929 '0' => xl('Provider'),
930 '1' => xl('Totals Only'),
932 '1', // default
933 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
936 'ledger_begin_date' => array(
937 xl('Beginning Date for Ledger Report'),
938 array(
939 'Y1' => xl('One Year Ago'),
940 'Y2' => xl('Two Years Ago'),
941 'M6' => xl('Six Months Ago'),
942 'M3' => xl('Three Months Ago'),
943 'M1' => xl('One Month Ago'),
944 'D1' => xl('One Day Ago'),
946 'Y1', // default = One Year
947 xl('This is the Beginning date for the Ledger Report.')
950 'print_next_appointment_on_ledger' => array(
951 xl('Print the Next Appointment on the Bottom of the Ledger'),
952 'bool', // data type
953 '1', // default = true
954 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
957 'sales_report_invoice' => array(
958 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
959 array(
960 '0' => xl('Invoice Number'),
961 '1' => xl('Patient Name and ID'),
962 '2' => xl('Patient Name and Invoice'),
964 '2', // default = 2
965 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
968 'cash_receipts_report_invoice' => array(
969 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
970 array(
971 '0' => xl('Invoice Number'),
972 '1' => xl('Patient Name'),
974 '0', // default = 0
975 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
980 // Billing Tab
982 'Billing' => array(
984 'ub04_support' => array(
985 xl('Activate UB04/837I Claim Support'),
986 'bool', // data type
987 '0', // default = false
988 xl('Allow institutional claims support.')
991 'top_ubmargin_default' => array(
992 xl('Default top print margin for UB04'),
993 'num', // data type
994 '14', // default
995 xl('This is the default top print margin for UB04. It will adjust the final printed output up or down.')
998 'left_ubmargin_default' => array(
999 xl('Default left print margin for UB04'),
1000 'num', // data type
1001 '11', // default
1002 xl('This is the default left print margin for UB04. It will adjust the final printed output left or right.')
1005 'cms_top_margin_default' => array(
1006 xl('Default top print margin for CMS 1500'),
1007 'num', // data type
1008 '24', // default
1009 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
1012 'cms_left_margin_default' => array(
1013 xl('Default left print margin for CMS 1500'),
1014 'num', // data type
1015 '20', // default
1016 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
1019 'preprinted_cms_1500' => array(
1020 xl('Prints the CMS 1500 on the Preprinted form'),
1021 'bool', // data type
1022 '0', // default = false
1023 xl('Overlay CMS 1500 on the Preprinted form')
1026 'cms_1500' => array(
1027 xl('CMS 1500 Paper Form Format'),
1028 array(
1029 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
1030 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
1032 '1', // default
1033 xl('This specifies which revision of the form the billing module should generate')
1036 'cms_1500_box_31_format' => array(
1037 xl('CMS 1500: Box 31 Format'),
1038 array(
1039 '0' => xl('Signature on File'),
1040 '1' => xl('Firstname Lastname'),
1041 '2' => xl('None'),
1043 '0', // default
1044 xl('This specifies whether to include date in Box 31.')
1047 'cms_1500_box_31_date' => array(
1048 xl('CMS 1500: Date in Box 31 (Signature)'),
1049 array(
1050 '0' => xl('None'),
1051 '1' => xl('Date of Service'),
1052 '2' => xl('Today'),
1054 '0', // default
1055 xl('This specifies whether to include date in Box 31.')
1058 'default_search_code_type' => array(
1059 xl('Default Search Code Type'),
1060 'all_code_types', // data type
1061 'ICD10', // default
1062 xl('The default code type to search for in the Fee Sheet.')
1065 'default_rendering_provider' => array(
1066 xl('Default Rendering Provider in Fee Sheet'),
1067 array(
1068 '0' => xl('Please Select'),
1069 '1' => xl('Current Provider'),
1070 '2' => xl('Current Logged in User'),
1072 '1',
1073 xl('Default selection for rendering provider in fee sheet.')
1076 'show_payment_history' => array(
1077 xl('Show all payment history in Patient Ledger'),
1078 'bool', // data type
1079 '1', // default = true
1080 xl('Turn on to show all payment history in Patient Ledger')
1083 'support_fee_sheet_line_item_provider' => array(
1084 xl('Support provider in line item in fee sheet'),
1085 'bool', // data type
1086 '0', // default = false
1087 xl('This Enables provider in line item in the fee sheet')
1090 'default_fee_sheet_line_item_provider' => array(
1091 xl('Default to a provider for line item in the fee sheet'),
1092 'bool', // data type
1093 '0', // default = false
1094 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1097 'replicate_justification' => array(
1098 xl('Automatically replicate justification codes in Fee Sheet'),
1099 'bool', // data type
1100 '0', // default = false
1101 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1104 'display_units_in_billing' => array(
1105 xl('Display the Units Column on the Billing Screen'),
1106 'bool', // data type
1107 '0', // default = false
1108 xl('Display the Units Column on the Billing Screen')
1111 'notes_to_display_in_Billing' => array(
1112 xl('Which notes are to be displayed in the Billing Screen'),
1113 array(
1114 '0' => xl('None'),
1115 '1' => xl('Encounter Billing Note'),
1116 '2' => xl('Patient Billing Note'),
1117 '3' => xl('All'),
1119 '3',
1120 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1123 'set_pos_code_encounter' => array(
1124 xl('Set POS code in encounter'),
1125 'bool', // data type
1126 '0', // default = false
1127 xl('This feature will allow the default POS facility code to be overriden from the encounter.')
1130 'use_custom_statement' => array(
1131 xl('Use Custom Statement'),
1132 'bool', // data type
1133 '0', // default = false
1134 xl('This will use the custom Statment showing the description instead of the codes.')
1137 'statement_appearance' => array(
1138 xl('Statement Appearance'),
1139 array(
1140 '0' => xl('Plain Text'),
1141 '1' => xl('Modern/images')
1142 ), // data type
1143 '1', // default = true
1144 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1147 'billing_phone_number' => array(
1148 xl('Custom Billing Phone Number'),
1149 'text', // data type
1151 xl('Phone number for billing inquiries')
1154 'show_aging_on_custom_statement' => array(
1155 xl('Show Aging on Custom Statement'),
1156 'bool', // data type
1157 '0', // default = false
1158 xl('This will Show Aging on the custom Statement.')
1161 'use_statement_print_exclusion' => array(
1162 xl('Allow Statement Exclusions from Printing'),
1163 'bool', // data type
1164 '0', // default = false
1165 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1168 'minimum_amount_to_print' => array(
1169 xl('Total Minimum Amount of Statement to Allow Printing'),
1170 'num', // data type
1171 '1.00',
1172 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1175 'statement_bill_note_print' => array(
1176 xl('Print Patient Billing Note'),
1177 'bool', // data type
1178 '0', // default = false
1179 xl('This will allow printing of the Patient Billing Note on the statements.')
1182 'number_appointments_on_statement' => array(
1183 xl('Number of Appointments on Statement'),
1184 'num', // data type
1185 '0', // default = 0
1186 xl('The Number of Future Appointments to Display on the Statement.')
1189 'statement_message_to_patient' => array(
1190 xl('Print Custom Message'),
1191 'bool', // data type
1192 '0', // default = false
1193 xl('This will allow printing of a custom Message on the statements.')
1196 'statement_msg_text' => array(
1197 xl('Custom Statement message'),
1198 'text', // data type
1200 xl('Text for Custom statement message.')
1203 'use_dunning_message' => array(
1204 xl('Use Custom Dunning Messages'),
1205 'bool', // data type
1206 '0', // default = false
1207 xl('This will allow use of the custom Dunning Messages on the statements.')
1210 'first_dun_msg_set' => array(
1211 xl('Number of days before showing first account message'),
1212 'num', // data type
1213 '30',
1214 xl('Number of days before showing first account message.')
1217 'first_dun_msg_text' => array(
1218 xl('First account message'),
1219 'text', // data type
1221 xl('Text for first account message.')
1224 'second_dun_msg_set' => array(
1225 xl('Number of days before showing second account message'),
1226 'num', // data type
1227 '60',
1228 xl('Number of days before showing second account message')
1231 'second_dun_msg_text' => array(
1232 xl('Second account message'),
1233 'text', // data type
1235 xl('Text for second account message.')
1238 'third_dun_msg_set' => array(
1239 xl('Number of days before showing third account message'),
1240 'num', // data type
1241 '90',
1242 xl('Number of days before showing third account message')
1245 'third_dun_msg_text' => array(
1246 xl('Third account message'),
1247 'text', // data type
1249 xl('Text for third account message.')
1252 'fourth_dun_msg_set' => array(
1253 xl('Number of days before showing fourth account message'),
1254 'num', // data type
1255 '120',
1256 xl('Number of days before showing fourth account message')
1259 'fourth_dun_msg_text' => array(
1260 xl('Fourth account message'),
1261 'text', // data type
1263 xl('Text for fourth account message.')
1266 'fifth_dun_msg_set' => array(
1267 xl('Number of days before showing fifth account message'),
1268 'num', // data type
1269 '150',
1270 xl('Number of days before showing fifth account message')
1273 'fifth_dun_msg_text' => array(
1274 xl('Fifth account message'),
1275 'text', // data type
1277 xl('Text for fifth account message.')
1279 'save_codes_history' => array(
1280 xl('Save codes history'),
1281 'bool', // data type
1282 '1', // default
1283 xl('Save codes history')
1287 // E-Sign Tab
1289 'E-Sign' => array(
1291 'esign_all' => array(
1292 xl('Allows E-Sign on the entire encounter'),
1293 'bool', // data type
1294 '0', // default = false
1295 xl('This will enable signing an entire encounter, rather than individual forms')
1298 'lock_esign_all' => array(
1299 xl('Lock e-signed encounters and their forms'),
1300 'bool', // data type
1301 '0', // default = false
1302 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1305 'esign_individual' => array(
1306 xl('Allows E-Signing Individual Forms'),
1307 'bool', // data type
1308 '1', // default = false
1309 xl('This will enable signing individual forms separately')
1312 'lock_esign_individual' => array(
1313 xl('Lock an e-signed form individually'),
1314 'bool', // data type
1315 '1', // default = false
1316 xl('This will disable the Edit button on any form that is e-signed')
1319 'esign_lock_toggle' => array(
1320 xl('Enable lock toggle'),
1321 'bool', // data type
1322 '0', // default = false
1323 xl('This will give the user the option to lock (separate locking and signing)')
1326 'esign_report_hide_empty_sig' => array(
1327 xl('Hide Empty E-Sign Logs On Report'),
1328 'bool', // data type
1329 '1', // default = false
1330 xl('This will hide empty e-sign logs on the patient report')
1334 //Documents Tab
1335 'Documents' => array(
1337 'document_storage_method' => array(
1338 xl('Document Storage Method'),
1339 array(
1340 '0' => xl('Hard Disk'),
1341 '1' => xl('CouchDB')
1343 '0', // default
1344 xl('Option to save method of document storage.')
1347 'couchdb_host' => array(
1348 xl('CouchDB HostName'),
1349 'text',
1350 'localhost',
1351 xl('CouchDB host'),
1353 'couchdb_user' => array(
1354 xl('CouchDB UserName'),
1355 'text',
1357 xl('Username to connect to CouchDB'),
1359 'couchdb_pass' => array(
1360 xl('CouchDB Password'),
1361 'text',
1363 xl('Password to connect to CouchDB'),
1365 'couchdb_port' => array(
1366 xl('CouchDB Port'),
1367 'text',
1368 '5984',
1369 xl('CouchDB port'),
1371 'couchdb_dbase' => array(
1372 xl('CouchDB Database'),
1373 'text',
1375 xl('CouchDB database name'),
1377 'couchdb_log' => array(
1378 xl('CouchDB Log Enable'),
1379 'bool',
1380 '0',
1381 xl('Enable log for document uploads/downloads to CouchDB'),
1384 'expand_document_tree' => array(
1385 xl('Expand All Document Categories'),
1386 'bool', // data type
1387 '0', // default = false
1388 xl('Expand All Document Categories by Default')
1391 'patient_id_category_name' => array(
1392 xl('Patient ID Category Name'),
1393 'text', // data type
1394 'Patient ID card', // default
1395 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1398 'patient_photo_category_name' => array(
1399 xl('Patient Photo Category Name'),
1400 'text', // data type
1401 'Patient Photograph', // default
1402 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1405 'lab_results_category_name' => array(
1406 xl('Lab Results Category Name'),
1407 'text', // data type
1408 'Lab Report', // default
1409 xl('Document category name for storage of electronically received lab results.')
1412 'gbl_mdm_category_name' => array(
1413 xl('MDM Document Category Name'),
1414 'text', // data type
1415 'Lab Report', // default
1416 xl('Document category name for storage of electronically received MDM documents.')
1418 'generate_doc_thumb' => array(
1419 xl('Generate thumbnail'),
1420 'bool',
1421 '0',
1422 xl('Generate thumbnail images'),
1424 'thumb_doc_max_size' => array(
1425 xl('Thumbnail size'),
1426 'text', // data type
1427 '100', // default
1428 xl('Maximum size of thumbnail file')
1432 // Calendar Tab
1434 'Calendar' => array(
1436 'disable_calendar' => array(
1437 xl('Disable Calendar'),
1438 'bool', // data type
1439 '0', // default
1440 xl('Do not display the calendar.')
1443 'schedule_start' => array(
1444 xl('Calendar Starting Hour'),
1445 'hour',
1446 '8', // default
1447 xl('Beginning hour of day for calendar events.')
1450 'schedule_end' => array(
1451 xl('Calendar Ending Hour'),
1452 'hour',
1453 '17', // default
1454 xl('Ending hour of day for calendar events.')
1457 'calendar_interval' => array(
1458 xl('Calendar Interval'),
1459 array(
1460 '5' => '5',
1461 '10' => '10',
1462 '15' => '15',
1463 '20' => '20',
1464 '30' => '30',
1465 '60' => '60',
1467 '15', // default
1468 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1471 'calendar_view_type' => array(
1472 xl('Default Calendar View'),
1473 array(
1474 'day' => xl('Day'),
1475 'week' => xl('Week'),
1476 'month' => xl('Month'),
1478 'day', // default
1479 xl('This sets the Default Calendar View, Default is Day.')
1481 'first_day_week' => array(
1482 xl('First day in the week'),
1483 array(
1484 '1' => xl('Monday'),
1485 '0' => xl('Sunday'),
1486 '6' => xl('Saturday')
1488 '1',
1489 xl('Your first day of the week.')
1491 'calendar_appt_style' => array(
1492 xl('Appointment Display Style'),
1493 array(
1494 '1' => xl('Last name'),
1495 '2' => xl('Last name, first name'),
1496 '3' => xl('Last name, first name (title)'),
1497 '4' => xl('Last name, first name (title: comments)'),
1499 '2', // default
1500 xl('This determines how appointments display on the calendar.')
1503 'event_color' => array(
1504 xl('Appointment/Event Color'),
1505 array(
1506 '1' => xl('Category Color Schema'),
1507 '2' => xl('Facility Color Schema'),
1508 ), // data type
1509 '1', // default
1510 xl('This determines which color schema used for appointment')
1513 'number_of_appts_to_show' => array(
1514 xl('Appointments - Patient Summary - Number to Display'),
1515 'num',
1516 '10',
1517 xl('Number of Appointments to display in the Patient Summary')
1520 'number_of_group_appts_to_show' => array(
1521 xl('Appointments - Group Summary - Number to Display'),
1522 'num',
1523 '10',
1524 xl('Number of Appointments to display in the Group Summary')
1526 'number_of_ex_appts_to_show' => array(
1527 xl('Excluded Appointments - Tooltip - Number to Display'),
1528 'num',
1529 '15',
1530 xl('Number of Excluded Appointments to display in the Tooltip')
1534 'patient_portal_appt_display_num' => array(
1535 xl('Appointments - Onsite Patient Portal - Number to Display'),
1536 'num',
1537 '20',
1538 xl('Number of Appointments to display in the Onsite Patient Portal')
1541 'appt_display_sets_option' => array(
1542 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1543 'bool', // data type
1544 '1', // default
1545 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1548 'appt_display_sets_color_1' => array(
1549 xl('Appointment Display Sets - Color 1'),
1550 'color_code',
1551 '#FFFFFF',
1552 xl('Color for odd sets (except when last set is odd and all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed) or not all member appointments are displayed).')
1555 'appt_display_sets_color_2' => array(
1556 xl('Appointment Display Sets - Color 2'),
1557 'color_code',
1558 '#E6E6FF',
1559 xl('Color for even sets (except when last set is even and all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed) or not all member appointments are displayed).')
1562 'appt_display_sets_color_3' => array(
1563 xl('Appointment Display Sets - Color 3'),
1564 'color_code',
1565 '#E6FFE6',
1566 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1569 'appt_display_sets_color_4' => array(
1570 xl('Appointment Display Sets - Color 4'),
1571 'color_code',
1572 '#FFE6FF',
1573 xl('Color for the last set when not all member appointments are displayed.')
1576 'appt_recurrences_widget' => array(
1577 xl('Recurrent Appointment Display Widget'),
1578 'bool', // data type
1579 '1', // default
1580 xl('Display the recurrent appointment widget in the patient summary.')
1583 'num_past_appointments_to_show' => array(
1584 xl('Past Appointment Display Widget'),
1585 'num', // data type
1586 '0', // default = false
1587 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)')
1590 'docs_see_entire_calendar' => array(
1591 xl('Providers See Entire Calendar'),
1592 'bool', // data type
1593 '0', // default
1594 xl('Check this if you want providers to see all appointments by default and not just their own.')
1597 'auto_create_new_encounters' => array(
1598 xl('Auto-Create New Encounters'),
1599 'bool', // data type
1600 '1', // default
1601 xl('Automatically create a new encounter when an appointment check in status is selected.')
1603 'allow_early_check_in' => array(
1604 xl('Allow Early Check In'),
1605 'bool', // data type
1606 '1', // default
1607 xl("Allow Check In before the appointment's time.")
1609 'disable_pat_trkr' => array(
1610 xl('Disable Patient Flow Board'),
1611 'bool', // data type
1612 '0', // default
1613 xl('Do not display the patient flow board.')
1616 'ptkr_visit_reason' => array(
1617 xl('Show Visit Reason in Patient Flow Board'),
1618 'bool', // data type
1619 '0', // default = false
1620 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1623 'ptkr_show_pid' => array(
1624 xl('Show Patient ID in Patient Flow Board'),
1625 'bool', // data type
1626 '1', // default = true
1627 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1630 'ptkr_show_encounter' => array(
1631 xl('Show Patient Encounter Number in Patient Flow Board'),
1632 'bool', // data type
1633 '1', // default = true
1634 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1637 'pat_trkr_timer' => array(
1638 xl('Patient Flow Board Timer Interval'),
1639 array(
1640 '0' => xl('No automatic refresh'),
1641 '0:10' => '10',
1642 '0:20' => '20',
1643 '0:30' => '30',
1644 '0:40' => '40',
1645 '0:50' => '50',
1646 '0:59' => '60',
1648 '0:20', // default
1649 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1652 'checkout_roll_off' => array(
1653 xl('Number of Minutes to display completed checkouts'),
1654 'num',
1655 '0', // default
1656 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1659 'drug_screen' => array(
1660 xl('Enable Random Drug Testing'),
1661 'bool', // data type
1662 '0', // default
1663 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1666 'drug_testing_percentage' => array(
1667 xl('Percentage of Patients to Drug Test'),
1668 'num',
1669 '33', // default
1670 xl('Percentage of Patients to select for Random Drug Testing.')
1673 'maximum_drug_test_yearly' => array(
1674 xl('Maximum number of times a Patient can be tested in a year'),
1675 'num',
1676 '0', // default
1677 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1680 'submit_changes_for_all_appts_at_once' => array(
1681 xl('Submit Changes For All Appts At Once'),
1682 'bool', // data type
1683 '1', // default
1684 xl('Enables to submit changes for all appointments of a recurrence at once.')
1690 // Security Tab
1692 'Security' => array(
1693 'sql_string_no_show_screen' => array(
1694 xl('Mode - Do Not Show SQL Queries'),
1695 'bool', // data type
1696 '0', // default
1697 xl('Do not allow SQL queries to be outputted to screen.')
1699 'timeout' => array(
1700 xl('Idle Session Timeout Seconds'),
1701 'num', // data type
1702 '7200', // default
1703 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1705 'secure_upload' => array(
1706 xl('Secure Upload Files with White List'),
1707 'bool', // data type
1708 '0', // default
1709 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1711 'secure_password' => array(
1712 xl('Require Strong Passwords'),
1713 'bool', // data type
1714 '0', // default
1715 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1717 'password_history' => array(
1718 xl('Require Unique Passwords'),
1719 'bool', // data type
1720 '0', // default
1721 xl('Means none of last three passwords are allowed when changing a password.')
1723 'password_compatibility' => array(
1724 xl('Permit unsalted passwords'),
1725 'bool', // data type
1726 '1', // default
1727 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')
1730 'password_expiration_days' => array(
1731 xl('Default Password Expiration Days'),
1732 'num', // data type
1733 '0', // default
1734 xl('Default password expiration period in days. 0 means this feature is disabled.')
1737 'password_grace_time' => array(
1738 xl('Password Expiration Grace Period'),
1739 'num', // data type
1740 '0', // default
1741 xl('Period in days where a user may login with an expired password.')
1744 'is_client_ssl_enabled' => array(
1745 xl('Enable Client SSL'),
1746 'bool', // data type
1747 '0', // default
1748 xl('Enable client SSL certificate authentication.')
1751 'certificate_authority_crt' => array(
1752 xl('Path to CA Certificate File'),
1753 'text', // data type
1754 '', // default
1755 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1758 'certificate_authority_key' => array(
1759 xl('Path to CA Key File'),
1760 'text', // data type
1761 '', // default
1762 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1765 'client_certificate_valid_in_days' => array(
1766 xl('Client Certificate Expiration Days'),
1767 'num', // data type
1768 '365', // default
1769 xl('Number of days that the client certificate is valid.')
1772 'Emergency_Login_email_id' => array(
1773 xl('Emergency Login Email Address'),
1774 'text', // data type
1775 '', // default
1776 xl('Email address, if any, to receive emergency login user activation messages.')
1779 'new_validate' => array(
1780 xl('New form validation'),
1781 'bool',
1782 '1',
1783 xl('New form validation')
1786 'allow_multiple_databases' => array(
1787 xl('Allow multiple databases'),
1788 'bool',
1789 '0',
1790 xl('Allow to use with multiple database')
1793 'safe_key_database' => array(
1794 xl('Safe key database'),
1795 'text', // data type
1796 '', // default
1797 xl('Key for multiple database credentials encryption')
1800 'use_active_directory' => array(
1801 xl('Use Active Directory'),
1802 'bool',
1803 '0',
1804 xl('If enabled, uses the specified active directory for login and authentication.')
1807 'account_suffix' => array(
1808 xl('Active Directory - Suffix Of Account'),
1809 'text',
1811 xl('The suffix of the account.')
1814 'base_dn' => array(
1815 xl('Active Directory - Domains Base'),
1816 'text',
1818 xl('Users is the standard windows CN, replace the DC stuff with your domain.')
1821 'domain_controllers' => array(
1822 xl('Active Directory - Domains Controllers'),
1823 'text',
1825 xl('The IP address of your domain controller(s).')
1830 // Notifications Tab
1832 'Notifications' => array(
1834 'patient_reminder_sender_name' => array(
1835 xl('Patient Reminder Sender Name'),
1836 'text', // data type
1837 '', // default
1838 xl('Name of the sender for patient reminders.')
1841 'patient_reminder_sender_email' => array(
1842 xl('Patient Reminder Sender Email'),
1843 'text', // data type
1844 '', // default
1845 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.')
1848 'practice_return_email_path' => array(
1849 xl('Notification Email Address'),
1850 'text', // data type
1851 '', // default
1852 xl('Email address, if any, to receive administrative notifications.')
1855 'EMAIL_METHOD' => array(
1856 xl('Email Transport Method'),
1857 array(
1858 'PHPMAIL' => 'PHPMAIL',
1859 'SENDMAIL' => 'SENDMAIL',
1860 'SMTP' => 'SMTP',
1862 'SMTP', // default
1863 xl('Method for sending outgoing email.')
1866 'SMTP_HOST' => array(
1867 xl('SMTP Server Hostname'),
1868 'text', // data type
1869 'localhost', // default
1870 xl('If SMTP is used, the server`s hostname or IP address.')
1873 'SMTP_PORT' => array(
1874 xl('SMTP Server Port Number'),
1875 'num', // data type
1876 '25', // default
1877 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1880 'SMTP_USER' => array(
1881 xl('SMTP User for Authentication'),
1882 'text', // data type
1883 '', // default
1884 xl('Must be empty if SMTP authentication is not used.')
1887 'SMTP_PASS' => array(
1888 xl('SMTP Password for Authentication'),
1889 'text', // data type
1890 '', // default
1891 xl('Must be empty if SMTP authentication is not used.')
1894 'SMTP_SECURE' => array(
1895 xl('SMTP Security Protocol'),
1896 array(
1897 '' => xl('None'),
1898 'ssl' => 'SSL',
1899 'tls' => 'TLS'
1902 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1905 'EMAIL_NOTIFICATION_HOUR' => array(
1906 xl('Email Notification Hours'),
1907 'num', // data type
1908 '50', // default
1909 xl('Number of hours in advance to send email notifications.')
1912 'SMS_NOTIFICATION_HOUR' => array(
1913 xl('SMS Notification Hours'),
1914 'num', // data type
1915 '50', // default
1916 xl('Number of hours in advance to send SMS notifications.')
1919 'SMS_GATEWAY_USENAME' => array(
1920 xl('SMS Gateway Username'),
1921 'text', // data type
1922 '', // default
1923 xl('Username for SMS Gateway.')
1926 'SMS_GATEWAY_PASSWORD' => array(
1927 xl('SMS Gateway Password'),
1928 'text', // data type
1929 '', // default
1930 xl('Password for SMS Gateway.')
1933 'SMS_GATEWAY_APIKEY' => array(
1934 xl('SMS Gateway API Key'),
1935 'text', // data type
1936 '', // default
1937 xl('API key for SMS Gateway.')
1940 'phone_notification_hour' => array(
1941 xl('Phone Notification Hour'),
1942 'num', // data type
1943 '50', // default
1944 xl('Number of hours in advance to send Phone notification.')
1947 'phone_gateway_username' => array(
1948 xl('Phone Gateway Username'),
1949 'text', // data type
1950 '', // default
1951 xl('Username for Phone Gateway.')
1954 'phone_gateway_password' => array(
1955 xl('Phone Gateway Password'),
1956 'text', // data type
1957 '', // default
1958 xl('Password for Phone Gateway.')
1961 'phone_gateway_url' => array(
1962 xl('Phone Gateway URL'),
1963 'text', // data type
1964 '', // default
1965 xl('URL for Phone Gateway.')
1970 // CDR (Clinical Decision Rules)
1972 'CDR' => array(
1974 'enable_cdr' => array(
1975 xl('Enable Clinical Decisions Rules (CDR)'),
1976 'bool', // data type
1977 '1', // default
1978 xl('Enable Clinical Decisions Rules (CDR)')
1981 'enable_allergy_check' => array(
1982 xl('Enable Allergy Check'),
1983 'bool', // data type
1984 '1', // default
1985 xl('Enable Allergy Check Against Medications and Prescriptions')
1988 'enable_alert_log' => array(
1989 xl('Enable Alert Log'),
1990 'bool', // data type
1991 '1', // default
1992 xl('Enable Alert Logging')
1995 'enable_cdr_new_crp' => array(
1996 xl('Enable Clinical Passive New Reminder(s) Popup'),
1997 'bool', // data type
1998 '1', // default
1999 xl('Enable Clinical Passive New Reminder(s) Popup')
2002 'enable_cdr_crw' => array(
2003 xl('Enable Clinical Passive Reminder Widget'),
2004 'bool', // data type
2005 '1', // default
2006 xl('Enable Clinical Passive Reminder Widget')
2009 'enable_cdr_crp' => array(
2010 xl('Enable Clinical Active Reminder Popup'),
2011 'bool', // data type
2012 '1', // default
2013 xl('Enable Clinical Active Reminder Popup')
2016 'enable_cdr_prw' => array(
2017 xl('Enable Patient Reminder Widget'),
2018 'bool', // data type
2019 '1', // default
2020 xl('Enable Patient Reminder Widget')
2023 'enable_cqm' => array(
2024 xl('Enable CQM Reporting'),
2025 'bool', // data type
2026 '1', // default
2027 xl('Enable Clinical Quality Measure (CQM) Reporting')
2030 'pqri_registry_name' => array(
2031 xl('PQRI Registry Name'),
2032 'text', // data type
2033 'Model Registry', // default
2034 xl('PQRI Registry Name')
2037 'pqri_registry_id' => array(
2038 xl('PQRI Registry ID'),
2039 'text', // data type
2040 '125789123', // default
2041 xl('PQRI Registry ID')
2044 'enable_amc' => array(
2045 xl('Enable AMC Reporting'),
2046 'bool', // data type
2047 '1', // default
2048 xl('Enable Automated Measure Calculations (AMC) Reporting')
2051 'enable_amc_prompting' => array(
2052 xl('Enable AMC Prompting'),
2053 'bool', // data type
2054 '1', // default
2055 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
2058 'enable_amc_tracking' => array(
2059 xl('Enable AMC Tracking'),
2060 'bool', // data type
2061 '1', // default
2062 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
2065 'cdr_report_nice' => array(
2066 xl('CDR Reports Processing Priority'),
2067 array(
2068 '' => xl('Default Priority'),
2069 '5' => xl('Moderate Priority'),
2070 '10' => xl('Moderate/Low Priority'),
2071 '15' => xl('Low Priority'),
2072 '20' => xl('Lowest Priority')
2074 '', // default
2075 xl('Set processing priority for CDR engine based reports.')
2078 'pat_rem_clin_nice' => array(
2079 xl('Patient Reminder Creation Processing Priority'),
2080 array(
2081 '' => xl('Default Priority'),
2082 '5' => xl('Moderate Priority'),
2083 '10' => xl('Moderate/Low Priority'),
2084 '15' => xl('Low Priority'),
2085 '20' => xl('Lowest Priority')
2087 '', // default
2088 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2091 'report_itemizing_standard' => array(
2092 xl('Enable Standard Report Itemization'),
2093 'bool', // data type
2094 '1', // default
2095 xl('Enable Itemization of Standard Clinical Rules Reports')
2098 'report_itemizing_cqm' => array(
2099 xl('Enable CQM Report Itemization'),
2100 'bool', // data type
2101 '1', // default
2102 xl('Enable Itemization of CQM Reports')
2105 'report_itemizing_amc' => array(
2106 xl('Enable AMC Report Itemization'),
2107 'bool', // data type
2108 '1', // default
2109 xl('Enable Itemization of AMC Reports')
2111 'dated_reminders_max_alerts_to_show' => array(
2112 xl('Dated reminders maximum alerts to show'),
2113 'num', // data type
2114 '5', // default
2115 xl('Dated reminders maximum alerts to show')
2117 'patient_birthday_alert' => array(
2118 xl('Alert on patient birthday'),
2119 array(
2120 '0' => xl('No alert'),
2121 '1' => xl('Alert only on birthday'),
2122 '2' => xl('Alert on and after birthday')
2124 '1', // default
2125 xl('Alert on patient birthday')
2127 'patient_birthday_alert_manual_off' => array(
2128 xl('Patient birthday alert requires turning off'),
2129 'bool', // data type
2130 '0', // default
2131 xl('Patient birthday alert requires turning off')
2135 // Logging
2137 'Logging' => array(
2139 'enable_auditlog' => array(
2140 xl('Enable Audit Logging'),
2141 'bool', // data type
2142 '1', // default
2143 xl('Enable Audit Logging')
2146 'audit_events_patient-record' => array(
2147 xl('Audit Logging Patient Record'),
2148 'bool', // data type
2149 '1', // default
2150 xl('Enable logging of patient record modifications.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2153 'audit_events_scheduling' => array(
2154 xl('Audit Logging Scheduling'),
2155 'bool', // data type
2156 '1', // default
2157 xl('Enable logging of scheduling activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2160 'audit_events_order' => array(
2161 xl('Audit Logging Order'),
2162 'bool', // data type
2163 '1', // default
2164 xl('Enable logging of ordering activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2167 'audit_events_security-administration' => array(
2168 xl('Audit Logging Security Administration'),
2169 'bool', // data type
2170 '1', // default
2171 xl('Enable logging of security and administration activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2174 'audit_events_backup' => array(
2175 xl('Audit Logging Backups'),
2176 'bool', // data type
2177 '1', // default
2178 xl('Enable logging of backup related activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2181 'audit_events_other' => array(
2182 xl('Audit Logging Miscellaneous'),
2183 'bool', // data type
2184 '1', // default
2185 xl('Enable logging of miscellaneous activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2188 'audit_events_query' => array(
2189 xl('Audit Logging SELECT Query'),
2190 'bool', // data type
2191 '0', // default
2192 xl('Enable logging of all SQL SELECT queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2195 'audit_events_cdr' => array(
2196 xl('Audit CDR Engine Queries'),
2197 'bool', // data type
2198 '0', // default
2199 xl('Enable logging of CDR Engine Queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2202 'enable_atna_audit' => array(
2203 xl('Enable ATNA Auditing'),
2204 'bool', // data type
2205 '0', // default
2206 xl('Enable Audit Trail and Node Authentication (ATNA).')
2209 'atna_audit_host' => array(
2210 xl('ATNA audit host'),
2211 'text', // data type
2212 '', // default
2213 xl('The hostname of the ATNA audit repository machine.')
2216 'atna_audit_port' => array(
2217 xl('ATNA audit port'),
2218 'text', // data type
2219 '6514', // default
2220 xl('Listening port of the RFC 5425 TLS syslog server.')
2223 'atna_audit_localcert' => array(
2224 xl('ATNA audit local certificate'),
2225 'text', // data type
2226 '', // default
2227 xl('Certificate to send to RFC 5425 TLS syslog server.')
2230 'atna_audit_cacert' => array(
2231 xl('ATNA audit CA certificate'),
2232 'text', // data type
2233 '', // default
2234 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2237 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
2238 'enable_auditlog_encryption' => array(
2239 xl('Enable Audit Log Encryption'),
2240 'bool', // data type
2241 '0', // default
2242 xl('Enable Audit Log Encryption')
2245 'billing_log_option' => array(
2246 xl('Billing Log Option'),
2247 array(
2248 '1' => xl('Billing Log Append'),
2249 '2' => xl('Billing Log Overwrite')
2251 '1', // default
2252 xl('Billing log setting to append or overwrite the log file.')
2255 'gbl_print_log_option' => array(
2256 xl('Printing Log Option'),
2257 array(
2258 '0' => xl('No logging'),
2259 '1' => xl('Hide print feature'),
2260 '2' => xl('Log entire document'),
2262 '0', // default
2263 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2268 // Miscellaneous Tab
2270 'Miscellaneous' => array(
2272 'mysql_bin_dir' => array(
2273 xl('Path to MySQL Binaries'),
2274 'text', // data type
2275 $mysql_bin_dir, // default
2276 xl('Full path to directory containing MySQL executables.')
2279 'perl_bin_dir' => array(
2280 xl('Path to Perl Binaries'),
2281 'text', // data type
2282 $perl_bin_dir, // default
2283 xl('Full path to directory containing Perl executables.')
2286 'temporary_files_dir' => array(
2287 xl('Path to Temporary Files'),
2288 'text', // data type
2289 $temporary_files_dir, // default
2290 xl('Full path to directory used for temporary files.')
2293 'backup_log_dir' => array(
2294 xl('Path for Event Log Backup'),
2295 'text', // data type
2296 $backup_log_dir, // default
2297 xl('Full path to directory for event log backup.')
2300 'state_data_type' => array(
2301 xl('State Data Type'),
2302 array(
2303 '2' => xl('Text field'),
2304 '1' => xl('Single-selection list'),
2305 '26' => xl('Single-selection list with ability to add to the list'),
2307 '26', // default
2308 xl('Field type to use for employer or subscriber state in demographics.')
2311 'state_list' => array(
2312 xl('State list'),
2313 'text', // data type
2314 'state', // default
2315 xl('List used by above State Data Type option.')
2318 'state_custom_addlist_widget' => array(
2319 xl('State List Widget Custom Fields'),
2320 'bool', // data type
2321 '1', // default
2322 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2325 'country_data_type' => array(
2326 xl('Country Data Type'),
2327 array(
2328 '2' => xl('Text field'),
2329 '1' => xl('Single-selection list'),
2330 '26' => xl('Single-selection list with ability to add to the list'),
2332 '26', // default
2333 xl('Field type to use for employer or subscriber country in demographics.')
2336 'country_list' => array(
2337 xl('Country list'),
2338 'text', // data type
2339 'country', // default
2340 xl('List used by above Country Data Type option.')
2343 'print_command' => array(
2344 xl('Print Command'),
2345 'text', // data type
2346 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2347 xl('Shell command for printing from the server.')
2350 'default_chief_complaint' => array(
2351 xl('Default Reason for Visit'),
2352 'text', // data type
2354 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2357 'default_new_encounter_form' => array(
2358 xl('Default Encounter Form ID'),
2359 'text', // data type
2361 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
2364 'MedicareReferrerIsRenderer' => array(
2365 xl('Medicare Referrer Is Renderer'),
2366 'bool', // data type
2367 '0', // default = true
2368 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2371 'post_to_date_benchmark' => array(
2372 xl('Financial Close Date (yyyy-mm-dd)'),
2373 'text', // data type
2374 date('Y-m-d', time() - (10 * 24 * 60 * 60)), // default
2375 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2378 'enable_hylafax' => array(
2379 xl('Enable Hylafax Support'),
2380 'bool', // data type
2381 '0', // default
2382 xl('Enable Hylafax Support')
2385 'hylafax_server' => array(
2386 xl('Hylafax Server'),
2387 'text', // data type
2388 'localhost', // default
2389 xl('Hylafax server hostname.')
2392 'hylafax_basedir' => array(
2393 xl('Hylafax Directory'),
2394 'text', // data type
2395 '/var/spool/hylafax', // default
2396 xl('Location where Hylafax stores faxes.')
2399 'hylafax_enscript' => array(
2400 xl('Hylafax Enscript Command'),
2401 'text', // data type
2402 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2403 xl('Enscript command used by Hylafax.')
2406 'enable_scanner' => array(
2407 xl('Enable Scanner Support'),
2408 'bool', // data type
2409 '0', // default
2410 xl('Enable Scanner Support')
2413 'scanner_output_directory' => array(
2414 xl('Scanner Directory'),
2415 'text', // data type
2416 '/mnt/scan_docs', // default
2417 xl('Location where scans are stored.')
2421 // Portal Tab
2423 'Portal' => array(
2425 'portal_onsite_two_enable' => array(
2426 xl('Enable Version 2 Onsite Patient Portal'),
2427 'bool', // data type
2428 '0',
2429 xl('Enable Version 2 Onsite Patient Portal.')
2432 'portal_onsite_two_address' => array(
2433 xl('Version 2 Onsite Patient Portal Site Address'),
2434 'text', // data type
2435 'https://your_web_site.com/openemr/portal',
2436 xl('Website link for the Version 2 Onsite Patient Portal.')
2439 'portal_onsite_two_basepath' => array(
2440 xl('Portal Uses Server Base Path (internal)'),
2441 'bool',
2442 '0',
2443 xl('Use servers protocol and host in urls (portal internal only).')
2446 'portal_onsite_two_register' => array(
2447 xl('Allow Version 2 Onsite New Patient Registration Widget'),
2448 'bool', // data type
2449 '1',
2450 xl('Enable Version 2 Onsite Patient Portal new patient to self register.')
2453 'portal_two_payments' => array(
2454 xl('Allow Version 2 Onsite Online Payments'),
2455 'bool', // data type
2456 '0',
2457 xl('Allow Version 2 Onsite Patient to make payments online.')
2460 'portal_two_pass_reset' => array(
2461 xl('Allow Version 2 Patients to Reset Credentials'),
2462 'bool', // data type
2463 '0',
2464 xl('Patient may change their logon from portal login dialog.')
2467 'portal_onsite_enable' => array(
2468 xl('Enable Version 1 Onsite Patient Portal'),
2469 'bool', // data type
2470 '0',
2471 xl('Enable Version 1 Onsite Patient Portal.')
2474 'portal_onsite_address' => array(
2475 xl('Version 1 Onsite Patient Portal Site Address'),
2476 'text', // data type
2477 'https://your_web_site.com/openemr/patients',
2478 xl('Website link for the Version 1 Onsite Patient Portal.')
2481 'portal_onsite_document_download' => array(
2482 xl('Enable Onsite Patient Portal Document Download'),
2483 'bool', // data type
2484 '1',
2485 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2488 'portal_offsite_enable' => array(
2489 xl('Enable Offsite Patient Portal'),
2490 'bool', // data type
2491 '0',
2492 xl('Enable Offsite Patient Portal.')
2494 'portal_offsite_providerid' => array(
2495 xl('Offsite Patient Portal Provider ID'),
2496 'text', // data type
2498 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2501 'portal_offsite_username' => array(
2502 xl('Offsite Patient Portal Username'),
2503 'text', // data type
2505 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2508 'portal_offsite_password' => array(
2509 xl('Offsite Patient Portal Password'),
2510 'pwd', // data type
2512 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2515 'portal_offsite_address' => array(
2516 xl('Offsite Patient Portal Site Address'),
2517 'text', // data type
2518 'https://ssh.mydocsportal.com/provider.php',
2519 xl('Offsite Https link for the Patient Portal.')
2522 'portal_offsite_address_patient_link' => array(
2523 xl('Offsite Patient Portal Site Address (Patient Link)'),
2524 'text', // data type
2525 'https://ssh.mydocsportal.com',
2526 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2529 // Currently the "CMS Portal" supports WordPress. Other Content Management
2530 // Systems may be supported in the future.
2532 'gbl_portal_cms_enable' => array(
2533 xl('Enable CMS Portal'),
2534 'bool', // data type
2535 '0',
2536 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2539 'gbl_portal_cms_address' => array(
2540 xl('CMS Portal Site Address'),
2541 'text', // data type
2542 'https://your_cms_site.com/',
2543 xl('URL for the WordPress site that supports the portal')
2546 'gbl_portal_cms_username' => array(
2547 xl('CMS Portal Username'),
2548 'text', // data type
2550 xl('Login name of WordPress user for portal access')
2553 'gbl_portal_cms_password' => array(
2554 xl('CMS Portal Password'),
2555 'text', // data type
2557 xl('Password for the above user')
2562 // Connectors Tab
2564 'Connectors' => array(
2566 'erx_enable' => array(
2567 xl('Enable NewCrop eRx Service'),
2568 'bool',
2569 '0',
2570 xl('Enable NewCrop eRx Service.') . ' ' .
2571 xl('Contact mi-squared at http://www.mi-squared.com/products-services/openemr/ or ZH Healthcare at https://blueehr.com/contact-us/ for subscribing to the NewCrop eRx service.')
2574 'erx_newcrop_path' => array(
2575 xl('NewCrop eRx Site Address'),
2576 'text',
2577 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2578 xl('URL for NewCrop eRx Site Address.')
2581 'erx_newcrop_path_soap' => array(
2582 xl('NewCrop eRx Web Service Address'),
2583 'text',
2584 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2585 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2588 'erx_soap_ttl_allergies' => array(
2589 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2590 'num',
2591 '21600',
2592 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2595 'erx_soap_ttl_medications' => array(
2596 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2597 'num',
2598 '21600',
2599 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2602 'erx_account_partner_name' => array(
2603 xl('NewCrop eRx Partner Name'),
2604 'text',
2606 xl('Partner Name issued for NewCrop eRx service.')
2609 'erx_account_name' => array(
2610 xl('NewCrop eRx Name'),
2611 'text',
2613 xl('Account Name issued for NewCrop eRx service.')
2616 'erx_account_password' => array(
2617 xl('NewCrop eRx Password'),
2618 'pass',
2620 xl('Account Password issued for NewCrop eRx service.')
2623 'erx_account_id' => array(
2624 xl('NewCrop eRx Account Id'),
2625 'text',
2626 '1',
2627 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2630 'erx_upload_active' => array(
2631 xl('Only upload active prescriptions'),
2632 'bool',
2633 '0',
2634 xl('Only upload active prescriptions to NewCrop eRx.')
2637 'erx_import_status_message' => array(
2638 xl('Enable NewCrop eRx import status message'),
2639 'bool',
2640 '0',
2641 xl('Enable import status message after visiting NewCrop eRx.')
2644 'erx_medication_display' => array(
2645 xl('Do not display NewCrop eRx Medications uploaded'),
2646 'bool',
2647 '0',
2648 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2651 'erx_allergy_display' => array(
2652 xl('Do not display NewCrop eRx Allergy uploaded'),
2653 'bool',
2654 '0',
2655 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2658 'erx_default_patient_country' => array(
2659 xl('NewCrop eRx Default Patient Country'),
2660 array(
2661 '' => '',
2662 'US' => xl('USA'),
2663 'CA' => xl('Canada'),
2664 'MX' => xl('Mexico'),
2667 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2670 'erx_debug_setting' => array(
2671 xl('NewCrop eRx Debug Setting'),
2672 array(
2673 0 => xl('None'),
2674 1 => xl('Request Only'),
2675 2 => xl('Response Only'),
2676 3 => xl('Request & Response'),
2678 '0',
2679 xl('Log all NewCrop eRx Requests and / or Responses.'),
2682 'weno_rx_enable' => array(
2683 xl('Enable Weno eRx Service'),
2684 'bool',
2685 '0',
2686 xl('Enable Weno eRx Service.') . ' ' . xl('Contact Open Med Practice, www.openmedpractice.com for subscribing to the Weno Free eRx service.')
2689 'weno_account_id' => array(
2690 xl('Weno eRx Account Id'),
2691 'text',
2693 xl('Account Id issued for Weno eRx service.')
2696 'weno_account_pass' => array(
2697 xl('Weno eRx Account Pass'),
2698 'text',
2700 xl('Account Id issued for Weno eRx service.')
2703 'weno_provider_id' => array(
2704 xl('Weno eRx Clinic ID'),
2705 'text',
2707 xl('Account Id issued for Your clinics eRx service.')
2710 'ccda_alt_service_enable' => array(
2711 xl('Enable C-CDA Alternate Service'),
2712 array(
2713 0 => xl('Off'),
2714 1 => xl('Care Coordination Only'),
2715 2 => xl('Portal Only'),
2716 3 => xl('Both'),
2718 '0',
2719 xl('Enable C-CDA Alternate Service')
2722 'phimail_enable' => array(
2723 xl('Enable phiMail Direct Messaging Service'),
2724 'bool', // data type
2725 '0',
2726 xl('Enable phiMail Direct Messaging Service')
2729 'phimail_server_address' => array(
2730 xl('phiMail Server Address'),
2731 'text', // data type
2732 'https://phimail.example.com:32541',
2733 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2736 'phimail_username' => array(
2737 xl('phiMail Username'),
2738 'text', // data type
2740 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2743 'phimail_password' => array(
2744 xl('phiMail Password'),
2745 'pass', // data type
2747 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2750 'phimail_notify' => array(
2751 xl('phiMail notification user'),
2752 'text', // data type
2753 'admin',
2754 xl('This user will receive notification of new incoming Direct messages')
2757 'phimail_interval' => array(
2758 xl('phiMail Message Check Interval (minutes)'),
2759 'num', // data type
2760 '5',
2761 xl('Interval between message checks (set to zero for manual checks only)')
2764 'phimail_ccd_enable' => array(
2765 xl('phiMail Allow CCD Send'),
2766 'bool', // data type
2767 '0',
2768 xl('phiMail Allow CCD Send')
2771 'phimail_ccr_enable' => array(
2772 xl('phiMail Allow CCR Send'),
2773 'bool', // data type
2774 '0',
2775 xl('phiMail Allow CCR Send')
2779 'Rx' => array(
2780 'rx_enable_DEA' => array(
2781 xl('Rx Enable DEA #'),
2782 'bool', // data type
2783 '1',
2784 xl('Rx Enable DEA #')
2786 'rx_show_DEA' => array(
2787 xl('Rx Show DEA #'),
2788 'bool', // data type
2789 '0',
2790 xl('Rx Show DEA #')
2792 'rx_enable_NPI' => array(
2793 xl('Rx Enable NPI'),
2794 'bool', // data type
2795 '0',
2796 xl('Rx Enable NPI')
2798 'rx_show_NPI' => array(
2799 xl('Rx Show NPI'),
2800 'bool', // data type
2801 '0',
2802 xl('Rx Show NPI')
2804 'rx_enable_SLN' => array(
2805 xl('Rx Enable State Lic. #'),
2806 'bool', // data type
2807 '0',
2808 xl('Rx Enable State Lic. #')
2810 'rx_show_SLN' => array(
2811 xl('Rx Show State Lic. #'),
2812 'bool', // data type
2813 '0',
2814 xl('Rx Show State Lic. #')
2816 'rx_show_drug-drug' => array(
2817 xl('Rx NLM Drug-Drug'),
2818 'bool', // data type
2819 '0',
2820 xl('Rx NLM Drug-Drug')
2822 'rx_paper_size' => array(
2823 xl('Rx Paper Size'), // descriptive name
2824 array(
2825 'LETTER' => xl('Letter Paper Size'),
2826 'LEGAL' => xl('Legal Paper Size'),
2827 'FOLIO' => xl('Folio Paper Size'),
2828 'EXECUTIVE' => xl('Executive Paper Size'),
2829 '4A0' => ('4A0' . " " . xl('Paper Size')),
2830 '2A0' => ('2A0' . " " . xl('Paper Size')),
2831 'A0' => ('A0' . " " . xl('Paper Size')),
2832 'A1' => ('A1' . " " . xl('Paper Size')),
2833 'A2' => ('A2' . " " . xl('Paper Size')),
2834 'A3' => ('A3' . " " . xl('Paper Size')),
2835 'A4' => ('A4' . " " . xl('Paper Size')),
2836 'A5' => ('A5' . " " . xl('Paper Size')),
2837 'A6' => ('A6' . " " . xl('Paper Size')),
2838 'A7' => ('A7' . " " . xl('Paper Size')),
2839 'A8' => ('A8' . " " . xl('Paper Size')),
2840 'A9' => ('A9' . " " . xl('Paper Size')),
2841 'A10' => ('A10' . " " . xl('Paper Size')),
2842 'B0' => ('B0' . " " . xl('Paper Size')),
2843 'B1' => ('B1' . " " . xl('Paper Size')),
2844 'B2' => ('B2' . " " . xl('Paper Size')),
2845 'B3' => ('B3' . " " . xl('Paper Size')),
2846 'B4' => ('B4' . " " . xl('Paper Size')),
2847 'B5' => ('B5' . " " . xl('Paper Size')),
2848 'B6' => ('B6' . " " . xl('Paper Size')),
2849 'B7' => ('B7' . " " . xl('Paper Size')),
2850 'B8' => ('B8' . " " . xl('Paper Size')),
2851 'B9' => ('B9' . " " . xl('Paper Size')),
2852 'B10' => ('B10' . " " . xl('Paper Size')),
2853 'C0' => ('C0' . " " . xl('Paper Size')),
2854 'C1' => ('C1' . " " . xl('Paper Size')),
2855 'C2' => ('C2' . " " . xl('Paper Size')),
2856 'C3' => ('C3' . " " . xl('Paper Size')),
2857 'C4' => ('C4' . " " . xl('Paper Size')),
2858 'C5' => ('C5' . " " . xl('Paper Size')),
2859 'C6' => ('C6' . " " . xl('Paper Size')),
2860 'C7' => ('C7' . " " . xl('Paper Size')),
2861 'C8' => ('C8' . " " . xl('Paper Size')),
2862 'C9' => ('C9' . " " . xl('Paper Size')),
2863 'C10' => ('C10' . " " . xl('Paper Size')),
2864 'RA0' => ('RA0' . " " . xl('Paper Size')),
2865 'RA1' => ('RA1' . " " . xl('Paper Size')),
2866 'RA2' => ('RA2' . " " . xl('Paper Size')),
2867 'RA3' => ('RA3' . " " . xl('Paper Size')),
2868 'RA4' => ('RA4' . " " . xl('Paper Size')),
2869 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2870 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2871 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2872 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2873 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2875 'LETTER', // default = tree menu
2876 xl('Rx Paper Size')
2878 'rx_left_margin' => array(
2879 xl('Rx Left Margin (px)'),
2880 'num',
2881 '30',
2882 xl('Rx Left Margin (px)')
2884 'rx_right_margin' => array(
2885 xl('Rx Right Margin (px)'),
2886 'num',
2887 '30',
2888 xl('Rx Right Margin (px)')
2890 'rx_top_margin' => array(
2891 xl('Rx Top Margin (px)'),
2892 'num',
2893 '72',
2894 xl('Rx Top Margin (px)')
2896 'rx_bottom_margin' => array(
2897 xl('Rx Bottom Margin (px)'),
2898 'num',
2899 '30',
2900 xl('Rx Bottom Margin (px)')
2904 'PDF' => array(
2905 'pdf_layout' => array(
2906 xl('Layout'),
2907 array(
2908 'P' => xl('Portrait'),
2909 'L' => xl('Landscape')
2911 'P', //defaut
2912 xl("Choose Layout Direction"),
2914 'pdf_language' => array(
2915 xl('PDF Language'),
2916 array(
2917 'aa' => xl('Afar'),
2918 'af' => xl('Afrikaans'),
2919 'ak' => xl('Akan'),
2920 'sq' => xl('Albanian'),
2921 'am' => xl('Amharic'),
2922 'ar' => xl('Arabic'),
2923 'an' => xl('Aragonese'),
2924 'hy' => xl('Armenian'),
2925 'as' => xl('Assamese'),
2926 'av' => xl('Avaric'),
2927 'ae' => xl('Avestan'),
2928 'ay' => xl('Aymara'),
2929 'az' => xl('Azerbaijani'),
2930 'bm' => xl('Bambara'),
2931 'ba' => xl('Bashkir'),
2932 'eu' => xl('Basque'),
2933 'be' => xl('Belarusian'),
2934 'bn' => xl('Bengali- Bangla'),
2935 'bh' => xl('Bihari'),
2936 'bi' => xl('Bislama'),
2937 'bs' => xl('Bosnian'),
2938 'br' => xl('Breton'),
2939 'bg' => xl('Bulgarian'),
2940 'my' => xl('Burmese'),
2941 'ca' => xl('Catalan- Valencian'),
2942 'ch' => xl('Chamorro'),
2943 'ce' => xl('Chechen'),
2944 'ny' => xl('Chichewa- Chewa- Nyanja'),
2945 'zh' => xl('Chinese'),
2946 'cv' => xl('Chuvash'),
2947 'kw' => xl('Cornish'),
2948 'co' => xl('Corsican'),
2949 'cr' => xl('Cree'),
2950 'hr' => xl('Croatian'),
2951 'cs' => xl('Czech'),
2952 'da' => xl('Danish'),
2953 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2954 'nl' => xl('Dutch'),
2955 'dz' => xl('Dzongkha'),
2956 'en' => xl('English'),
2957 'eo' => xl('Esperanto'),
2958 'et' => xl('Estonian'),
2959 'ee' => xl('Ewe'),
2960 'fo' => xl('Faroese'),
2961 'fj' => xl('Fijian'),
2962 'fi' => xl('Finnish'),
2963 'fr' => xl('French'),
2964 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2965 'gl' => xl('Galician'),
2966 'ka' => xl('Georgian'),
2967 'de' => xl('German'),
2968 'el' => xl('Greek, Modern'),
2969 'gn' => xl('Guarani'),
2970 'gu' => xl('Gujarati'),
2971 'ht' => xl('Haitian- Haitian Creole'),
2972 'ha' => xl('Hausa'),
2973 'he' => xl('Hebrew (modern)'),
2974 'hz' => xl('Herero'),
2975 'hi' => xl('Hindi'),
2976 'ho' => xl('Hiri Motu'),
2977 'hu' => xl('Hungarian'),
2978 'ia' => xl('Interlingua'),
2979 'id' => xl('Indonesian'),
2980 'ie' => xl('Interlingue'),
2981 'ga' => xl('Irish'),
2982 'ig' => xl('Igbo'),
2983 'ik' => xl('Inupiaq'),
2984 'io' => xl('Ido'),
2985 'is' => xl('Icelandic'),
2986 'it' => xl('Italian'),
2987 'iu' => xl('Inuktitut'),
2988 'ja' => xl('Japanese'),
2989 'jv' => xl('Javanese'),
2990 'kl' => xl('Kalaallisut, Greenlandic'),
2991 'kn' => xl('Kannada'),
2992 'kr' => xl('Kanuri'),
2993 'ks' => xl('Kashmiri'),
2994 'kk' => xl('Kazakh'),
2995 'km' => xl('Khmer'),
2996 'ki' => xl('Kikuyu, Gikuyu'),
2997 'rw' => xl('Kinyarwanda'),
2998 'ky' => xl('Kyrgyz'),
2999 'kv' => xl('Komi'),
3000 'kg' => xl('Kongo'),
3001 'ko' => xl('Korean'),
3002 'ku' => xl('Kurdish'),
3003 'kj' => xl('Kwanyama, Kuanyama'),
3004 'la' => xl('Latin'),
3005 'lb' => xl('Luxembourgish, Letzeburgesch'),
3006 'lg' => xl('Ganda'),
3007 'li' => xl('Limburgish, Limburgan, Limburger'),
3008 'ln' => xl('Lingala'),
3009 'lo' => xl('Lao'),
3010 'lt' => xl('Lithuanian'),
3011 'lu' => xl('Luba-Katanga'),
3012 'lv' => xl('Latvian'),
3013 'gv' => xl('Manx'),
3014 'mk' => xl('Macedonian'),
3015 'mg' => xl('Malagasy'),
3016 'ms' => xl('Malay'),
3017 'ml' => xl('Malayalam'),
3018 'mt' => xl('Maltese'),
3019 'mi' => xl('Maori'),
3020 'mr' => xl('Marathi (Marathi)'),
3021 'mh' => xl('Marshallese'),
3022 'mn' => xl('Mongolian'),
3023 'na' => xl('Nauru'),
3024 'nv' => xl('Navajo, Navaho'),
3025 'nb' => xl('Norwegian Bokmal'),
3026 'nd' => xl('North Ndebele'),
3027 'ne' => xl('Nepali'),
3028 'ng' => xl('Ndonga'),
3029 'nn' => xl('Norwegian Nynorsk'),
3030 'no' => xl('Norwegian'),
3031 'ii' => xl('Nuosu'),
3032 'nr' => xl('South Ndebele'),
3033 'oc' => xl('Occitan'),
3034 'oj' => xl('Ojibwe, Ojibwa'),
3035 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
3036 'om' => xl('Oromo'),
3037 'or' => xl('Oriya'),
3038 'os' => xl('Ossetian, Ossetic'),
3039 'pa' => xl('Panjabi, Punjabi'),
3040 'pi' => xl('Pali'),
3041 'fa' => xl('Persian (Farsi)'),
3042 'pl' => xl('Polish'),
3043 'ps' => xl('Pashto, Pushto'),
3044 'pt' => xl('Portuguese'),
3045 'qu' => xl('Quechua'),
3046 'rm' => xl('Romansh'),
3047 'rn' => xl('Kirundi'),
3048 'ro' => xl('Romanian'),
3049 'ru' => xl('Russian'),
3050 'sa' => xl('Sanskrit (Samskrta)'),
3051 'sc' => xl('Sardinian'),
3052 'sd' => xl('Sindhi'),
3053 'se' => xl('Northern Sami'),
3054 'sm' => xl('Samoan'),
3055 'sg' => xl('Sango'),
3056 'sr' => xl('Serbian'),
3057 'gd' => xl('Scottish Gaelic- Gaelic'),
3058 'sn' => xl('Shona'),
3059 'si' => xl('Sinhala, Sinhalese'),
3060 'sk' => xl('Slovak'),
3061 'sl' => xl('Slovene'),
3062 'so' => xl('Somali'),
3063 'st' => xl('Southern Sotho'),
3064 'es' => xl('Spanish- Castilian'),
3065 'su' => xl('Sundanese'),
3066 'sw' => xl('Swahili'),
3067 'ss' => xl('Swati'),
3068 'sv' => xl('Swedish'),
3069 'ta' => xl('Tamil'),
3070 'te' => xl('Telugu'),
3071 'tg' => xl('Tajik'),
3072 'th' => xl('Thai'),
3073 'ti' => xl('Tigrinya'),
3074 'bo' => xl('Tibetan Standard, Tibetan, Central'),
3075 'tk' => xl('Turkmen'),
3076 'tl' => xl('Tagalog'),
3077 'tn' => xl('Tswana'),
3078 'to' => xl('Tonga (Tonga Islands)'),
3079 'tr' => xl('Turkish'),
3080 'ts' => xl('Tsonga'),
3081 'tt' => xl('Tatar'),
3082 'tw' => xl('Twi'),
3083 'ty' => xl('Tahitian'),
3084 'ug' => xl('Uyghur, Uighur'),
3085 'uk' => xl('Ukrainian'),
3086 'ur' => xl('Urdu'),
3087 'uz' => xl('Uzbek'),
3088 've' => xl('Venda'),
3089 'vi' => xl('Vietnamese'),
3090 'vo' => xl('Volapuk'),
3091 'wa' => xl('Walloon'),
3092 'cy' => xl('Welsh'),
3093 'wo' => xl('Wolof'),
3094 'fy' => xl('Western Frisian'),
3095 'xh' => xl('Xhosa'),
3096 'yi' => xl('Yiddish'),
3097 'yo' => xl('Yoruba'),
3098 'za' => xl('Zhuang, Chuang'),
3099 'zu' => xl('Zulu'),
3101 'en', // default English
3102 xl('Choose PDF languange Preference'),
3104 'pdf_size' => array(
3105 xl('Paper Size'), // Descriptive Name
3106 array(
3107 'LETTER' => xl('Letter Paper Size'),
3108 'LEGAL' => xl('Legal Paper Size'),
3109 'FOLIO' => xl('Folio Paper Size'),
3110 'EXECUTIVE' => xl('Executive Paper Size'),
3111 '4A0' => ('4A0' . " " . xl('Paper Size')),
3112 '2A0' => ('2A0' . " " . xl('Paper Size')),
3113 'A0' => ('A0' . " " . xl('Paper Size')),
3114 'A1' => ('A1' . " " . xl('Paper Size')),
3115 'A2' => ('A2' . " " . xl('Paper Size')),
3116 'A3' => ('A3' . " " . xl('Paper Size')),
3117 'A4' => ('A4' . " " . xl('Paper Size')),
3118 'A5' => ('A5' . " " . xl('Paper Size')),
3119 'A6' => ('A6' . " " . xl('Paper Size')),
3120 'A7' => ('A7' . " " . xl('Paper Size')),
3121 'A8' => ('A8' . " " . xl('Paper Size')),
3122 'A9' => ('A9' . " " . xl('Paper Size')),
3123 'A10' => ('A10' . " " . xl('Paper Size')),
3124 'B0' => ('B0' . " " . xl('Paper Size')),
3125 'B1' => ('B1' . " " . xl('Paper Size')),
3126 'B2' => ('B2' . " " . xl('Paper Size')),
3127 'B3' => ('B3' . " " . xl('Paper Size')),
3128 'B4' => ('B4' . " " . xl('Paper Size')),
3129 'B5' => ('B5' . " " . xl('Paper Size')),
3130 'B6' => ('B6' . " " . xl('Paper Size')),
3131 'B7' => ('B7' . " " . xl('Paper Size')),
3132 'B8' => ('B8' . " " . xl('Paper Size')),
3133 'B9' => ('B9' . " " . xl('Paper Size')),
3134 'B10' => ('B10' . " " . xl('Paper Size')),
3135 'C0' => ('C0' . " " . xl('Paper Size')),
3136 'C1' => ('C1' . " " . xl('Paper Size')),
3137 'C2' => ('C2' . " " . xl('Paper Size')),
3138 'C3' => ('C3' . " " . xl('Paper Size')),
3139 'C4' => ('C4' . " " . xl('Paper Size')),
3140 'C5' => ('C5' . " " . xl('Paper Size')),
3141 'C6' => ('C6' . " " . xl('Paper Size')),
3142 'C7' => ('C7' . " " . xl('Paper Size')),
3143 'C8' => ('C8' . " " . xl('Paper Size')),
3144 'C9' => ('C9' . " " . xl('Paper Size')),
3145 'C10' => ('C10' . " " . xl('Paper Size')),
3146 'RA0' => ('RA0' . " " . xl('Paper Size')),
3147 'RA1' => ('RA1' . " " . xl('Paper Size')),
3148 'RA2' => ('RA2' . " " . xl('Paper Size')),
3149 'RA3' => ('RA3' . " " . xl('Paper Size')),
3150 'RA4' => ('RA4' . " " . xl('Paper Size')),
3151 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3152 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3153 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3154 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3155 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3157 'LETTER',
3158 xl('Choose Paper Size')
3160 'pdf_left_margin' => array(
3161 xl('Left Margin (mm)'),
3162 'num',
3163 '5',
3164 xl('Left Margin (mm)')
3166 'pdf_right_margin' => array(
3167 xl('Right Margin (mm)'),
3168 'num',
3169 '5',
3170 xl('Right Margin (mm)')
3172 'pdf_top_margin' => array(
3173 xl('Top Margin (mm)'),
3174 'num',
3175 '5',
3176 xl('Top Margin (mm)')
3178 'pdf_bottom_margin' => array(
3179 xl('Bottom Margin (px)'),
3180 'num',
3181 '8',
3182 xl('Bottom Margin (px)')
3184 'pdf_output' => array(
3185 xl('Output Type'),
3186 array(
3187 'D' => xl('Download'),
3188 'I' => xl('Inline')
3190 'D', //defaut
3191 xl("Choose Download or Display Inline"),
3194 'chart_label_type' => array(
3195 xl('Patient Label Type'),
3196 array(
3197 '0' => xl('None'),
3198 '1' => '5160',
3199 '2' => '5161',
3200 '3' => '5162'
3202 '1', // default
3203 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3206 'barcode_label_type' => array(
3207 xl('Barcode Label Type'),
3208 array(
3209 '0' => xl('None'),
3210 '1' => 'std25',
3211 '2' => 'int25',
3212 '3' => 'ean8',
3213 '4' => 'ean13',
3214 '5' => 'upc',
3215 '6' => 'code11',
3216 '7' => 'code39',
3217 '8' => 'code93',
3218 '9' => 'code128',
3219 '10' => 'codabar',
3220 '11' => 'msi',
3221 '12' => 'datamatrix'
3223 '9', // default = None
3224 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3227 'addr_label_type' => array(
3228 xl('Print Patient Address Label'),
3229 'bool', // data type
3230 '1', // default = false
3231 xl('Select to print patient address labels from popups in left nav screen.')
3234 'env_x_width' => array(
3235 xl('Envelope Width in mm'),
3236 'num', // data type
3237 '104.775',
3238 xl('In Portrait mode, determines the width of the envelope along the x-axis in mm')
3241 'env_y_height' => array(
3242 xl('Envelope Height in mm'),
3243 'num', // data type
3244 '241.3',
3245 xl('In Portrait mode, determines the height of the envelope along the y-axis in mm')
3248 'env_font_size' => array(
3249 xl('Font Size in Pt'),
3250 'num', // data type
3251 '14',
3252 xl('Sets the font of the address text on the envelope in mm')
3255 'env_x_dist' => array(
3256 xl('Envelope x-axis starting pt'),
3257 'num', // data type
3258 '65',
3259 xl('Distance from the \'top\' of the envelope in mm')
3262 'env_y_dist' => array(
3263 xl('Envelope y-axis starting pt'),
3264 'num', // data type
3265 '220',
3266 xl(' Distance from the right most edge of the envelope in portrait position in mm')