POS default selection for encounter (#1088)
[openemr.git] / library / globals.inc.php
blob17d090ff9ac6f5676edf9802bb854b6f87fc13d5
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 'new_tabs_layout',
105 'theme_tabs_layout',
106 'css_header',
107 'menu_styling_vertical',
108 'default_encounter_view',
109 'gbl_pt_list_page_size',
110 'gbl_pt_list_new_window',
111 'units_of_measurement',
112 'us_weight_format',
113 'date_display_format',
114 'time_display_format',
115 'ledger_begin_date',
116 'print_next_appointment_on_ledger',
117 'calendar_view_type',
118 'event_color',
119 'pat_trkr_timer',
120 'ptkr_visit_reason',
121 'checkout_roll_off',
122 'patient_birthday_alert',
123 'patient_birthday_alert_manual_off',
124 'erx_import_status_message');
126 // Gets array of time zones supported by PHP.
128 function gblTimeZones()
130 $zones = timezone_identifiers_list();
131 $arr = array('' => xl('Unassigned'));
132 foreach ($zones as $zone) {
133 $arr[$zone] = str_replace('_', ' ', $zone);
136 return $arr;
139 $GLOBALS_METADATA = array(
141 // Appearance Tab
143 'Appearance' => array(
145 'default_top_pane' => array(
146 xl('Main Top Pane Screen'), // descriptive name
147 array(
148 'main_info.php' => xl('Calendar Screen'),
149 '../new/new.php' => xl('Patient Search/Add Screen'),
150 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
151 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
153 'main_info.php', // default = calendar
154 xl('Type of screen layout')
157 'new_tabs_layout' => array(
158 xl('Layout (need to logout/login after change this setting)'),
159 array(
160 '0' => xl('Frame'),
161 '1' => xl('Tabs'),
163 '1',
164 xl('Choose the layout (need to logout and then login to see this new setting).')
167 'theme_tabs_layout' => array(
168 xl('Tabs Layout Theme (need to logout/login after change this setting)'),
169 'tabs_css',
170 'tabs_style_full.css',
171 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.')
174 'css_header' => array(
175 xl('General Theme (need to logout/login after change this setting)'),
176 'css',
177 'style_light.css',
178 xl('Pick a general theme (need to logout/login after change this setting).')
181 'font-family' => [
182 xl('Default font (need to logout/login after change this setting)'),
184 '__default__' => 'Use Theme Font',
185 'Arial, Helvetica, sans-serif' => "Arial",
186 '"Arial Black", Gadget, sans-serif' => "Arial Black",
187 'Impact, Charcoal, sans-serif' => "Impact",
188 '"Lucida Sans Unicode", "Lucida Grande", sans-serif' => "Lucida Sans",
189 'Tahoma, Geneva, sans-serif' => "Tahoma",
190 '"Trebuchet MS", Helvetica, sans-serif' => "Trebuchet MS",
191 'Verdana, Geneva, sans-serif' => "Verdana",
192 'lato' => "Lato",
194 '__default__',
195 xl('Select the default font'),
198 'font-size' => [
199 xl('Default font size (need to logout/login after change this setting)'),
201 '__default__' => 'Use Theme Font Size',
202 '10px' => '10px',
203 '12px' => '12px',
204 '14px' => '14px',
205 '16px' => '16px',
206 '18px' => '18px',
208 '__default__',
209 xl("Select the default font size"),
212 'menu_styling_vertical' => array(
213 xl('Vertical Menu Style'),
214 array(
215 '0' => xl('Tree'),
216 '1' => xl('Sliding'),
218 '1',
219 xl('Vertical Menu Style')
222 'default_encounter_view' => array(
223 xl('Default Encounter View'), // descriptive name
224 array(
225 '0' => xl('Clinical View'),
226 '1' => xl('Billing View'),
228 '0', // default = tree menu
229 xl('Choose your default encounter view')
232 'gbl_nav_area_width' => array(
233 xl('Navigation Area Width'),
234 'num',
235 '150',
236 xl('Width in pixels of the left navigation frame.')
239 'openemr_name' => array(
240 xl('Application Title'),
241 'text',
242 'OpenEMR',
243 xl('Application name for login page and main window title.')
246 'enable_group_therapy' => array(
247 xl('Enable Group Therapy'),
248 'bool', // data type
249 '0', // default = false
250 xl('Enables groups module in system.')
253 'full_new_patient_form' => array(
254 xl('New Patient Form'),
256 array(
257 '0' => xl('Old-style static form without search or duplication check'),
258 '1' => xl('All demographics fields, with search and duplication check'),
259 '2' => xl('Mandatory or specified fields only, search and dup check'),
260 '3' => xl('Mandatory or specified fields only, dup check, no search'),
261 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
263 '1', // default
264 xl('Style of form used for adding new patients')
267 'gbl_edit_patient_form' => array(
268 xl('Modify Patient Form'),
270 array(
271 '0' => xl('Standard check'),
272 '1' => xl('Zend Module check in addition to standard check')
274 '0', // default
275 xl('Validation mechanism for when modifying patient demographics.')
278 'patient_search_results_style' => array(
279 xl('Patient Search Results Style'),
280 array(
281 '0' => xl('Encounter statistics'),
282 '1' => xl('Mandatory and specified fields'),
284 '0', // default
285 xl('Type of columns displayed for patient search results')
288 'gbl_tall_nav_area' => array(
289 xl('Tall Navigation Area'),
290 'bool', // data type
291 '0', // default = false
292 xl('Navigation area uses full height of frameset')
295 'gbl_nav_visit_forms' => array(
296 xl('Navigation Area Visit Forms'),
297 'bool', // data type
298 '1', // default = true
299 xl('Navigation area includes encounter forms')
302 'simplified_demographics' => array(
303 xl('Simplified Demographics'),
304 'bool', // data type
305 '0', // default = false
306 xl('Omit insurance and some other things from the demographics form')
309 'simplified_prescriptions' => array(
310 xl('Simplified Prescriptions'),
311 'bool', // data type
312 '0', // default = false
313 xl('Omit form, route and interval which then become part of dosage')
316 'simplified_copay' => array(
317 xl('Simplified Co-Pay'),
318 'bool', // data type
319 '0', // default = false
320 xl('Omit method of payment from the co-pay panel')
323 'use_charges_panel' => array(
324 xl('Use Charges Panel'),
325 'bool', // data type
326 '0', // default = false
327 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
330 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
331 'enable_fees_in_left_menu' => array(
332 xl('Enable Fees Submenu'),
333 'bool', // data type
334 '1', // default = true
335 xl('Enable Fees Submenu')
337 'enable_batch_payment' => array(
338 xl('Enable Batch Payment'),
339 'bool', // data type
340 '1', // default = true
341 xl('Enable Batch Payment')
343 'enable_posting' => array(
344 xl('Enable Posting'),
345 'bool', // data type
346 '1', // default = true
347 xl('Enable Posting')
349 // EDI history 2012-09-13
350 'enable_edihistory_in_left_menu' => array(
351 xl('Enable EDI History'),
352 'bool', // data type
353 '1', // default = true
354 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
357 'online_support_link' => array(
358 xl('Online Support Link'),
359 'text', // data type
360 'http://open-emr.org/',
361 xl('URL for OpenEMR support.')
364 'support_phone_number' => array(
365 xl('Support Phone Number'),
366 'text',
368 xl('Phone Number for Vendor Support that Appears on the About Page.')
371 'encounter_page_size' => array(
372 xl('Encounter Page Size'),
373 array(
374 '0' => xl('Show All'),
375 '5' => '5',
376 '10' => '10',
377 '15' => '15',
378 '20' => '20',
379 '25' => '25',
380 '50' => '50',
382 '20',
383 xl('Number of encounters to display per page.')
386 'gbl_pt_list_page_size' => array(
387 xl('Patient List Page Size'),
388 array(
389 '10' => '10',
390 '25' => '25',
391 '50' => '50',
392 '100' => '100',
394 '10',
395 xl('Number of patients to display per page in the patient list.')
398 'gbl_pt_list_new_window' => array(
399 xl('Patient List New Window'),
400 'bool', // data type
401 '0', // default = false
402 xl('Default state of New Window checkbox in the patient list.')
405 'gbl_vitals_options' => array(
406 xl('Vitals Form Options'),
407 array(
408 '0' => xl('Standard'),
409 '1' => xl('Omit circumferences'),
411 '0', // default
412 xl('Special treatment for the Vitals form')
415 'insurance_information' => array(
416 xl('Show Additional Insurance Information'), // descriptive name
417 array(
418 '0' => xl('None'),
419 '1' => xl('Address Only'),
420 '2' => xl('Address and Postal Code'),
421 '3' => xl('Address and State'),
422 '4' => xl('Address, State and Postal Code'),
423 '5' => xl('Address, City, State and Postal Code'),
424 '6' => xl('Postal Code and Box Number')
426 '5', // default
427 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
430 'gb_how_sort_list' => array(
431 xl('How to sort a drop-lists'),
432 array(
433 '0' => xl('Sort by seq'),
434 '1' => xl('Sort alphabetically')
436 '0',
437 xl('What kind of sorting will be in the drop lists.')
440 'show_label_login' => array(
441 xl('Show Title on Login'),
442 'bool', // data type
443 '0', // default = false
444 xl('Show Title on Login')
447 'extra_logo_login' => array(
448 xl('Show Extra Logo on Login'),
449 'bool', // data type
450 '0', // default = false
451 xl('Show Extra Logo on Login')
454 'tiny_logo_1' => array(
455 xl('Show Mini Logo 1'),
456 'bool', // data type
457 '0', // default = false
458 xl('Show Mini Logo 1')
461 'tiny_logo_2' => array(
462 xl('Show Mini Logo 2'),
463 'bool', // data type
464 '0', // default = false
465 xl('Show Mini Logo 2')
470 // Locale Tab
472 'Locale' => array(
474 'language_default' => array(
475 xl('Default Language'),
476 'lang', // data type
477 'English (Standard)', // default = english
478 xl('Default language if no other is allowed or chosen.')
481 'language_menu_showall' => array(
482 xl('All Languages Allowed'),
483 'bool', // data type
484 '1', // default = true
485 xl('Allow all available languages as choices on menu at login.')
488 'language_menu_other' => array(
489 xl('Allowed Languages'),
490 'm_lang', // data type
491 '', // default = none
492 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
495 'allow_debug_language' => array(
496 xl('Allow Debugging Language'),
497 'bool', // data type
498 '1', // default = true during development and false for production releases
499 xl('This will allow selection of the debugging (\'dummy\') language.')
502 'translate_no_safe_apostrophe' => array(
503 xl('Do Not Use Safe Apostrophe'),
504 'bool', // data type
505 '0', // default = false
506 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)')
509 'translate_layout' => array(
510 xl('Translate Layouts'),
511 'bool', // data type
512 '1', // default = true
513 xl('Is text from form layouts to be translated?')
516 'translate_lists' => array(
517 xl('Translate Lists'),
518 'bool', // data type
519 '1', // default = true
520 xl('Is text from lists to be translated?')
523 'translate_gacl_groups' => array(
524 xl('Translate Access Control Groups'),
525 'bool', // data type
526 '1', // default = true
527 xl('Are access control group names to be translated?')
530 'translate_form_titles' => array(
531 xl('Translate Patient Note Titles'),
532 'bool', // data type
533 '1', // default = true
534 xl('Are patient note titles to be translated?')
537 'translate_document_categories' => array(
538 xl('Translate Document Categories'),
539 'bool', // data type
540 '1', // default = true
541 xl('Are document category names to be translated?')
544 'translate_appt_categories' => array(
545 xl('Translate Appointment Categories'),
546 'bool', // data type
547 '1', // default = true
548 xl('Are appointment category names to be translated?')
551 'units_of_measurement' => array(
552 xl('Units for Visit Forms'),
553 array(
554 '1' => xl('Show both US and metric (main unit is US)'),
555 '2' => xl('Show both US and metric (main unit is metric)'),
556 '3' => xl('Show US only'),
557 '4' => xl('Show metric only'),
559 '1', // default = Both/US
560 xl('Applies to the Vitals form and Growth Chart')
563 'us_weight_format' => array(
564 xl('Display Format for US Weights'),
565 array(
566 '1' => xl('Show pounds as decimal value'),
567 '2' => xl('Show pounds and ounces')
569 '1',
570 xl('Applies to Vitals form')
573 'phone_country_code' => array(
574 xl('Telephone Country Code'),
575 'num',
576 '1', // default = North America
577 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
580 'date_display_format' => array(
581 xl('Date Display Format'),
582 array(
583 '0' => xl('YYYY-MM-DD'),
584 '1' => xl('MM/DD/YYYY'),
585 '2' => xl('DD/MM/YYYY'),
587 '0',
588 xl('Format used to display most dates.')
591 'time_display_format' => array(
592 xl('Time Display Format'),
593 array(
594 '0' => xl('24 hr'),
595 '1' => xl('12 hr'),
597 '0',
598 xl('Format used to display most times.')
601 'gbl_time_zone' => array(
602 xl('Time Zone'),
603 gblTimeZones(),
605 xl('If unassigned will default to php.ini setting for date.timezone.')
608 'currency_decimals' => array(
609 xl('Currency Decimal Places'),
610 array(
611 '0' => xl('0'),
612 '1' => xl('1'),
613 '2' => xl('2'),
615 '2',
616 xl('Number of digits after decimal point for currency, usually 0 or 2.')
619 'currency_dec_point' => array(
620 xl('Currency Decimal Point Symbol'),
621 array(
622 '.' => xl('Period'),
623 ',' => xl('Comma'),
625 '.',
626 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
629 'currency_thousands_sep' => array(
630 xl('Currency Thousands Separator'),
631 array(
632 ',' => xl('Comma'),
633 '.' => xl('Period'),
634 ' ' => xl('Space'),
635 '' => xl('None'),
637 ',',
638 xl('Symbol used to separate thousands for currency.')
641 'gbl_currency_symbol' => array(
642 xl('Currency Designator'),
643 'text', // data type
644 '$', // default
645 xl('Code or symbol to indicate currency')
647 'age_display_format' => array(xl('Age Display Format'),
648 array(
649 '0' => xl('Years or months'),
650 '1' => xl('Years, months and days')
652 '0',
653 xl('Format for age display')
655 'age_display_limit' => array(
656 xl('Age in Years for Display Format Change'),
657 'num',
658 '3',
659 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
661 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
662 'weekend_days' => array(
663 xl('Your weekend days'),
664 array(
665 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
666 '0' => xl('Sunday'),
667 '5' => xl('Friday'),
668 '6' => xl('Saturday'),
669 '5,6' => xl('Friday') . ' - ' . xl('Saturday'),
671 '6,0'
672 , xl('which days are your weekend days?')
677 // Features Tab
679 'Features' => array(
681 'specific_application' => array(
682 xl('Specific Application'),
683 array(
684 '0' => xl('None'),
685 '2' => xl('IPPF'),
686 '3' => xl('Weight loss clinic'),
688 '0', // default
689 xl('Indicator for specialized usage')
692 'inhouse_pharmacy' => array(
693 xl('Drugs and Products'),
694 array(
695 '0' => xl('Do not inventory and sell any products'),
696 '1' => xl('Inventory and sell drugs only'),
697 '2' => xl('Inventory and sell both drugs and non-drug products'),
698 '3' => xl('Products but no prescription drugs and no templates'),
700 '0', // default
701 xl('Option to support inventory and sales of products')
704 'default_visit_category' => [
705 xl('Default Visit Category'),
706 'default_visit_category',
707 '_blank',
708 xl('Define a default visit category'),
711 'disable_chart_tracker' => array(
712 xl('Disable Chart Tracker'),
713 'bool', // data type
714 '0', // default = false
715 xl('Removes the Chart Tracker feature')
718 'disable_immunizations' => array(
719 xl('Disable Immunizations'),
720 'bool', // data type
721 '0', // default = false
722 xl('Removes support for immunizations')
725 'disable_prescriptions' => array(
726 xl('Disable Prescriptions'),
727 'bool', // data type
728 '0', // default = false
729 xl('Removes support for prescriptions')
732 'omit_employers' => array(
733 xl('Omit Employers'),
734 'bool', // data type
735 '0', // default = false
736 xl('Omit employer information in patient demographics')
739 'select_multi_providers' => array(
740 xl('Support Multi-Provider Events'),
741 'bool', // data type
742 '0', // default = false
743 xl('Support calendar events that apply to multiple providers')
746 'disable_non_default_groups' => array(
747 xl('Disable User Groups'),
748 'bool', // data type
749 '1', // default = true
750 xl('Normally this should be checked. Not related to access control.')
753 'ignore_pnotes_authorization' => array(
754 xl('Skip Authorization of Patient Notes'),
755 'bool', // data type
756 '1', // default = true
757 xl('Do not require patient notes to be authorized')
760 'support_encounter_claims' => array(
761 xl('Allow Encounter Claims'),
762 'bool', // data type
763 '0', // default = false
764 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
767 'advance_directives_warning' => array(
768 xl('Advance Directives Warning'),
769 'bool', // data type
770 '0', // default = false
771 xl('Display advance directives in the demographics page.')
774 'configuration_import_export' => array(
775 xl('Configuration Export/Import'),
776 'bool', // data type
777 '0', // default = false
778 xl('Support export/import of configuration data via the Backup page.')
781 'restrict_user_facility' => array(
782 xl('Restrict Users to Facilities'),
783 'bool', // data type
784 '0', // default
785 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
788 'set_facility_cookie' => array(
789 xl('Remember Selected Facility'),
790 'bool', // data type
791 '0', // default
792 xl('Set a facility cookie to remember the selected facility between logins.')
795 'receipts_by_provider' => array(
796 xl('Print Receipts by Provider'),
797 'bool',
798 '0', // default
799 xl('Causes Receipts to Print Encounter/Primary Provider Info')
802 'discount_by_money' => array(
803 xl('Discounts as Monetary Amounts'),
804 'bool', // data type
805 '1', // default = true
806 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
809 'gbl_visit_referral_source' => array(
810 xl('Referral Source for Encounters'),
811 'bool', // data type
812 '0', // default = false
813 xl('A referral source may be specified for each visit.')
816 'gbl_mask_patient_id' => array(
817 xl('Mask for Patient IDs'),
818 'text', // data type
819 '', // default
820 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
823 'gbl_mask_invoice_number' => array(
824 xl('Mask for Invoice Numbers'),
825 'text', // data type
826 '', // default
827 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
830 'gbl_mask_product_id' => array(
831 xl('Mask for Product IDs'),
832 'text', // data type
833 '', // default
834 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
837 'hide_billing_widget' => array(
838 xl('Hide Billing Widget'),
839 'bool', // data type
840 '0', // default = false
841 xl('This will hide the Billing Widget in the Patient Summary screen')
844 'force_billing_widget_open' => array(
845 xl('Force Billing Widget Open'),
846 'bool', // data type
847 '0', // default = false
848 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
851 'activate_ccr_ccd_report' => array(
852 xl('Activate CCR/CCD Reporting'),
853 'bool', // data type
854 '1', // default = true
855 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
858 'hide_document_encryption' => array(
859 xl('Hide Encryption/Decryption Options In Document Management'),
860 'bool', // data type
861 '1', // default = true
862 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
865 'use_custom_immun_list' => array(
866 xl('Use Custom Immunization List'),
867 'bool', // data type
868 '0', // default = true
869 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
872 'amendments' => array(
873 xl('Amendments'),
874 'bool', // data type
875 '1', // default = true
876 xl('Enable amendments feature')
879 'allow_pat_delete' => array(
880 xl('Allow Administrators to Delete Patients'),
881 'bool', // data type
882 '0', // default = false
883 xl('Allow Administrators to Delete Patients')
887 'observation_results_immunization' => array(
888 xl('Immunization Observation Results'),
889 'bool', // data type
890 '1', // default
891 xl('Observation Results in Immunization')
895 // Report Tab
897 'Report' => array(
899 'use_custom_daysheet' => array(
900 xl('Use Custom End of Day Report'),
901 array(
902 '0' => xl('None'),
903 '1' => xl('Print End of Day Report 1'),
904 '2' => xl('Print End of Day Report 2'),
905 '3' => xl('Print End of Day Report 3'),
906 ), // data type
907 '1', // default = Print End of Day Report 1
908 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
911 'daysheet_provider_totals' => array(
912 xl('End of Day by Provider or allow Totals Only'),
913 array(
914 '0' => xl('Provider'),
915 '1' => xl('Totals Only'),
917 '1', // default
918 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
921 'ledger_begin_date' => array(
922 xl('Beginning Date for Ledger Report'),
923 array(
924 'Y1' => xl('One Year Ago'),
925 'Y2' => xl('Two Years Ago'),
926 'M6' => xl('Six Months Ago'),
927 'M3' => xl('Three Months Ago'),
928 'M1' => xl('One Month Ago'),
929 'D1' => xl('One Day Ago'),
931 'Y1', // default = One Year
932 xl('This is the Beginning date for the Ledger Report.')
935 'print_next_appointment_on_ledger' => array(
936 xl('Print the Next Appointment on the Bottom of the Ledger'),
937 'bool', // data type
938 '1', // default = true
939 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
942 'sales_report_invoice' => array(
943 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
944 array(
945 '0' => xl('Invoice Number'),
946 '1' => xl('Patient Name and ID'),
947 '2' => xl('Patient Name and Invoice'),
949 '2', // default = 2
950 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
953 'cash_receipts_report_invoice' => array(
954 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
955 array(
956 '0' => xl('Invoice Number'),
957 '1' => xl('Patient Name'),
959 '0', // default = 0
960 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
965 // Billing Tab
967 'Billing' => array(
969 'ub04_support' => array(
970 xl('Activate UB04/837I Claim Support'),
971 'bool', // data type
972 '0', // default = false
973 xl('Allow institutional claims support.')
976 'top_ubmargin_default' => array(
977 xl('Default top print margin for UB04'),
978 'num', // data type
979 '14', // default
980 xl('This is the default top print margin for UB04. It will adjust the final printed output up or down.')
983 'left_ubmargin_default' => array(
984 xl('Default left print margin for UB04'),
985 'num', // data type
986 '11', // default
987 xl('This is the default left print margin for UB04. It will adjust the final printed output left or right.')
990 'cms_top_margin_default' => array(
991 xl('Default top print margin for CMS 1500'),
992 'num', // data type
993 '24', // default
994 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
997 'cms_left_margin_default' => array(
998 xl('Default left print margin for CMS 1500'),
999 'num', // data type
1000 '20', // default
1001 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
1004 'preprinted_cms_1500' => array(
1005 xl('Prints the CMS 1500 on the Preprinted form'),
1006 'bool', // data type
1007 '0', // default = false
1008 xl('Overlay CMS 1500 on the Preprinted form')
1011 'cms_1500' => array(
1012 xl('CMS 1500 Paper Form Format'),
1013 array(
1014 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
1015 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
1017 '1', // default
1018 xl('This specifies which revision of the form the billing module should generate')
1021 'cms_1500_box_31_format' => array(
1022 xl('CMS 1500: Box 31 Format'),
1023 array(
1024 '0' => xl('Signature on File'),
1025 '1' => xl('Firstname Lastname'),
1026 '2' => xl('None'),
1028 '0', // default
1029 xl('This specifies whether to include date in Box 31.')
1032 'cms_1500_box_31_date' => array(
1033 xl('CMS 1500: Date in Box 31 (Signature)'),
1034 array(
1035 '0' => xl('None'),
1036 '1' => xl('Date of Service'),
1037 '2' => xl('Today'),
1039 '0', // default
1040 xl('This specifies whether to include date in Box 31.')
1043 'default_search_code_type' => array(
1044 xl('Default Search Code Type'),
1045 'all_code_types', // data type
1046 'ICD10', // default
1047 xl('The default code type to search for in the Fee Sheet.')
1050 'default_rendering_provider' => array(
1051 xl('Default Rendering Provider in Fee Sheet'),
1052 array(
1053 '0' => xl('Please Select'),
1054 '1' => xl('Current Provider'),
1055 '2' => xl('Current Logged in User'),
1057 '1',
1058 xl('Default selection for rendering provider in fee sheet.')
1061 'show_payment_history' => array(
1062 xl('Show all payment history in Patient Ledger'),
1063 'bool', // data type
1064 '1', // default = true
1065 xl('Turn on to show all payment history in Patient Ledger')
1068 'support_fee_sheet_line_item_provider' => array(
1069 xl('Support provider in line item in fee sheet'),
1070 'bool', // data type
1071 '0', // default = false
1072 xl('This Enables provider in line item in the fee sheet')
1075 'default_fee_sheet_line_item_provider' => array(
1076 xl('Default to a provider for line item in the fee sheet'),
1077 'bool', // data type
1078 '0', // default = false
1079 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1082 'replicate_justification' => array(
1083 xl('Automatically replicate justification codes in Fee Sheet'),
1084 'bool', // data type
1085 '0', // default = false
1086 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1089 'display_units_in_billing' => array(
1090 xl('Display the Units Column on the Billing Screen'),
1091 'bool', // data type
1092 '0', // default = false
1093 xl('Display the Units Column on the Billing Screen')
1096 'notes_to_display_in_Billing' => array(
1097 xl('Which notes are to be displayed in the Billing Screen'),
1098 array(
1099 '0' => xl('None'),
1100 '1' => xl('Encounter Billing Note'),
1101 '2' => xl('Patient Billing Note'),
1102 '3' => xl('All'),
1104 '3',
1105 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1108 'set_pos_code_encounter' => array(
1109 xl('Set POS code in encounter'),
1110 'bool', // data type
1111 '0', // default = false
1112 xl('This feature will allow the default POS facility code to be overriden from the encounter.')
1115 'use_custom_statement' => array(
1116 xl('Use Custom Statement'),
1117 'bool', // data type
1118 '0', // default = false
1119 xl('This will use the custom Statment showing the description instead of the codes.')
1122 'statement_appearance' => array(
1123 xl('Statement Appearance'),
1124 array(
1125 '0' => xl('Plain Text'),
1126 '1' => xl('Modern/images')
1127 ), // data type
1128 '1', // default = true
1129 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1132 'billing_phone_number' => array(
1133 xl('Custom Billing Phone Number'),
1134 'text', // data type
1136 xl('Phone number for billing inquiries')
1139 'show_aging_on_custom_statement' => array(
1140 xl('Show Aging on Custom Statement'),
1141 'bool', // data type
1142 '0', // default = false
1143 xl('This will Show Aging on the custom Statement.')
1146 'use_statement_print_exclusion' => array(
1147 xl('Allow Statement Exclusions from Printing'),
1148 'bool', // data type
1149 '0', // default = false
1150 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1153 'minimum_amount_to_print' => array(
1154 xl('Total Minimum Amount of Statement to Allow Printing'),
1155 'num', // data type
1156 '1.00',
1157 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1160 'statement_bill_note_print' => array(
1161 xl('Print Patient Billing Note'),
1162 'bool', // data type
1163 '0', // default = false
1164 xl('This will allow printing of the Patient Billing Note on the statements.')
1167 'number_appointments_on_statement' => array(
1168 xl('Number of Appointments on Statement'),
1169 'num', // data type
1170 '0', // default = 0
1171 xl('The Number of Future Appointments to Display on the Statement.')
1174 'statement_message_to_patient' => array(
1175 xl('Print Custom Message'),
1176 'bool', // data type
1177 '0', // default = false
1178 xl('This will allow printing of a custom Message on the statements.')
1181 'statement_msg_text' => array(
1182 xl('Custom Statement message'),
1183 'text', // data type
1185 xl('Text for Custom statement message.')
1188 'use_dunning_message' => array(
1189 xl('Use Custom Dunning Messages'),
1190 'bool', // data type
1191 '0', // default = false
1192 xl('This will allow use of the custom Dunning Messages on the statements.')
1195 'first_dun_msg_set' => array(
1196 xl('Number of days before showing first account message'),
1197 'num', // data type
1198 '30',
1199 xl('Number of days before showing first account message.')
1202 'first_dun_msg_text' => array(
1203 xl('First account message'),
1204 'text', // data type
1206 xl('Text for first account message.')
1209 'second_dun_msg_set' => array(
1210 xl('Number of days before showing second account message'),
1211 'num', // data type
1212 '60',
1213 xl('Number of days before showing second account message')
1216 'second_dun_msg_text' => array(
1217 xl('Second account message'),
1218 'text', // data type
1220 xl('Text for second account message.')
1223 'third_dun_msg_set' => array(
1224 xl('Number of days before showing third account message'),
1225 'num', // data type
1226 '90',
1227 xl('Number of days before showing third account message')
1230 'third_dun_msg_text' => array(
1231 xl('Third account message'),
1232 'text', // data type
1234 xl('Text for third account message.')
1237 'fourth_dun_msg_set' => array(
1238 xl('Number of days before showing fourth account message'),
1239 'num', // data type
1240 '120',
1241 xl('Number of days before showing fourth account message')
1244 'fourth_dun_msg_text' => array(
1245 xl('Fourth account message'),
1246 'text', // data type
1248 xl('Text for fourth account message.')
1251 'fifth_dun_msg_set' => array(
1252 xl('Number of days before showing fifth account message'),
1253 'num', // data type
1254 '150',
1255 xl('Number of days before showing fifth account message')
1258 'fifth_dun_msg_text' => array(
1259 xl('Fifth account message'),
1260 'text', // data type
1262 xl('Text for fifth account message.')
1264 'save_codes_history' => array(
1265 xl('Save codes history'),
1266 'bool', // data type
1267 '1', // default
1268 xl('Save codes history')
1272 // E-Sign Tab
1274 'E-Sign' => array(
1276 'esign_all' => array(
1277 xl('Allows E-Sign on the entire encounter'),
1278 'bool', // data type
1279 '0', // default = false
1280 xl('This will enable signing an entire encounter, rather than individual forms')
1283 'lock_esign_all' => array(
1284 xl('Lock e-signed encounters and their forms'),
1285 'bool', // data type
1286 '0', // default = false
1287 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1290 'esign_individual' => array(
1291 xl('Allows E-Signing Individual Forms'),
1292 'bool', // data type
1293 '1', // default = false
1294 xl('This will enable signing individual forms separately')
1297 'lock_esign_individual' => array(
1298 xl('Lock an e-signed form individually'),
1299 'bool', // data type
1300 '1', // default = false
1301 xl('This will disable the Edit button on any form that is e-signed')
1304 'esign_lock_toggle' => array(
1305 xl('Enable lock toggle'),
1306 'bool', // data type
1307 '0', // default = false
1308 xl('This will give the user the option to lock (separate locking and signing)')
1311 'esign_report_hide_empty_sig' => array(
1312 xl('Hide Empty E-Sign Logs On Report'),
1313 'bool', // data type
1314 '1', // default = false
1315 xl('This will hide empty e-sign logs on the patient report')
1319 //Documents Tab
1320 'Documents' => array(
1322 'document_storage_method' => array(
1323 xl('Document Storage Method'),
1324 array(
1325 '0' => xl('Hard Disk'),
1326 '1' => xl('CouchDB')
1328 '0', // default
1329 xl('Option to save method of document storage.')
1332 'couchdb_host' => array(
1333 xl('CouchDB HostName'),
1334 'text',
1335 'localhost',
1336 xl('CouchDB host'),
1338 'couchdb_user' => array(
1339 xl('CouchDB UserName'),
1340 'text',
1342 xl('Username to connect to CouchDB'),
1344 'couchdb_pass' => array(
1345 xl('CouchDB Password'),
1346 'text',
1348 xl('Password to connect to CouchDB'),
1350 'couchdb_port' => array(
1351 xl('CouchDB Port'),
1352 'text',
1353 '5984',
1354 xl('CouchDB port'),
1356 'couchdb_dbase' => array(
1357 xl('CouchDB Database'),
1358 'text',
1360 xl('CouchDB database name'),
1362 'couchdb_log' => array(
1363 xl('CouchDB Log Enable'),
1364 'bool',
1365 '0',
1366 xl('Enable log for document uploads/downloads to CouchDB'),
1369 'expand_document_tree' => array(
1370 xl('Expand All Document Categories'),
1371 'bool', // data type
1372 '0', // default = false
1373 xl('Expand All Document Categories by Default')
1376 'patient_id_category_name' => array(
1377 xl('Patient ID Category Name'),
1378 'text', // data type
1379 'Patient ID card', // default
1380 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1383 'patient_photo_category_name' => array(
1384 xl('Patient Photo Category Name'),
1385 'text', // data type
1386 'Patient Photograph', // default
1387 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1390 'lab_results_category_name' => array(
1391 xl('Lab Results Category Name'),
1392 'text', // data type
1393 'Lab Report', // default
1394 xl('Document category name for storage of electronically received lab results.')
1397 'gbl_mdm_category_name' => array(
1398 xl('MDM Document Category Name'),
1399 'text', // data type
1400 'Lab Report', // default
1401 xl('Document category name for storage of electronically received MDM documents.')
1403 'generate_doc_thumb' => array(
1404 xl('Generate thumbnail'),
1405 'bool',
1406 '0',
1407 xl('Generate thumbnail images'),
1409 'thumb_doc_max_size' => array(
1410 xl('Thumbnail size'),
1411 'text', // data type
1412 '100', // default
1413 xl('Maximum size of thumbnail file')
1417 // Calendar Tab
1419 'Calendar' => array(
1421 'disable_calendar' => array(
1422 xl('Disable Calendar'),
1423 'bool', // data type
1424 '0', // default
1425 xl('Do not display the calendar.')
1428 'schedule_start' => array(
1429 xl('Calendar Starting Hour'),
1430 'hour',
1431 '8', // default
1432 xl('Beginning hour of day for calendar events.')
1435 'schedule_end' => array(
1436 xl('Calendar Ending Hour'),
1437 'hour',
1438 '17', // default
1439 xl('Ending hour of day for calendar events.')
1442 'calendar_interval' => array(
1443 xl('Calendar Interval'),
1444 array(
1445 '5' => '5',
1446 '10' => '10',
1447 '15' => '15',
1448 '20' => '20',
1449 '30' => '30',
1450 '60' => '60',
1452 '15', // default
1453 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1456 'calendar_view_type' => array(
1457 xl('Default Calendar View'),
1458 array(
1459 'day' => xl('Day'),
1460 'week' => xl('Week'),
1461 'month' => xl('Month'),
1463 'day', // default
1464 xl('This sets the Default Calendar View, Default is Day.')
1466 'first_day_week' => array(
1467 xl('First day in the week'),
1468 array(
1469 '1' => xl('Monday'),
1470 '0' => xl('Sunday'),
1471 '6' => xl('Saturday')
1473 '1',
1474 xl('Your first day of the week.')
1476 'calendar_appt_style' => array(
1477 xl('Appointment Display Style'),
1478 array(
1479 '1' => xl('Last name'),
1480 '2' => xl('Last name, first name'),
1481 '3' => xl('Last name, first name (title)'),
1482 '4' => xl('Last name, first name (title: comments)'),
1484 '2', // default
1485 xl('This determines how appointments display on the calendar.')
1488 'event_color' => array(
1489 xl('Appointment/Event Color'),
1490 array(
1491 '1' => xl('Category Color Schema'),
1492 '2' => xl('Facility Color Schema'),
1493 ), // data type
1494 '1', // default
1495 xl('This determines which color schema used for appointment')
1498 'number_of_appts_to_show' => array(
1499 xl('Appointments - Patient Summary - Number to Display'),
1500 'num',
1501 '10',
1502 xl('Number of Appointments to display in the Patient Summary')
1505 'number_of_group_appts_to_show' => array(
1506 xl('Appointments - Group Summary - Number to Display'),
1507 'num',
1508 '10',
1509 xl('Number of Appointments to display in the Group Summary')
1511 'number_of_ex_appts_to_show' => array(
1512 xl('Excluded Appointments - Tooltip - Number to Display'),
1513 'num',
1514 '15',
1515 xl('Number of Excluded Appointments to display in the Tooltip')
1519 'patient_portal_appt_display_num' => array(
1520 xl('Appointments - Onsite Patient Portal - Number to Display'),
1521 'num',
1522 '20',
1523 xl('Number of Appointments to display in the Onsite Patient Portal')
1526 'appt_display_sets_option' => array(
1527 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1528 'bool', // data type
1529 '1', // default
1530 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1533 'appt_display_sets_color_1' => array(
1534 xl('Appointment Display Sets - Color 1'),
1535 'color_code',
1536 '#FFFFFF',
1537 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).')
1540 'appt_display_sets_color_2' => array(
1541 xl('Appointment Display Sets - Color 2'),
1542 'color_code',
1543 '#E6E6FF',
1544 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).')
1547 'appt_display_sets_color_3' => array(
1548 xl('Appointment Display Sets - Color 3'),
1549 'color_code',
1550 '#E6FFE6',
1551 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1554 'appt_display_sets_color_4' => array(
1555 xl('Appointment Display Sets - Color 4'),
1556 'color_code',
1557 '#FFE6FF',
1558 xl('Color for the last set when not all member appointments are displayed.')
1561 'appt_recurrences_widget' => array(
1562 xl('Recurrent Appointment Display Widget'),
1563 'bool', // data type
1564 '1', // default
1565 xl('Display the recurrent appointment widget in the patient summary.')
1568 'num_past_appointments_to_show' => array(
1569 xl('Past Appointment Display Widget'),
1570 'num', // data type
1571 '0', // default = false
1572 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)')
1575 'docs_see_entire_calendar' => array(
1576 xl('Providers See Entire Calendar'),
1577 'bool', // data type
1578 '0', // default
1579 xl('Check this if you want providers to see all appointments by default and not just their own.')
1582 'auto_create_new_encounters' => array(
1583 xl('Auto-Create New Encounters'),
1584 'bool', // data type
1585 '1', // default
1586 xl('Automatically create a new encounter when an appointment check in status is selected.')
1588 'allow_early_check_in' => array(
1589 xl('Allow Early Check In'),
1590 'bool', // data type
1591 '1', // default
1592 xl("Allow Check In before the appointment's time.")
1594 'disable_pat_trkr' => array(
1595 xl('Disable Patient Flow Board'),
1596 'bool', // data type
1597 '0', // default
1598 xl('Do not display the patient flow board.')
1601 'ptkr_visit_reason' => array(
1602 xl('Show Visit Reason in Patient Flow Board'),
1603 'bool', // data type
1604 '0', // default = false
1605 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1608 'ptkr_show_pid' => array(
1609 xl('Show Patient ID in Patient Flow Board'),
1610 'bool', // data type
1611 '1', // default = true
1612 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1615 'ptkr_show_encounter' => array(
1616 xl('Show Patient Encounter Number in Patient Flow Board'),
1617 'bool', // data type
1618 '1', // default = true
1619 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1622 'pat_trkr_timer' => array(
1623 xl('Patient Flow Board Timer Interval'),
1624 array(
1625 '0' => xl('No automatic refresh'),
1626 '0:10' => '10',
1627 '0:20' => '20',
1628 '0:30' => '30',
1629 '0:40' => '40',
1630 '0:50' => '50',
1631 '0:59' => '60',
1633 '0:20', // default
1634 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1637 'checkout_roll_off' => array(
1638 xl('Number of Minutes to display completed checkouts'),
1639 'num',
1640 '0', // default
1641 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1644 'drug_screen' => array(
1645 xl('Enable Random Drug Testing'),
1646 'bool', // data type
1647 '0', // default
1648 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1651 'drug_testing_percentage' => array(
1652 xl('Percentage of Patients to Drug Test'),
1653 'num',
1654 '33', // default
1655 xl('Percentage of Patients to select for Random Drug Testing.')
1658 'maximum_drug_test_yearly' => array(
1659 xl('Maximum number of times a Patient can be tested in a year'),
1660 'num',
1661 '0', // default
1662 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1665 'submit_changes_for_all_appts_at_once' => array(
1666 xl('Submit Changes For All Appts At Once'),
1667 'bool', // data type
1668 '1', // default
1669 xl('Enables to submit changes for all appointments of a recurrence at once.')
1675 // Security Tab
1677 'Security' => array(
1678 'sql_string_no_show_screen' => array(
1679 xl('Mode - Do Not Show SQL Queries'),
1680 'bool', // data type
1681 '0', // default
1682 xl('Do not allow SQL queries to be outputted to screen.')
1684 'timeout' => array(
1685 xl('Idle Session Timeout Seconds'),
1686 'num', // data type
1687 '7200', // default
1688 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1690 'secure_upload' => array(
1691 xl('Secure Upload Files with White List'),
1692 'bool', // data type
1693 '0', // default
1694 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1696 'secure_password' => array(
1697 xl('Require Strong Passwords'),
1698 'bool', // data type
1699 '0', // default
1700 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1702 'password_history' => array(
1703 xl('Require Unique Passwords'),
1704 'bool', // data type
1705 '0', // default
1706 xl('Means none of last three passwords are allowed when changing a password.')
1708 'password_compatibility' => array(
1709 xl('Permit unsalted passwords'),
1710 'bool', // data type
1711 '1', // default
1712 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')
1715 'password_expiration_days' => array(
1716 xl('Default Password Expiration Days'),
1717 'num', // data type
1718 '0', // default
1719 xl('Default password expiration period in days. 0 means this feature is disabled.')
1722 'password_grace_time' => array(
1723 xl('Password Expiration Grace Period'),
1724 'num', // data type
1725 '0', // default
1726 xl('Period in days where a user may login with an expired password.')
1729 'is_client_ssl_enabled' => array(
1730 xl('Enable Client SSL'),
1731 'bool', // data type
1732 '0', // default
1733 xl('Enable client SSL certificate authentication.')
1736 'certificate_authority_crt' => array(
1737 xl('Path to CA Certificate File'),
1738 'text', // data type
1739 '', // default
1740 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1743 'certificate_authority_key' => array(
1744 xl('Path to CA Key File'),
1745 'text', // data type
1746 '', // default
1747 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1750 'client_certificate_valid_in_days' => array(
1751 xl('Client Certificate Expiration Days'),
1752 'num', // data type
1753 '365', // default
1754 xl('Number of days that the client certificate is valid.')
1757 'Emergency_Login_email_id' => array(
1758 xl('Emergency Login Email Address'),
1759 'text', // data type
1760 '', // default
1761 xl('Email address, if any, to receive emergency login user activation messages.')
1764 'new_validate' => array(
1765 xl('New form validation'),
1766 'bool',
1767 '1',
1768 xl('New form validation')
1771 'allow_multiple_databases' => array(
1772 xl('Allow multiple databases'),
1773 'bool',
1774 '0',
1775 xl('Allow to use with multiple database')
1778 'safe_key_database' => array(
1779 xl('Safe key database'),
1780 'text', // data type
1781 '', // default
1782 xl('Key for multiple database credentials encryption')
1785 'use_active_directory' => array(
1786 xl('Use Active Directory'),
1787 'bool',
1788 '0',
1789 xl('If enabled, uses the specified active directory for login and authentication.')
1792 'account_suffix' => array(
1793 xl('Active Directory - Suffix Of Account'),
1794 'text',
1796 xl('The suffix of the account.')
1799 'base_dn' => array(
1800 xl('Active Directory - Domains Base'),
1801 'text',
1803 xl('Users is the standard windows CN, replace the DC stuff with your domain.')
1806 'domain_controllers' => array(
1807 xl('Active Directory - Domains Controllers'),
1808 'text',
1810 xl('The IP address of your domain controller(s).')
1815 // Notifications Tab
1817 'Notifications' => array(
1819 'patient_reminder_sender_name' => array(
1820 xl('Patient Reminder Sender Name'),
1821 'text', // data type
1822 '', // default
1823 xl('Name of the sender for patient reminders.')
1826 'patient_reminder_sender_email' => array(
1827 xl('Patient Reminder Sender Email'),
1828 'text', // data type
1829 '', // default
1830 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.')
1833 'practice_return_email_path' => array(
1834 xl('Notification Email Address'),
1835 'text', // data type
1836 '', // default
1837 xl('Email address, if any, to receive administrative notifications.')
1840 'EMAIL_METHOD' => array(
1841 xl('Email Transport Method'),
1842 array(
1843 'PHPMAIL' => 'PHPMAIL',
1844 'SENDMAIL' => 'SENDMAIL',
1845 'SMTP' => 'SMTP',
1847 'SMTP', // default
1848 xl('Method for sending outgoing email.')
1851 'SMTP_HOST' => array(
1852 xl('SMTP Server Hostname'),
1853 'text', // data type
1854 'localhost', // default
1855 xl('If SMTP is used, the server`s hostname or IP address.')
1858 'SMTP_PORT' => array(
1859 xl('SMTP Server Port Number'),
1860 'num', // data type
1861 '25', // default
1862 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1865 'SMTP_USER' => array(
1866 xl('SMTP User for Authentication'),
1867 'text', // data type
1868 '', // default
1869 xl('Must be empty if SMTP authentication is not used.')
1872 'SMTP_PASS' => array(
1873 xl('SMTP Password for Authentication'),
1874 'text', // data type
1875 '', // default
1876 xl('Must be empty if SMTP authentication is not used.')
1879 'SMTP_SECURE' => array(
1880 xl('SMTP Security Protocol'),
1881 array(
1882 '' => xl('None'),
1883 'ssl' => 'SSL',
1884 'tls' => 'TLS'
1887 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1890 'EMAIL_NOTIFICATION_HOUR' => array(
1891 xl('Email Notification Hours'),
1892 'num', // data type
1893 '50', // default
1894 xl('Number of hours in advance to send email notifications.')
1897 'SMS_NOTIFICATION_HOUR' => array(
1898 xl('SMS Notification Hours'),
1899 'num', // data type
1900 '50', // default
1901 xl('Number of hours in advance to send SMS notifications.')
1904 'SMS_GATEWAY_USENAME' => array(
1905 xl('SMS Gateway Username'),
1906 'text', // data type
1907 '', // default
1908 xl('Username for SMS Gateway.')
1911 'SMS_GATEWAY_PASSWORD' => array(
1912 xl('SMS Gateway Password'),
1913 'text', // data type
1914 '', // default
1915 xl('Password for SMS Gateway.')
1918 'SMS_GATEWAY_APIKEY' => array(
1919 xl('SMS Gateway API Key'),
1920 'text', // data type
1921 '', // default
1922 xl('API key for SMS Gateway.')
1925 'phone_notification_hour' => array(
1926 xl('Phone Notification Hour'),
1927 'num', // data type
1928 '50', // default
1929 xl('Number of hours in advance to send Phone notification.')
1932 'phone_gateway_username' => array(
1933 xl('Phone Gateway Username'),
1934 'text', // data type
1935 '', // default
1936 xl('Username for Phone Gateway.')
1939 'phone_gateway_password' => array(
1940 xl('Phone Gateway Password'),
1941 'text', // data type
1942 '', // default
1943 xl('Password for Phone Gateway.')
1946 'phone_gateway_url' => array(
1947 xl('Phone Gateway URL'),
1948 'text', // data type
1949 '', // default
1950 xl('URL for Phone Gateway.')
1955 // CDR (Clinical Decision Rules)
1957 'CDR' => array(
1959 'enable_cdr' => array(
1960 xl('Enable Clinical Decisions Rules (CDR)'),
1961 'bool', // data type
1962 '1', // default
1963 xl('Enable Clinical Decisions Rules (CDR)')
1966 'enable_allergy_check' => array(
1967 xl('Enable Allergy Check'),
1968 'bool', // data type
1969 '1', // default
1970 xl('Enable Allergy Check Against Medications and Prescriptions')
1973 'enable_alert_log' => array(
1974 xl('Enable Alert Log'),
1975 'bool', // data type
1976 '1', // default
1977 xl('Enable Alert Logging')
1980 'enable_cdr_new_crp' => array(
1981 xl('Enable Clinical Passive New Reminder(s) Popup'),
1982 'bool', // data type
1983 '1', // default
1984 xl('Enable Clinical Passive New Reminder(s) Popup')
1987 'enable_cdr_crw' => array(
1988 xl('Enable Clinical Passive Reminder Widget'),
1989 'bool', // data type
1990 '1', // default
1991 xl('Enable Clinical Passive Reminder Widget')
1994 'enable_cdr_crp' => array(
1995 xl('Enable Clinical Active Reminder Popup'),
1996 'bool', // data type
1997 '1', // default
1998 xl('Enable Clinical Active Reminder Popup')
2001 'enable_cdr_prw' => array(
2002 xl('Enable Patient Reminder Widget'),
2003 'bool', // data type
2004 '1', // default
2005 xl('Enable Patient Reminder Widget')
2008 'enable_cqm' => array(
2009 xl('Enable CQM Reporting'),
2010 'bool', // data type
2011 '1', // default
2012 xl('Enable Clinical Quality Measure (CQM) Reporting')
2015 'pqri_registry_name' => array(
2016 xl('PQRI Registry Name'),
2017 'text', // data type
2018 'Model Registry', // default
2019 xl('PQRI Registry Name')
2022 'pqri_registry_id' => array(
2023 xl('PQRI Registry ID'),
2024 'text', // data type
2025 '125789123', // default
2026 xl('PQRI Registry ID')
2029 'enable_amc' => array(
2030 xl('Enable AMC Reporting'),
2031 'bool', // data type
2032 '1', // default
2033 xl('Enable Automated Measure Calculations (AMC) Reporting')
2036 'enable_amc_prompting' => array(
2037 xl('Enable AMC Prompting'),
2038 'bool', // data type
2039 '1', // default
2040 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
2043 'enable_amc_tracking' => array(
2044 xl('Enable AMC Tracking'),
2045 'bool', // data type
2046 '1', // default
2047 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
2050 'cdr_report_nice' => array(
2051 xl('CDR Reports Processing Priority'),
2052 array(
2053 '' => xl('Default Priority'),
2054 '5' => xl('Moderate Priority'),
2055 '10' => xl('Moderate/Low Priority'),
2056 '15' => xl('Low Priority'),
2057 '20' => xl('Lowest Priority')
2059 '', // default
2060 xl('Set processing priority for CDR engine based reports.')
2063 'pat_rem_clin_nice' => array(
2064 xl('Patient Reminder Creation Processing Priority'),
2065 array(
2066 '' => xl('Default Priority'),
2067 '5' => xl('Moderate Priority'),
2068 '10' => xl('Moderate/Low Priority'),
2069 '15' => xl('Low Priority'),
2070 '20' => xl('Lowest Priority')
2072 '', // default
2073 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2076 'report_itemizing_standard' => array(
2077 xl('Enable Standard Report Itemization'),
2078 'bool', // data type
2079 '1', // default
2080 xl('Enable Itemization of Standard Clinical Rules Reports')
2083 'report_itemizing_cqm' => array(
2084 xl('Enable CQM Report Itemization'),
2085 'bool', // data type
2086 '1', // default
2087 xl('Enable Itemization of CQM Reports')
2090 'report_itemizing_amc' => array(
2091 xl('Enable AMC Report Itemization'),
2092 'bool', // data type
2093 '1', // default
2094 xl('Enable Itemization of AMC Reports')
2096 'dated_reminders_max_alerts_to_show' => array(
2097 xl('Dated reminders maximum alerts to show'),
2098 'num', // data type
2099 '5', // default
2100 xl('Dated reminders maximum alerts to show')
2102 'patient_birthday_alert' => array(
2103 xl('Alert on patient birthday'),
2104 array(
2105 '0' => xl('No alert'),
2106 '1' => xl('Alert only on birthday'),
2107 '2' => xl('Alert on and after birthday')
2109 '1', // default
2110 xl('Alert on patient birthday')
2112 'patient_birthday_alert_manual_off' => array(
2113 xl('Patient birthday alert requires turning off'),
2114 'bool', // data type
2115 '0', // default
2116 xl('Patient birthday alert requires turning off')
2120 // Logging
2122 'Logging' => array(
2124 'enable_auditlog' => array(
2125 xl('Enable Audit Logging'),
2126 'bool', // data type
2127 '1', // default
2128 xl('Enable Audit Logging')
2131 'audit_events_patient-record' => array(
2132 xl('Audit Logging Patient Record'),
2133 'bool', // data type
2134 '1', // default
2135 xl('Enable logging of patient record modifications.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2138 'audit_events_scheduling' => array(
2139 xl('Audit Logging Scheduling'),
2140 'bool', // data type
2141 '1', // default
2142 xl('Enable logging of scheduling activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2145 'audit_events_order' => array(
2146 xl('Audit Logging Order'),
2147 'bool', // data type
2148 '1', // default
2149 xl('Enable logging of ordering activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2152 'audit_events_security-administration' => array(
2153 xl('Audit Logging Security Administration'),
2154 'bool', // data type
2155 '1', // default
2156 xl('Enable logging of security and administration activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2159 'audit_events_backup' => array(
2160 xl('Audit Logging Backups'),
2161 'bool', // data type
2162 '1', // default
2163 xl('Enable logging of backup related activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2166 'audit_events_other' => array(
2167 xl('Audit Logging Miscellaneous'),
2168 'bool', // data type
2169 '1', // default
2170 xl('Enable logging of miscellaneous activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2173 'audit_events_query' => array(
2174 xl('Audit Logging SELECT Query'),
2175 'bool', // data type
2176 '0', // default
2177 xl('Enable logging of all SQL SELECT queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2180 'audit_events_cdr' => array(
2181 xl('Audit CDR Engine Queries'),
2182 'bool', // data type
2183 '0', // default
2184 xl('Enable logging of CDR Engine Queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2187 'enable_atna_audit' => array(
2188 xl('Enable ATNA Auditing'),
2189 'bool', // data type
2190 '0', // default
2191 xl('Enable Audit Trail and Node Authentication (ATNA).')
2194 'atna_audit_host' => array(
2195 xl('ATNA audit host'),
2196 'text', // data type
2197 '', // default
2198 xl('The hostname of the ATNA audit repository machine.')
2201 'atna_audit_port' => array(
2202 xl('ATNA audit port'),
2203 'text', // data type
2204 '6514', // default
2205 xl('Listening port of the RFC 5425 TLS syslog server.')
2208 'atna_audit_localcert' => array(
2209 xl('ATNA audit local certificate'),
2210 'text', // data type
2211 '', // default
2212 xl('Certificate to send to RFC 5425 TLS syslog server.')
2215 'atna_audit_cacert' => array(
2216 xl('ATNA audit CA certificate'),
2217 'text', // data type
2218 '', // default
2219 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2222 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
2223 'enable_auditlog_encryption' => array(
2224 xl('Enable Audit Log Encryption'),
2225 'bool', // data type
2226 '0', // default
2227 xl('Enable Audit Log Encryption')
2230 'billing_log_option' => array(
2231 xl('Billing Log Option'),
2232 array(
2233 '1' => xl('Billing Log Append'),
2234 '2' => xl('Billing Log Overwrite')
2236 '1', // default
2237 xl('Billing log setting to append or overwrite the log file.')
2240 'gbl_print_log_option' => array(
2241 xl('Printing Log Option'),
2242 array(
2243 '0' => xl('No logging'),
2244 '1' => xl('Hide print feature'),
2245 '2' => xl('Log entire document'),
2247 '0', // default
2248 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2253 // Miscellaneous Tab
2255 'Miscellaneous' => array(
2257 'mysql_bin_dir' => array(
2258 xl('Path to MySQL Binaries'),
2259 'text', // data type
2260 $mysql_bin_dir, // default
2261 xl('Full path to directory containing MySQL executables.')
2264 'perl_bin_dir' => array(
2265 xl('Path to Perl Binaries'),
2266 'text', // data type
2267 $perl_bin_dir, // default
2268 xl('Full path to directory containing Perl executables.')
2271 'temporary_files_dir' => array(
2272 xl('Path to Temporary Files'),
2273 'text', // data type
2274 $temporary_files_dir, // default
2275 xl('Full path to directory used for temporary files.')
2278 'backup_log_dir' => array(
2279 xl('Path for Event Log Backup'),
2280 'text', // data type
2281 $backup_log_dir, // default
2282 xl('Full path to directory for event log backup.')
2285 'state_data_type' => array(
2286 xl('State Data Type'),
2287 array(
2288 '2' => xl('Text field'),
2289 '1' => xl('Single-selection list'),
2290 '26' => xl('Single-selection list with ability to add to the list'),
2292 '26', // default
2293 xl('Field type to use for employer or subscriber state in demographics.')
2296 'state_list' => array(
2297 xl('State list'),
2298 'text', // data type
2299 'state', // default
2300 xl('List used by above State Data Type option.')
2303 'state_custom_addlist_widget' => array(
2304 xl('State List Widget Custom Fields'),
2305 'bool', // data type
2306 '1', // default
2307 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2310 'country_data_type' => array(
2311 xl('Country Data Type'),
2312 array(
2313 '2' => xl('Text field'),
2314 '1' => xl('Single-selection list'),
2315 '26' => xl('Single-selection list with ability to add to the list'),
2317 '26', // default
2318 xl('Field type to use for employer or subscriber country in demographics.')
2321 'country_list' => array(
2322 xl('Country list'),
2323 'text', // data type
2324 'country', // default
2325 xl('List used by above Country Data Type option.')
2328 'print_command' => array(
2329 xl('Print Command'),
2330 'text', // data type
2331 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2332 xl('Shell command for printing from the server.')
2335 'default_chief_complaint' => array(
2336 xl('Default Reason for Visit'),
2337 'text', // data type
2339 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2342 'default_new_encounter_form' => array(
2343 xl('Default Encounter Form ID'),
2344 'text', // data type
2346 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
2349 'MedicareReferrerIsRenderer' => array(
2350 xl('Medicare Referrer Is Renderer'),
2351 'bool', // data type
2352 '0', // default = true
2353 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2356 'post_to_date_benchmark' => array(
2357 xl('Financial Close Date (yyyy-mm-dd)'),
2358 'text', // data type
2359 date('Y-m-d', time() - (10 * 24 * 60 * 60)), // default
2360 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2363 'enable_hylafax' => array(
2364 xl('Enable Hylafax Support'),
2365 'bool', // data type
2366 '0', // default
2367 xl('Enable Hylafax Support')
2370 'hylafax_server' => array(
2371 xl('Hylafax Server'),
2372 'text', // data type
2373 'localhost', // default
2374 xl('Hylafax server hostname.')
2377 'hylafax_basedir' => array(
2378 xl('Hylafax Directory'),
2379 'text', // data type
2380 '/var/spool/hylafax', // default
2381 xl('Location where Hylafax stores faxes.')
2384 'hylafax_enscript' => array(
2385 xl('Hylafax Enscript Command'),
2386 'text', // data type
2387 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2388 xl('Enscript command used by Hylafax.')
2391 'enable_scanner' => array(
2392 xl('Enable Scanner Support'),
2393 'bool', // data type
2394 '0', // default
2395 xl('Enable Scanner Support')
2398 'scanner_output_directory' => array(
2399 xl('Scanner Directory'),
2400 'text', // data type
2401 '/mnt/scan_docs', // default
2402 xl('Location where scans are stored.')
2406 // Portal Tab
2408 'Portal' => array(
2410 'portal_onsite_two_enable' => array(
2411 xl('Enable Version 2 Onsite Patient Portal'),
2412 'bool', // data type
2413 '0',
2414 xl('Enable Version 2 Onsite Patient Portal.')
2417 'portal_onsite_two_address' => array(
2418 xl('Version 2 Onsite Patient Portal Site Address'),
2419 'text', // data type
2420 'https://your_web_site.com/openemr/portal',
2421 xl('Website link for the Version 2 Onsite Patient Portal.')
2424 'portal_onsite_enable' => array(
2425 xl('Enable Version 1 Onsite Patient Portal'),
2426 'bool', // data type
2427 '0',
2428 xl('Enable Version 1 Onsite Patient Portal.')
2431 'portal_onsite_address' => array(
2432 xl('Version 1 Onsite Patient Portal Site Address'),
2433 'text', // data type
2434 'https://your_web_site.com/openemr/patients',
2435 xl('Website link for the Version 1 Onsite Patient Portal.')
2438 'portal_onsite_document_download' => array(
2439 xl('Enable Onsite Patient Portal Document Download'),
2440 'bool', // data type
2441 '1',
2442 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2445 'portal_offsite_enable' => array(
2446 xl('Enable Offsite Patient Portal'),
2447 'bool', // data type
2448 '0',
2449 xl('Enable Offsite Patient Portal.')
2451 'portal_offsite_providerid' => array(
2452 xl('Offsite Patient Portal Provider ID'),
2453 'text', // data type
2455 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2458 'portal_offsite_username' => array(
2459 xl('Offsite Patient Portal Username'),
2460 'text', // data type
2462 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2465 'portal_offsite_password' => array(
2466 xl('Offsite Patient Portal Password'),
2467 'pwd', // data type
2469 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2472 'portal_offsite_address' => array(
2473 xl('Offsite Patient Portal Site Address'),
2474 'text', // data type
2475 'https://ssh.mydocsportal.com/provider.php',
2476 xl('Offsite Https link for the Patient Portal.')
2479 'portal_offsite_address_patient_link' => array(
2480 xl('Offsite Patient Portal Site Address (Patient Link)'),
2481 'text', // data type
2482 'https://ssh.mydocsportal.com',
2483 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2486 // Currently the "CMS Portal" supports WordPress. Other Content Management
2487 // Systems may be supported in the future.
2489 'gbl_portal_cms_enable' => array(
2490 xl('Enable CMS Portal'),
2491 'bool', // data type
2492 '0',
2493 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2496 'gbl_portal_cms_address' => array(
2497 xl('CMS Portal Site Address'),
2498 'text', // data type
2499 'https://your_cms_site.com/',
2500 xl('URL for the WordPress site that supports the portal')
2503 'gbl_portal_cms_username' => array(
2504 xl('CMS Portal Username'),
2505 'text', // data type
2507 xl('Login name of WordPress user for portal access')
2510 'gbl_portal_cms_password' => array(
2511 xl('CMS Portal Password'),
2512 'text', // data type
2514 xl('Password for the above user')
2519 // Connectors Tab
2521 'Connectors' => array(
2523 'erx_enable' => array(
2524 xl('Enable NewCrop eRx Service'),
2525 'bool',
2526 '0',
2527 xl('Enable NewCrop eRx Service.') + ' ' +
2528 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.')
2531 'erx_newcrop_path' => array(
2532 xl('NewCrop eRx Site Address'),
2533 'text',
2534 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2535 xl('URL for NewCrop eRx Site Address.')
2538 'erx_newcrop_path_soap' => array(
2539 xl('NewCrop eRx Web Service Address'),
2540 'text',
2541 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2542 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2545 'erx_soap_ttl_allergies' => array(
2546 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2547 'num',
2548 '21600',
2549 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2552 'erx_soap_ttl_medications' => array(
2553 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2554 'num',
2555 '21600',
2556 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2559 'erx_account_partner_name' => array(
2560 xl('NewCrop eRx Partner Name'),
2561 'text',
2563 xl('Partner Name issued for NewCrop eRx service.')
2566 'erx_account_name' => array(
2567 xl('NewCrop eRx Name'),
2568 'text',
2570 xl('Account Name issued for NewCrop eRx service.')
2573 'erx_account_password' => array(
2574 xl('NewCrop eRx Password'),
2575 'pass',
2577 xl('Account Password issued for NewCrop eRx service.')
2580 'erx_account_id' => array(
2581 xl('NewCrop eRx Account Id'),
2582 'text',
2583 '1',
2584 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2587 'erx_upload_active' => array(
2588 xl('Only upload active prescriptions'),
2589 'bool',
2590 '0',
2591 xl('Only upload active prescriptions to NewCrop eRx.')
2594 'erx_import_status_message' => array(
2595 xl('Enable NewCrop eRx import status message'),
2596 'bool',
2597 '0',
2598 xl('Enable import status message after visiting NewCrop eRx.')
2601 'erx_medication_display' => array(
2602 xl('Do not display NewCrop eRx Medications uploaded'),
2603 'bool',
2604 '0',
2605 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2608 'erx_allergy_display' => array(
2609 xl('Do not display NewCrop eRx Allergy uploaded'),
2610 'bool',
2611 '0',
2612 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2615 'erx_default_patient_country' => array(
2616 xl('NewCrop eRx Default Patient Country'),
2617 array(
2618 '' => '',
2619 'US' => xl('USA'),
2620 'CA' => xl('Canada'),
2621 'MX' => xl('Mexico'),
2624 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2627 'erx_debug_setting' => array(
2628 xl('NewCrop eRx Debug Setting'),
2629 array(
2630 0 => xl('None'),
2631 1 => xl('Request Only'),
2632 2 => xl('Response Only'),
2633 3 => xl('Request & Response'),
2635 '0',
2636 xl('Log all NewCrop eRx Requests and / or Responses.'),
2639 'weno_rx_enable' => array(
2640 xl('Enable Weno eRx Service'),
2641 'bool',
2642 '0',
2643 xl('Enable Weno eRx Service.') . ' ' . xl('Contact Open Med Practice, www.openmedpractice.com for subscribing to the Weno Free eRx service.')
2646 'weno_account_id' => array(
2647 xl('Weno eRx Account Id'),
2648 'text',
2650 xl('Account Id issued for Weno eRx service.')
2653 'weno_account_pass' => array(
2654 xl('Weno eRx Account Pass'),
2655 'text',
2657 xl('Account Id issued for Weno eRx service.')
2660 'weno_provider_id' => array(
2661 xl('Weno eRx Clinic ID'),
2662 'text',
2664 xl('Account Id issued for Your clinics eRx service.')
2667 'ccda_alt_service_enable' => array(
2668 xl('Enable C-CDA Alternate Service'),
2669 array(
2670 0 => xl('Off'),
2671 1 => xl('Care Coordination Only'),
2672 2 => xl('Portal Only'),
2673 3 => xl('Both'),
2675 '0',
2676 xl('Enable C-CDA Alternate Service')
2679 'phimail_enable' => array(
2680 xl('Enable phiMail Direct Messaging Service'),
2681 'bool', // data type
2682 '0',
2683 xl('Enable phiMail Direct Messaging Service')
2686 'phimail_server_address' => array(
2687 xl('phiMail Server Address'),
2688 'text', // data type
2689 'https://phimail.example.com:32541',
2690 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2693 'phimail_username' => array(
2694 xl('phiMail Username'),
2695 'text', // data type
2697 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2700 'phimail_password' => array(
2701 xl('phiMail Password'),
2702 'pass', // data type
2704 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2707 'phimail_notify' => array(
2708 xl('phiMail notification user'),
2709 'text', // data type
2710 'admin',
2711 xl('This user will receive notification of new incoming Direct messages')
2714 'phimail_interval' => array(
2715 xl('phiMail Message Check Interval (minutes)'),
2716 'num', // data type
2717 '5',
2718 xl('Interval between message checks (set to zero for manual checks only)')
2721 'phimail_ccd_enable' => array(
2722 xl('phiMail Allow CCD Send'),
2723 'bool', // data type
2724 '0',
2725 xl('phiMail Allow CCD Send')
2728 'phimail_ccr_enable' => array(
2729 xl('phiMail Allow CCR Send'),
2730 'bool', // data type
2731 '0',
2732 xl('phiMail Allow CCR Send')
2736 'Rx' => array(
2737 'rx_enable_DEA' => array(
2738 xl('Rx Enable DEA #'),
2739 'bool', // data type
2740 '1',
2741 xl('Rx Enable DEA #')
2743 'rx_show_DEA' => array(
2744 xl('Rx Show DEA #'),
2745 'bool', // data type
2746 '0',
2747 xl('Rx Show DEA #')
2749 'rx_enable_NPI' => array(
2750 xl('Rx Enable NPI'),
2751 'bool', // data type
2752 '0',
2753 xl('Rx Enable NPI')
2755 'rx_show_NPI' => array(
2756 xl('Rx Show NPI'),
2757 'bool', // data type
2758 '0',
2759 xl('Rx Show NPI')
2761 'rx_enable_SLN' => array(
2762 xl('Rx Enable State Lic. #'),
2763 'bool', // data type
2764 '0',
2765 xl('Rx Enable State Lic. #')
2767 'rx_show_SLN' => array(
2768 xl('Rx Show State Lic. #'),
2769 'bool', // data type
2770 '0',
2771 xl('Rx Show State Lic. #')
2773 'rx_show_drug-drug' => array(
2774 xl('Rx NLM Drug-Drug'),
2775 'bool', // data type
2776 '0',
2777 xl('Rx NLM Drug-Drug')
2779 'rx_paper_size' => array(
2780 xl('Rx Paper Size'), // descriptive name
2781 array(
2782 'LETTER' => xl('Letter Paper Size'),
2783 'LEGAL' => xl('Legal Paper Size'),
2784 'FOLIO' => xl('Folio Paper Size'),
2785 'EXECUTIVE' => xl('Executive Paper Size'),
2786 '4A0' => ('4A0' . " " . xl('Paper Size')),
2787 '2A0' => ('2A0' . " " . xl('Paper Size')),
2788 'A0' => ('A0' . " " . xl('Paper Size')),
2789 'A1' => ('A1' . " " . xl('Paper Size')),
2790 'A2' => ('A2' . " " . xl('Paper Size')),
2791 'A3' => ('A3' . " " . xl('Paper Size')),
2792 'A4' => ('A4' . " " . xl('Paper Size')),
2793 'A5' => ('A5' . " " . xl('Paper Size')),
2794 'A6' => ('A6' . " " . xl('Paper Size')),
2795 'A7' => ('A7' . " " . xl('Paper Size')),
2796 'A8' => ('A8' . " " . xl('Paper Size')),
2797 'A9' => ('A9' . " " . xl('Paper Size')),
2798 'A10' => ('A10' . " " . xl('Paper Size')),
2799 'B0' => ('B0' . " " . xl('Paper Size')),
2800 'B1' => ('B1' . " " . xl('Paper Size')),
2801 'B2' => ('B2' . " " . xl('Paper Size')),
2802 'B3' => ('B3' . " " . xl('Paper Size')),
2803 'B4' => ('B4' . " " . xl('Paper Size')),
2804 'B5' => ('B5' . " " . xl('Paper Size')),
2805 'B6' => ('B6' . " " . xl('Paper Size')),
2806 'B7' => ('B7' . " " . xl('Paper Size')),
2807 'B8' => ('B8' . " " . xl('Paper Size')),
2808 'B9' => ('B9' . " " . xl('Paper Size')),
2809 'B10' => ('B10' . " " . xl('Paper Size')),
2810 'C0' => ('C0' . " " . xl('Paper Size')),
2811 'C1' => ('C1' . " " . xl('Paper Size')),
2812 'C2' => ('C2' . " " . xl('Paper Size')),
2813 'C3' => ('C3' . " " . xl('Paper Size')),
2814 'C4' => ('C4' . " " . xl('Paper Size')),
2815 'C5' => ('C5' . " " . xl('Paper Size')),
2816 'C6' => ('C6' . " " . xl('Paper Size')),
2817 'C7' => ('C7' . " " . xl('Paper Size')),
2818 'C8' => ('C8' . " " . xl('Paper Size')),
2819 'C9' => ('C9' . " " . xl('Paper Size')),
2820 'C10' => ('C10' . " " . xl('Paper Size')),
2821 'RA0' => ('RA0' . " " . xl('Paper Size')),
2822 'RA1' => ('RA1' . " " . xl('Paper Size')),
2823 'RA2' => ('RA2' . " " . xl('Paper Size')),
2824 'RA3' => ('RA3' . " " . xl('Paper Size')),
2825 'RA4' => ('RA4' . " " . xl('Paper Size')),
2826 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2827 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2828 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2829 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2830 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2832 'LETTER', // default = tree menu
2833 xl('Rx Paper Size')
2835 'rx_left_margin' => array(
2836 xl('Rx Left Margin (px)'),
2837 'num',
2838 '30',
2839 xl('Rx Left Margin (px)')
2841 'rx_right_margin' => array(
2842 xl('Rx Right Margin (px)'),
2843 'num',
2844 '30',
2845 xl('Rx Right Margin (px)')
2847 'rx_top_margin' => array(
2848 xl('Rx Top Margin (px)'),
2849 'num',
2850 '72',
2851 xl('Rx Top Margin (px)')
2853 'rx_bottom_margin' => array(
2854 xl('Rx Bottom Margin (px)'),
2855 'num',
2856 '30',
2857 xl('Rx Bottom Margin (px)')
2861 'PDF' => array(
2862 'pdf_layout' => array(
2863 xl('Layout'),
2864 array(
2865 'P' => xl('Portrait'),
2866 'L' => xl('Landscape')
2868 'P', //defaut
2869 xl("Choose Layout Direction"),
2871 'pdf_language' => array(
2872 xl('PDF Language'),
2873 array(
2874 'aa' => xl('Afar'),
2875 'af' => xl('Afrikaans'),
2876 'ak' => xl('Akan'),
2877 'sq' => xl('Albanian'),
2878 'am' => xl('Amharic'),
2879 'ar' => xl('Arabic'),
2880 'an' => xl('Aragonese'),
2881 'hy' => xl('Armenian'),
2882 'as' => xl('Assamese'),
2883 'av' => xl('Avaric'),
2884 'ae' => xl('Avestan'),
2885 'ay' => xl('Aymara'),
2886 'az' => xl('Azerbaijani'),
2887 'bm' => xl('Bambara'),
2888 'ba' => xl('Bashkir'),
2889 'eu' => xl('Basque'),
2890 'be' => xl('Belarusian'),
2891 'bn' => xl('Bengali- Bangla'),
2892 'bh' => xl('Bihari'),
2893 'bi' => xl('Bislama'),
2894 'bs' => xl('Bosnian'),
2895 'br' => xl('Breton'),
2896 'bg' => xl('Bulgarian'),
2897 'my' => xl('Burmese'),
2898 'ca' => xl('Catalan- Valencian'),
2899 'ch' => xl('Chamorro'),
2900 'ce' => xl('Chechen'),
2901 'ny' => xl('Chichewa- Chewa- Nyanja'),
2902 'zh' => xl('Chinese'),
2903 'cv' => xl('Chuvash'),
2904 'kw' => xl('Cornish'),
2905 'co' => xl('Corsican'),
2906 'cr' => xl('Cree'),
2907 'hr' => xl('Croatian'),
2908 'cs' => xl('Czech'),
2909 'da' => xl('Danish'),
2910 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2911 'nl' => xl('Dutch'),
2912 'dz' => xl('Dzongkha'),
2913 'en' => xl('English'),
2914 'eo' => xl('Esperanto'),
2915 'et' => xl('Estonian'),
2916 'ee' => xl('Ewe'),
2917 'fo' => xl('Faroese'),
2918 'fj' => xl('Fijian'),
2919 'fi' => xl('Finnish'),
2920 'fr' => xl('French'),
2921 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2922 'gl' => xl('Galician'),
2923 'ka' => xl('Georgian'),
2924 'de' => xl('German'),
2925 'el' => xl('Greek, Modern'),
2926 'gn' => xl('Guarani'),
2927 'gu' => xl('Gujarati'),
2928 'ht' => xl('Haitian- Haitian Creole'),
2929 'ha' => xl('Hausa'),
2930 'he' => xl('Hebrew (modern)'),
2931 'hz' => xl('Herero'),
2932 'hi' => xl('Hindi'),
2933 'ho' => xl('Hiri Motu'),
2934 'hu' => xl('Hungarian'),
2935 'ia' => xl('Interlingua'),
2936 'id' => xl('Indonesian'),
2937 'ie' => xl('Interlingue'),
2938 'ga' => xl('Irish'),
2939 'ig' => xl('Igbo'),
2940 'ik' => xl('Inupiaq'),
2941 'io' => xl('Ido'),
2942 'is' => xl('Icelandic'),
2943 'it' => xl('Italian'),
2944 'iu' => xl('Inuktitut'),
2945 'ja' => xl('Japanese'),
2946 'jv' => xl('Javanese'),
2947 'kl' => xl('Kalaallisut, Greenlandic'),
2948 'kn' => xl('Kannada'),
2949 'kr' => xl('Kanuri'),
2950 'ks' => xl('Kashmiri'),
2951 'kk' => xl('Kazakh'),
2952 'km' => xl('Khmer'),
2953 'ki' => xl('Kikuyu, Gikuyu'),
2954 'rw' => xl('Kinyarwanda'),
2955 'ky' => xl('Kyrgyz'),
2956 'kv' => xl('Komi'),
2957 'kg' => xl('Kongo'),
2958 'ko' => xl('Korean'),
2959 'ku' => xl('Kurdish'),
2960 'kj' => xl('Kwanyama, Kuanyama'),
2961 'la' => xl('Latin'),
2962 'lb' => xl('Luxembourgish, Letzeburgesch'),
2963 'lg' => xl('Ganda'),
2964 'li' => xl('Limburgish, Limburgan, Limburger'),
2965 'ln' => xl('Lingala'),
2966 'lo' => xl('Lao'),
2967 'lt' => xl('Lithuanian'),
2968 'lu' => xl('Luba-Katanga'),
2969 'lv' => xl('Latvian'),
2970 'gv' => xl('Manx'),
2971 'mk' => xl('Macedonian'),
2972 'mg' => xl('Malagasy'),
2973 'ms' => xl('Malay'),
2974 'ml' => xl('Malayalam'),
2975 'mt' => xl('Maltese'),
2976 'mi' => xl('Maori'),
2977 'mr' => xl('Marathi (Marathi)'),
2978 'mh' => xl('Marshallese'),
2979 'mn' => xl('Mongolian'),
2980 'na' => xl('Nauru'),
2981 'nv' => xl('Navajo, Navaho'),
2982 'nb' => xl('Norwegian Bokmal'),
2983 'nd' => xl('North Ndebele'),
2984 'ne' => xl('Nepali'),
2985 'ng' => xl('Ndonga'),
2986 'nn' => xl('Norwegian Nynorsk'),
2987 'no' => xl('Norwegian'),
2988 'ii' => xl('Nuosu'),
2989 'nr' => xl('South Ndebele'),
2990 'oc' => xl('Occitan'),
2991 'oj' => xl('Ojibwe, Ojibwa'),
2992 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2993 'om' => xl('Oromo'),
2994 'or' => xl('Oriya'),
2995 'os' => xl('Ossetian, Ossetic'),
2996 'pa' => xl('Panjabi, Punjabi'),
2997 'pi' => xl('Pali'),
2998 'fa' => xl('Persian (Farsi)'),
2999 'pl' => xl('Polish'),
3000 'ps' => xl('Pashto, Pushto'),
3001 'pt' => xl('Portuguese'),
3002 'qu' => xl('Quechua'),
3003 'rm' => xl('Romansh'),
3004 'rn' => xl('Kirundi'),
3005 'ro' => xl('Romanian'),
3006 'ru' => xl('Russian'),
3007 'sa' => xl('Sanskrit (Samskrta)'),
3008 'sc' => xl('Sardinian'),
3009 'sd' => xl('Sindhi'),
3010 'se' => xl('Northern Sami'),
3011 'sm' => xl('Samoan'),
3012 'sg' => xl('Sango'),
3013 'sr' => xl('Serbian'),
3014 'gd' => xl('Scottish Gaelic- Gaelic'),
3015 'sn' => xl('Shona'),
3016 'si' => xl('Sinhala, Sinhalese'),
3017 'sk' => xl('Slovak'),
3018 'sl' => xl('Slovene'),
3019 'so' => xl('Somali'),
3020 'st' => xl('Southern Sotho'),
3021 'es' => xl('Spanish- Castilian'),
3022 'su' => xl('Sundanese'),
3023 'sw' => xl('Swahili'),
3024 'ss' => xl('Swati'),
3025 'sv' => xl('Swedish'),
3026 'ta' => xl('Tamil'),
3027 'te' => xl('Telugu'),
3028 'tg' => xl('Tajik'),
3029 'th' => xl('Thai'),
3030 'ti' => xl('Tigrinya'),
3031 'bo' => xl('Tibetan Standard, Tibetan, Central'),
3032 'tk' => xl('Turkmen'),
3033 'tl' => xl('Tagalog'),
3034 'tn' => xl('Tswana'),
3035 'to' => xl('Tonga (Tonga Islands)'),
3036 'tr' => xl('Turkish'),
3037 'ts' => xl('Tsonga'),
3038 'tt' => xl('Tatar'),
3039 'tw' => xl('Twi'),
3040 'ty' => xl('Tahitian'),
3041 'ug' => xl('Uyghur, Uighur'),
3042 'uk' => xl('Ukrainian'),
3043 'ur' => xl('Urdu'),
3044 'uz' => xl('Uzbek'),
3045 've' => xl('Venda'),
3046 'vi' => xl('Vietnamese'),
3047 'vo' => xl('Volapuk'),
3048 'wa' => xl('Walloon'),
3049 'cy' => xl('Welsh'),
3050 'wo' => xl('Wolof'),
3051 'fy' => xl('Western Frisian'),
3052 'xh' => xl('Xhosa'),
3053 'yi' => xl('Yiddish'),
3054 'yo' => xl('Yoruba'),
3055 'za' => xl('Zhuang, Chuang'),
3056 'zu' => xl('Zulu'),
3058 'en', // default English
3059 xl('Choose PDF languange Preference'),
3061 'pdf_size' => array(
3062 xl('Paper Size'), // Descriptive Name
3063 array(
3064 'LETTER' => xl('Letter Paper Size'),
3065 'LEGAL' => xl('Legal Paper Size'),
3066 'FOLIO' => xl('Folio Paper Size'),
3067 'EXECUTIVE' => xl('Executive Paper Size'),
3068 '4A0' => ('4A0' . " " . xl('Paper Size')),
3069 '2A0' => ('2A0' . " " . xl('Paper Size')),
3070 'A0' => ('A0' . " " . xl('Paper Size')),
3071 'A1' => ('A1' . " " . xl('Paper Size')),
3072 'A2' => ('A2' . " " . xl('Paper Size')),
3073 'A3' => ('A3' . " " . xl('Paper Size')),
3074 'A4' => ('A4' . " " . xl('Paper Size')),
3075 'A5' => ('A5' . " " . xl('Paper Size')),
3076 'A6' => ('A6' . " " . xl('Paper Size')),
3077 'A7' => ('A7' . " " . xl('Paper Size')),
3078 'A8' => ('A8' . " " . xl('Paper Size')),
3079 'A9' => ('A9' . " " . xl('Paper Size')),
3080 'A10' => ('A10' . " " . xl('Paper Size')),
3081 'B0' => ('B0' . " " . xl('Paper Size')),
3082 'B1' => ('B1' . " " . xl('Paper Size')),
3083 'B2' => ('B2' . " " . xl('Paper Size')),
3084 'B3' => ('B3' . " " . xl('Paper Size')),
3085 'B4' => ('B4' . " " . xl('Paper Size')),
3086 'B5' => ('B5' . " " . xl('Paper Size')),
3087 'B6' => ('B6' . " " . xl('Paper Size')),
3088 'B7' => ('B7' . " " . xl('Paper Size')),
3089 'B8' => ('B8' . " " . xl('Paper Size')),
3090 'B9' => ('B9' . " " . xl('Paper Size')),
3091 'B10' => ('B10' . " " . xl('Paper Size')),
3092 'C0' => ('C0' . " " . xl('Paper Size')),
3093 'C1' => ('C1' . " " . xl('Paper Size')),
3094 'C2' => ('C2' . " " . xl('Paper Size')),
3095 'C3' => ('C3' . " " . xl('Paper Size')),
3096 'C4' => ('C4' . " " . xl('Paper Size')),
3097 'C5' => ('C5' . " " . xl('Paper Size')),
3098 'C6' => ('C6' . " " . xl('Paper Size')),
3099 'C7' => ('C7' . " " . xl('Paper Size')),
3100 'C8' => ('C8' . " " . xl('Paper Size')),
3101 'C9' => ('C9' . " " . xl('Paper Size')),
3102 'C10' => ('C10' . " " . xl('Paper Size')),
3103 'RA0' => ('RA0' . " " . xl('Paper Size')),
3104 'RA1' => ('RA1' . " " . xl('Paper Size')),
3105 'RA2' => ('RA2' . " " . xl('Paper Size')),
3106 'RA3' => ('RA3' . " " . xl('Paper Size')),
3107 'RA4' => ('RA4' . " " . xl('Paper Size')),
3108 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3109 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3110 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3111 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3112 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3114 'LETTER',
3115 xl('Choose Paper Size')
3117 'pdf_left_margin' => array(
3118 xl('Left Margin (mm)'),
3119 'num',
3120 '5',
3121 xl('Left Margin (mm)')
3123 'pdf_right_margin' => array(
3124 xl('Right Margin (mm)'),
3125 'num',
3126 '5',
3127 xl('Right Margin (mm)')
3129 'pdf_top_margin' => array(
3130 xl('Top Margin (mm)'),
3131 'num',
3132 '5',
3133 xl('Top Margin (mm)')
3135 'pdf_bottom_margin' => array(
3136 xl('Bottom Margin (px)'),
3137 'num',
3138 '8',
3139 xl('Bottom Margin (px)')
3141 'pdf_output' => array(
3142 xl('Output Type'),
3143 array(
3144 'D' => xl('Download'),
3145 'I' => xl('Inline')
3147 'D', //defaut
3148 xl("Choose Download or Display Inline"),
3151 'chart_label_type' => array(
3152 xl('Patient Label Type'),
3153 array(
3154 '0' => xl('None'),
3155 '1' => '5160',
3156 '2' => '5161',
3157 '3' => '5162'
3159 '1', // default
3160 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3163 'barcode_label_type' => array(
3164 xl('Barcode Label Type'),
3165 array(
3166 '0' => xl('None'),
3167 '1' => 'std25',
3168 '2' => 'int25',
3169 '3' => 'ean8',
3170 '4' => 'ean13',
3171 '5' => 'upc',
3172 '6' => 'code11',
3173 '7' => 'code39',
3174 '8' => 'code93',
3175 '9' => 'code128',
3176 '10' => 'codabar',
3177 '11' => 'msi',
3178 '12' => 'datamatrix'
3180 '9', // default = None
3181 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3184 'addr_label_type' => array(
3185 xl('Print Patient Address Label'),
3186 'bool', // data type
3187 '1', // default = false
3188 xl('Select to print patient address labels from popups in left nav screen.')
3191 'env_x_width' => array(
3192 xl('Envelope Width in mm'),
3193 'num', // data type
3194 '104.775',
3195 xl('In Portrait mode, determines the width of the envelope along the x-axis in mm')
3198 'env_y_height' => array(
3199 xl('Envelope Height in mm'),
3200 'num', // data type
3201 '241.3',
3202 xl('In Portrait mode, determines the height of the envelope along the y-axis in mm')
3205 'env_font_size' => array(
3206 xl('Font Size in Pt'),
3207 'num', // data type
3208 '14',
3209 xl('Sets the font of the address text on the envelope in mm')
3212 'env_x_dist' => array(
3213 xl('Envelope x-axis starting pt'),
3214 'num', // data type
3215 '65',
3216 xl('Distance from the \'top\' of the envelope in mm')
3219 'env_y_dist' => array(
3220 xl('Envelope y-axis starting pt'),
3221 'num', // data type
3222 '220',
3223 xl(' Distance from the right most edge of the envelope in portrait position in mm')