very minor mod to previous Direct Messaging update commit
[openemr.git] / library / globals.inc.php
blob84f08a0422575c626e0be7473c9da706f602ae17
1 <?php
2 // Copyright (C) 2010 Rod Roark <rod@sunsetsystems.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 // $GLOBALS['print_command'] is the
10 // Print command for spooling to printers, used by statements.inc.php
11 // This is the command to be used for printing (without the filename).
12 // The word following "-P" should be the name of your printer. This
13 // example is designed for 8.5x11-inch paper with 1-inch margins,
14 // 10 CPI, 6 LPI, 65 columns, 54 lines per page.
16 // IF lpr services are installed on Windows this setting will be similar
17 // Otherwise configure it as needed (print /d:PRN) might be an option for Windows parallel printers
19 // Current supported languages: // Allow capture of term for translation:
20 // Albanian // xl('Albanian')
21 // Amharic // xl('Amharic')
22 // Arabic // xl('Arabic')
23 // Armenian // xl('Armenian')
24 // Bahasa Indonesia // xl('Bahasa Indonesia')
25 // Bengali // xl('Bengali')
26 // Chinese (Simplified) // xl('Chinese (Simplified)')
27 // Chinese (Traditional) // xl('Chinese (Traditional)')
28 // Czech // xl('Czech')
29 // Danish // xl('Danish')
30 // Dutch // xl('Dutch')
31 // English (Indian) // xl('English (Indian)')
32 // English (Standard) // xl('English (Standard)')
33 // Estonian // xl('Estonian')
34 // French // xl('French (Standard)')
35 // French // xl('French (Canadian)')
36 // German // xl('German')
37 // Greek // xl('Greek')
38 // Hebrew // xl('Hebrew')
39 // Hindi // xl('Hindi')
40 // Hungarian // xl('Hungarian')
41 // Italian // xl('Italian')
42 // Lithuanian // xl('Lithuanian')
43 // Norwegian // xl('Norwegian')
44 // Persian // xl('Persian')
45 // Polish // xl('Polish')
46 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
47 // Portuguese (European) // xl('Portuguese (European)')
48 // Romanian // xl('Romanian')
49 // Russian // xl('Russian')
50 // Slovak // xl('Slovak')
51 // Spanish (Latin American) // xl('Spanish (Latin American)')
52 // Spanish (Spain) // xl('Spanish (Spain)')
53 // Swedish // xl('Swedish')
54 // Turkish // xl('Turkish')
55 // Ukrainian // xl('Ukrainian')
56 // Vietnamese // xl('Vietnamese')
58 // OS-dependent stuff.
59 if (stristr(PHP_OS, 'WIN')) {
60 // MS Windows
61 $mysql_bin_dir = 'C:/xampp/mysql/bin';
62 $perl_bin_dir = 'C:/xampp/perl/bin';
63 $temporary_files_dir = 'C:/windows/temp';
64 $backup_log_dir = 'C:/windows/temp';
66 else {
67 // Everything else
68 $mysql_bin_dir = '/usr/bin';
69 $perl_bin_dir = '/usr/bin';
70 $temporary_files_dir = '/tmp';
71 $backup_log_dir = '/tmp';
74 // Language constant declarations:
75 // xl('Appearance')
76 // xl('Locale')
77 // xl('Features')
78 // xl('Calendar')
79 // xl('Security')
80 // xl('Notifications')
81 // xl('Miscellaneous')
83 // List of user specific tabs and globals
84 $USER_SPECIFIC_TABS = array('Appearance',
85 'Locale',
86 'Calendar',
87 'Connectors');
88 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
89 'concurrent_layout',
90 'css_header',
91 'gbl_pt_list_page_size',
92 'gbl_pt_list_new_window',
93 'units_of_measurement',
94 'us_weight_format',
95 'date_display_format',
96 'time_display_format',
97 'event_color',
98 'erx_import_status_message');
100 $GLOBALS_METADATA = array(
102 // Appearance Tab
104 'Appearance' => array(
106 'default_top_pane' => array(
107 xl('Main Top Pane Screen'), // descriptive name
108 array(
109 'main_info.php' => xl('Calendar Screen'),
110 '../new/new.php' => xl('Patient Search/Add Screen'),
112 'main_info.php', // default = calendar
113 xl('Type of screen layout')
116 'concurrent_layout' => array(
117 xl('Layout Style'), // descriptive name
118 array(
119 '0' => xl('Old style layout with no left menu'),
120 '1' => xl('Navigation menu consists of pairs of radio buttons'),
121 '2' => xl('Navigation menu is a tree view'),
122 '3' => xl('Navigation uses a sliding menu'),
124 '3', // default = tree menu
125 xl('Type of screen layout')
128 'css_header' => array(
129 xl('Theme'),
130 'css',
131 'style_oemr.css',
132 xl('Pick a CSS theme.')
135 'gbl_nav_area_width' => array(
136 xl('Navigation Area Width'),
137 'num',
138 '150',
139 xl('Width in pixels of the left navigation frame.')
142 'openemr_name' => array(
143 xl('Application Title'),
144 'text',
145 'OpenEMR',
146 xl('Application name for login page and main window title.')
149 'full_new_patient_form' => array(
150 xl('New Patient Form'),
151 array(
152 '0' => xl('Old-style static form without search or duplication check'),
153 '1' => xl('All demographics fields, with search and duplication check'),
154 '2' => xl('Mandatory or specified fields only, search and dup check'),
155 '3' => xl('Mandatory or specified fields only, dup check, no search'),
157 '1', // default
158 xl('Style of form used for adding new patients')
161 'patient_search_results_style' => array(
162 xl('Patient Search Results Style'),
163 array(
164 '0' => xl('Encounter statistics'),
165 '1' => xl('Mandatory and specified fields'),
167 '0', // default
168 xl('Type of columns displayed for patient search results')
171 'gbl_tall_nav_area' => array(
172 xl('Tall Navigation Area'),
173 'bool', // data type
174 '0', // default = false
175 xl('Navigation area uses full height of frameset')
178 'gbl_nav_visit_forms' => array(
179 xl('Navigation Area Visit Forms'),
180 'bool', // data type
181 '1', // default = true
182 xl('Navigation area includes encounter forms')
185 'simplified_demographics' => array(
186 xl('Simplified Demographics'),
187 'bool', // data type
188 '0', // default = false
189 xl('Omit insurance and some other things from the demographics form')
192 'simplified_prescriptions' => array(
193 xl('Simplified Prescriptions'),
194 'bool', // data type
195 '0', // default = false
196 xl('Omit form, route and interval which then become part of dosage')
199 'simplified_copay' => array(
200 xl('Simplified Co-Pay'),
201 'bool', // data type
202 '0', // default = false
203 xl('Omit method of payment from the co-pay panel')
206 'use_charges_panel' => array(
207 xl('Use Charges Panel'),
208 'bool', // data type
209 '0', // default = false
210 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
213 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
214 'enable_fees_in_left_menu' => array(
215 xl('Enable Fees In Left Menu'),
216 'bool', // data type
217 '1', // default = true
218 xl('Enable Fees In Left Menu')
220 // EDI history 2012-09-13
221 'enable_edihistory_in_left_menu' => array(
222 xl('Enable EDI History In Left Menu'),
223 'bool', // data type
224 '1', // default = true
225 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
228 'online_support_link' => array(
229 xl('Online Support Link'),
230 'text', // data type
231 'http://open-emr.org/',
232 xl('URL for OpenEMR support.')
235 'encounter_page_size' => array(
236 xl('Encounter Page Size'),
237 array(
238 '0' => xl('Show All'),
239 '5' => '5',
240 '10' => '10',
241 '15' => '15',
242 '20' => '20',
243 '25' => '25',
244 '50' => '50',
246 '20',
247 xl('Number of encounters to display per page.')
250 'gbl_pt_list_page_size' => array(
251 xl('Patient List Page Size'),
252 array(
253 '10' => '10',
254 '25' => '25',
255 '50' => '50',
256 '100' => '100',
258 '10',
259 xl('Number of patients to display per page in the patient list.')
262 'gbl_pt_list_new_window' => array(
263 xl('Patient List New Window'),
264 'bool', // data type
265 '0', // default = false
266 xl('Default state of New Window checkbox in the patient list.')
269 'gbl_vitals_options' => array(
270 xl('Vitals Form Options'),
271 array(
272 '0' => xl('Standard'),
273 '1' => xl('Omit circumferences'),
275 '0', // default
276 xl('Special treatment for the Vitals form')
281 // Locale Tab
283 'Locale' => array(
285 'language_default' => array(
286 xl('Default Language'),
287 'lang', // data type
288 'English (Standard)', // default = english
289 xl('Default language if no other is allowed or chosen.')
292 'language_menu_showall' => array(
293 xl('All Languages Allowed'),
294 'bool', // data type
295 '1', // default = true
296 xl('Allow all available languages as choices on menu at login.')
299 'language_menu_other' => array(
300 xl('Allowed Languages'),
301 'm_lang', // data type
302 '', // default = none
303 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
306 'allow_debug_language' => array(
307 xl('Allow Debugging Language'),
308 'bool', // data type
309 '1', // default = true during development and false for production releases
310 xl('This will allow selection of the debugging (\'dummy\') language.')
313 'translate_layout' => array(
314 xl('Translate Layouts'),
315 'bool', // data type
316 '1', // default = true
317 xl('Is text from form layouts to be translated?')
320 'translate_lists' => array(
321 xl('Translate Lists'),
322 'bool', // data type
323 '1', // default = true
324 xl('Is text from lists to be translated?')
327 'translate_gacl_groups' => array(
328 xl('Translate Access Control Groups'),
329 'bool', // data type
330 '1', // default = true
331 xl('Are access control group names to be translated?')
334 'translate_form_titles' => array(
335 xl('Translate Patient Note Titles'),
336 'bool', // data type
337 '1', // default = true
338 xl('Are patient note titles to be translated?')
341 'translate_document_categories' => array(
342 xl('Translate Document Categories'),
343 'bool', // data type
344 '1', // default = true
345 xl('Are document category names to be translated?')
348 'translate_appt_categories' => array(
349 xl('Translate Appointment Categories'),
350 'bool', // data type
351 '1', // default = true
352 xl('Are appointment category names to be translated?')
355 'units_of_measurement' => array(
356 xl('Units for Visit Forms'),
357 array(
358 '1' => xl('Show both US and metric (main unit is US)'),
359 '2' => xl('Show both US and metric (main unit is metric)'),
360 '3' => xl('Show US only'),
361 '4' => xl('Show metric only'),
363 '1', // default = Both/US
364 xl('Applies to the Vitals form and Growth Chart')
367 'us_weight_format' => array(
368 xl('Display Format for US Weights'),
369 array(
370 '1'=>xl('Show pounds as decimal value'),
371 '2'=>xl('Show pounds and ounces')
373 '1',
374 xl('Applies to Vitals form')
377 'disable_deprecated_metrics_form' => array(
378 xl('Disable Old Metric Vitals Form'),
379 'bool', // data type
380 '1', // default = true
381 xl('This was the older metric-only Vitals form, now deprecated.')
384 'phone_country_code' => array(
385 xl('Telephone Country Code'),
386 'num',
387 '1', // default = North America
388 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
391 'date_display_format' => array(
392 xl('Date Display Format'),
393 array(
394 '0' => xl('YYYY-MM-DD'),
395 '1' => xl('MM/DD/YYYY'),
396 '2' => xl('DD/MM/YYYY'),
398 '0',
399 xl('Format used to display most dates.')
402 'time_display_format' => array(
403 xl('Time Display Format'),
404 array(
405 '0' => xl('24 hr'),
406 '1' => xl('12 hr'),
408 '0',
409 xl('Format used to display most times.')
412 'currency_decimals' => array(
413 xl('Currency Decimal Places'),
414 array(
415 '0' => xl('0'),
416 '1' => xl('1'),
417 '2' => xl('2'),
419 '2',
420 xl('Number of digits after decimal point for currency, usually 0 or 2.')
423 'currency_dec_point' => array(
424 xl('Currency Decimal Point Symbol'),
425 array(
426 '.' => xl('Period'),
427 ',' => xl('Comma'),
429 '.',
430 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
433 'currency_thousands_sep' => array(
434 xl('Currency Thousands Separator'),
435 array(
436 ',' => xl('Comma'),
437 '.' => xl('Period'),
438 ' ' => xl('Space'),
439 '' => xl('None'),
441 ',',
442 xl('Symbol used to separate thousands for currency.')
445 'gbl_currency_symbol' => array(
446 xl('Currency Designator'),
447 'text', // data type
448 '$', // default
449 xl('Code or symbol to indicate currency')
451 'age_display_format'=>array(xl('Age Display Format'),
452 array(
453 '0'=>xl('Years or months'),
454 '1'=>xl('Years, months and days')
456 '0',
457 xl('Format for age display')
459 'age_display_limit' => array(
460 xl('Age in Years for Display Format Change'),
461 'num',
462 '3',
463 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
467 // Features Tab
469 'Features' => array(
471 'specific_application' => array(
472 xl('Specific Application'),
473 array(
474 '0' => xl('None'),
475 '1' => xl('Athletic team'),
476 '2' => xl('IPPF'),
477 '3' => xl('Weight loss clinic'),
479 '0', // default
480 xl('Indicator for specialized usage')
483 'inhouse_pharmacy' => array(
484 xl('Drugs and Products'),
485 array(
486 '0' => xl('Do not inventory and sell any products'),
487 '1' => xl('Inventory and sell drugs only'),
488 '2' => xl('Inventory and sell both drugs and non-drug products'),
489 '3' => xl('Products but no prescription drugs and no templates'),
491 '0', // default
492 xl('Option to support inventory and sales of products')
495 'disable_chart_tracker' => array(
496 xl('Disable Chart Tracker'),
497 'bool', // data type
498 '0', // default = false
499 xl('Removes the Chart Tracker feature')
502 'disable_phpmyadmin_link' => array(
503 xl('Disable phpMyAdmin'),
504 'bool', // data type
505 '0', // default = false
506 xl('Removes support for phpMyAdmin')
509 'disable_immunizations' => array(
510 xl('Disable Immunizations'),
511 'bool', // data type
512 '0', // default = false
513 xl('Removes support for immunizations')
516 'disable_prescriptions' => array(
517 xl('Disable Prescriptions'),
518 'bool', // data type
519 '0', // default = false
520 xl('Removes support for prescriptions')
523 'omit_employers' => array(
524 xl('Omit Employers'),
525 'bool', // data type
526 '0', // default = false
527 xl('Omit employer information in patient demographics')
530 'select_multi_providers' => array(
531 xl('Support Multi-Provider Events'),
532 'bool', // data type
533 '0', // default = false
534 xl('Support calendar events that apply to multiple providers')
537 'disable_non_default_groups' => array(
538 xl('Disable User Groups'),
539 'bool', // data type
540 '1', // default = true
541 xl('Normally this should be checked. Not related to access control.')
544 'ignore_pnotes_authorization' => array(
545 xl('Skip Authorization of Patient Notes'),
546 'bool', // data type
547 '1', // default = true
548 xl('Do not require patient notes to be authorized')
551 'support_encounter_claims' => array(
552 xl('Allow Encounter Claims'),
553 'bool', // data type
554 '0', // default = false
555 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
558 'advance_directives_warning' => array(
559 xl('Advance Directives Warning'),
560 'bool', // data type
561 '0', // default = false
562 xl('Display advance directives in the demographics page.')
565 'configuration_import_export' => array(
566 xl('Configuration Export/Import'),
567 'bool', // data type
568 '0', // default = false
569 xl('Support export/import of configuration data via the Backup page.')
572 'restrict_user_facility' => array(
573 xl('Restrict Users to Facilities'),
574 'bool', // data type
575 '0', // default
576 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
579 'set_facility_cookie' => array(
580 xl('Remember Selected Facility'),
581 'bool', // data type
582 '0', // default
583 xl('Set a facility cookie to remember the selected facility between logins.')
586 'receipts_by_provider' => array(
587 xl('Print Receipts by Provider'),
588 'bool',
589 '0', // default
590 xl('Causes Receipts to Print Encounter/Primary Provider Info')
593 'discount_by_money' => array(
594 xl('Discounts as Monetary Amounts'),
595 'bool', // data type
596 '1', // default = true
597 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
600 'gbl_visit_referral_source' => array(
601 xl('Referral Source for Encounters'),
602 'bool', // data type
603 '0', // default = false
604 xl('A referral source may be specified for each visit.')
607 'gbl_mask_patient_id' => array(
608 xl('Mask for Patient IDs'),
609 'text', // data type
610 '', // default
611 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
614 'gbl_mask_invoice_number' => array(
615 xl('Mask for Invoice Numbers'),
616 'text', // data type
617 '', // default
618 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
621 'gbl_mask_product_id' => array(
622 xl('Mask for Product IDs'),
623 'text', // data type
624 '', // default
625 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
628 'force_billing_widget_open' => array(
629 xl('Force Billing Widget Open'),
630 'bool', // data type
631 '0', // default = false
632 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
635 'num_past_appointments_to_show' => array(
636 xl('Past Appointment Display Widget'),
637 'num', // data type
638 '0', // default = false
639 xl('A positive number will show that many past appointments on a Widget in the Patient Summary screen.')
642 'activate_ccr_ccd_report' => array(
643 xl('Activate CCR/CCD Reporting'),
644 'bool', // data type
645 '1', // default = true
646 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
649 'hide_document_encryption' => array(
650 xl('Hide Encryption/Decryption Options In Document Management'),
651 'bool', // data type
652 '1', // default = true
653 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
656 'use_custom_immun_list' => array(
657 xl('Use Custom Immunization List'),
658 'bool', // data type
659 '0', // default = true
660 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
665 //Documents Tab
666 'Documents' => array(
667 'document_storage_method' => array(
668 xl('Document Storage Method'),
669 array(
670 '0' => xl('Hard Disk'),
671 '1' => xl('CouchDB')
673 '0', // default
674 xl('Option to save method of document storage.')
676 'couchdb_host' => array(
677 xl('CouchDB HostName'),
678 'text',
679 'localhost',
680 xl('CouchDB host'),
682 'couchdb_user' => array(
683 xl('CouchDB UserName'),
684 'text',
686 xl('Username to connect to CouchDB'),
688 'couchdb_pass' => array(
689 xl('CouchDB Password'),
690 'text',
692 xl('Password to connect to CouchDB'),
694 'couchdb_port' => array(
695 xl('CouchDB Port'),
696 'text',
697 '5984',
698 xl('CouchDB port'),
700 'couchdb_dbase' => array(
701 xl('CouchDB Database'),
702 'text',
704 xl('CouchDB database name'),
706 'couchdb_log' => array(
707 xl('CouchDB Log Enable'),
708 'bool',
709 '0',
710 xl('Enable log for document uploads/downloads to CouchDB'),
714 // Calendar Tab
716 'Calendar' => array(
718 'disable_calendar' => array(
719 xl('Disable Calendar'),
720 'bool', // data type
721 '0', // default
722 xl('Do not display the calendar.')
725 'schedule_start' => array(
726 xl('Calendar Starting Hour'),
727 'hour',
728 '8', // default
729 xl('Beginning hour of day for calendar events.')
732 'schedule_end' => array(
733 xl('Calendar Ending Hour'),
734 'hour',
735 '17', // default
736 xl('Ending hour of day for calendar events.')
739 'calendar_interval' => array(
740 xl('Calendar Interval'),
741 array(
742 '5' => '5',
743 '10' => '10',
744 '15' => '15',
745 '20' => '20',
746 '30' => '30',
747 '60' => '60',
749 '15', // default
750 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
753 'calendar_appt_style' => array(
754 xl('Appointment Display Style'),
755 array(
756 '1' => 'Last name',
757 '2' => 'Last name, first name',
758 '3' => 'Last name, first name (title)',
759 '4' => 'Last name, first name (title: description)',
761 '2', // default
762 xl('This determines how appointments display on the calendar.')
765 'docs_see_entire_calendar' => array(
766 xl('Providers See Entire Calendar'),
767 'bool', // data type
768 '0', // default
769 xl('Check this if you want providers to see all appointments by default and not just their own.')
772 'auto_create_new_encounters' => array(
773 xl('Auto-Create New Encounters'),
774 'bool', // data type
775 '1', // default
776 xl('Automatically create a new encounter when appointment status is set to "@" (arrived).')
779 'event_color' => array(
780 xl('Appointment/Event Color'),
781 array(
782 '1' => 'Category Color Schema',
783 '2' => 'Facility Color Schema',
784 ), // data type
785 '1', // default
786 xl('This determines which color schema used for appointment')
791 // Security Tab
793 'Security' => array(
795 'timeout' => array(
796 xl('Idle Session Timeout Seconds'),
797 'num', // data type
798 '7200', // default
799 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
802 'secure_password' => array(
803 xl('Require Strong Passwords'),
804 'bool', // data type
805 '0', // default
806 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
809 'password_history' => array(
810 xl('Require Unique Passwords'),
811 'bool', // data type
812 '0', // default
813 xl('Means none of last three passwords are allowed when changing a password.')
815 'password_compatibility' => array(
816 xl('Permit unsalted passwords'),
817 'bool', // data type
818 '1', // default
819 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')
822 'password_expiration_days' => array(
823 xl('Default Password Expiration Days'),
824 'num', // data type
825 '0', // default
826 xl('Default password expiration period in days. 0 means this feature is disabled.')
829 'password_grace_time' => array(
830 xl('Password Expiration Grace Period'),
831 'num', // data type
832 '0', // default
833 xl('Period in days where a user may login with an expired password.')
836 'is_client_ssl_enabled' => array(
837 xl('Enable Client SSL'),
838 'bool', // data type
839 '0', // default
840 xl('Enable client SSL certificate authentication.')
843 'certificate_authority_crt' => array(
844 xl('Path to CA Certificate File'),
845 'text', // data type
846 '', // default
847 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
850 'certificate_authority_key' => array(
851 xl('Path to CA Key File'),
852 'text', // data type
853 '', // default
854 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
857 'client_certificate_valid_in_days' => array(
858 xl('Client Certificate Expiration Days'),
859 'num', // data type
860 '365', // default
861 xl('Number of days that the client certificate is valid.')
864 'Emergency_Login_email_id' => array(
865 xl('Emergency Login Email Address'),
866 'text', // data type
867 '', // default
868 xl('Email address, if any, to receive emergency login user activation messages.')
873 // Notifications Tab
875 'Notifications' => array(
877 'patient_reminder_sender_name' => array(
878 xl('Patient Reminder Sender Name'),
879 'text', // data type
880 '', // default
881 xl('Name of the sender for patient reminders.')
884 'patient_reminder_sender_email' => array(
885 xl('Patient Reminder Sender Email'),
886 'text', // data type
887 '', // default
888 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.')
891 'practice_return_email_path' => array(
892 xl('Notification Email Address'),
893 'text', // data type
894 '', // default
895 xl('Email address, if any, to receive administrative notifications.')
898 'EMAIL_METHOD' => array(
899 xl('Email Transport Method'),
900 array(
901 'PHPMAIL' => 'PHPMAIL',
902 'SENDMAIL' => 'SENDMAIL',
903 'SMTP' => 'SMTP',
905 'SMTP', // default
906 xl('Method for sending outgoing email.')
909 'SMTP_HOST' => array(
910 xl('SMTP Server Hostname'),
911 'text', // data type
912 'localhost', // default
913 xl('If SMTP is used, the server`s hostname or IP address.')
916 'SMTP_PORT' => array(
917 xl('SMTP Server Port Number'),
918 'num', // data type
919 '25', // default
920 xl('If SMTP is used, the server`s TCP port number (usually 25).')
923 'SMTP_USER' => array(
924 xl('SMTP User for Authentication'),
925 'text', // data type
926 '', // default
927 xl('Must be empty if SMTP authentication is not used.')
930 'SMTP_PASS' => array(
931 xl('SMTP Password for Authentication'),
932 'text', // data type
933 '', // default
934 xl('Must be empty if SMTP authentication is not used.')
937 'EMAIL_NOTIFICATION_HOUR' => array(
938 xl('Email Notification Hours'),
939 'num', // data type
940 '50', // default
941 xl('Number of hours in advance to send email notifications.')
944 'SMS_NOTIFICATION_HOUR' => array(
945 xl('SMS Notification Hours'),
946 'num', // data type
947 '50', // default
948 xl('Number of hours in advance to send SMS notifications.')
951 'SMS_GATEWAY_USENAME' => array(
952 xl('SMS Gateway Username'),
953 'text', // data type
954 '', // default
955 xl('Username for SMS Gateway.')
958 'SMS_GATEWAY_PASSWORD' => array(
959 xl('SMS Gateway Password'),
960 'text', // data type
961 '', // default
962 xl('Password for SMS Gateway.')
965 'SMS_GATEWAY_APIKEY' => array(
966 xl('SMS Gateway API Key'),
967 'text', // data type
968 '', // default
969 xl('API key for SMS Gateway.')
972 'phone_notification_hour' => array(
973 xl('Phone Notification Hour'),
974 'num', // data type
975 '50', // default
976 xl('Number of hours in advance to send Phone notification.')
979 'phone_gateway_username' => array(
980 xl('Phone Gateway Username'),
981 'text', // data type
982 '', // default
983 xl('Username for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
986 'phone_gateway_password' => array(
987 xl('Phone Gateway Password'),
988 'text', // data type
989 '', // default
990 xl('Password for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
993 'phone_gateway_url' => array(
994 xl('Phone Gateway URL'),
995 'text', // data type
996 '', // default
997 xl('URL for Phone Gateway. Automated VOIP service provided by Maviq. Please visit http://signup.maviq.com for more information.')
1002 // CDR (Clinical Decision Rules)
1004 'CDR' => array(
1006 'enable_cdr' => array(
1007 xl('Enable Clinical Decisions Rules (CDR)'),
1008 'bool', // data type
1009 '1', // default
1010 xl('Enable Clinical Decisions Rules (CDR)')
1013 'enable_cdr_crw' => array(
1014 xl('Enable Clinical Reminder Widget'),
1015 'bool', // data type
1016 '1', // default
1017 xl('Enable Clinical Reminder Widget')
1020 'enable_cdr_crp' => array(
1021 xl('Enable Clinical Reminder Popup'),
1022 'bool', // data type
1023 '1', // default
1024 xl('Enable Clinical Reminder Popup')
1027 'enable_cdr_prw' => array(
1028 xl('Enable Patient Reminder Widget'),
1029 'bool', // data type
1030 '1', // default
1031 xl('Enable Patient Reminder Widget')
1034 'enable_cqm' => array(
1035 xl('Enable CQM Reporting'),
1036 'bool', // data type
1037 '1', // default
1038 xl('Enable Clinical Quality Measure (CQM) Reporting')
1041 'pqri_registry_name' => array(
1042 xl('PQRI Registry Name'),
1043 'text', // data type
1044 'Model Registry', // default
1045 xl('PQRI Registry Name')
1048 'pqri_registry_id' => array(
1049 xl('PQRI Registry ID'),
1050 'text', // data type
1051 '125789123', // default
1052 xl('PQRI Registry ID')
1055 'enable_amc' => array(
1056 xl('Enable AMC Reporting'),
1057 'bool', // data type
1058 '1', // default
1059 xl('Enable Automated Measure Calculations (AMC) Reporting')
1062 'enable_amc_prompting' => array(
1063 xl('Enable AMC Prompting'),
1064 'bool', // data type
1065 '1', // default
1066 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
1069 'enable_amc_tracking' => array(
1070 xl('Enable AMC Tracking'),
1071 'bool', // data type
1072 '1', // default
1073 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
1076 'cdr_report_nice' => array(
1077 xl('CDR Reports Processing Priority'),
1078 array(
1079 '' => xl('Default Priority'),
1080 '5' => xl('Moderate Priority'),
1081 '10' => xl('Moderate/Low Priority'),
1082 '15' => xl('Low Priority'),
1083 '20' => xl('Lowest Priority')
1085 '', // default
1086 xl('Set processing priority for CDR engine based reports.')
1089 'pat_rem_clin_nice' => array(
1090 xl('Patient Reminder Creation Processing Priority'),
1091 array(
1092 '' => xl('Default Priority'),
1093 '5' => xl('Moderate Priority'),
1094 '10' => xl('Moderate/Low Priority'),
1095 '15' => xl('Low Priority'),
1096 '20' => xl('Lowest Priority')
1098 '', // default
1099 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
1104 // Logging
1106 'Logging' => array(
1108 'enable_auditlog' => array(
1109 xl('Enable Audit Logging'),
1110 'bool', // data type
1111 '1', // default
1112 xl('Enable Audit Logging')
1115 'audit_events_patient-record' => array(
1116 xl('Audit Logging Patient Record'),
1117 'bool', // data type
1118 '1', // default
1119 xl('Enable logging of patient record modifications.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1122 'audit_events_scheduling' => array(
1123 xl('Audit Logging Scheduling'),
1124 'bool', // data type
1125 '1', // default
1126 xl('Enable logging of scheduling activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1129 'audit_events_order' => array(
1130 xl('Audit Logging Order'),
1131 'bool', // data type
1132 '1', // default
1133 xl('Enable logging of ordering activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1136 'audit_events_security-administration' => array(
1137 xl('Audit Logging Security Administration'),
1138 'bool', // data type
1139 '1', // default
1140 xl('Enable logging of security and administration activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1143 'audit_events_backup' => array(
1144 xl('Audit Logging Backups'),
1145 'bool', // data type
1146 '1', // default
1147 xl('Enable logging of backup related activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1150 'audit_events_other' => array(
1151 xl('Audit Logging Miscellaneous'),
1152 'bool', // data type
1153 '1', // default
1154 xl('Enable logging of miscellaneous activities.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1157 'audit_events_query' => array(
1158 xl('Audit Logging SELECT Query'),
1159 'bool', // data type
1160 '0', // default
1161 xl('Enable logging of all SQL SELECT queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1164 'audit_events_cdr' => array(
1165 xl('Audit CDR Engine Queries'),
1166 'bool', // data type
1167 '0', // default
1168 xl('Enable logging of CDR Engine Queries.').' ('.xl('Note that Audit Logging needs to be enabled above').')'
1171 'enable_atna_audit' => array(
1172 xl('Enable ATNA Auditing'),
1173 'bool', // data type
1174 '0', // default
1175 xl('Enable Audit Trail and Node Authentication (ATNA).')
1178 'atna_audit_host' => array(
1179 xl('ATNA audit host'),
1180 'text', // data type
1181 '', // default
1182 xl('The hostname of the ATNA audit repository machine.')
1185 'atna_audit_port' => array(
1186 xl('ATNA audit port'),
1187 'text', // data type
1188 '6514', // default
1189 xl('Listening port of the RFC 5425 TLS syslog server.')
1192 'atna_audit_localcert' => array(
1193 xl('ATNA audit local certificate'),
1194 'text', // data type
1195 '', // default
1196 xl('Certificate to send to RFC 5425 TLS syslog server.')
1199 'atna_audit_cacert' => array(
1200 xl('ATNA audit CA certificate'),
1201 'text', // data type
1202 '', // default
1203 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
1208 // Miscellaneous Tab
1210 'Miscellaneous' => array(
1212 'mysql_bin_dir' => array(
1213 xl('Path to MySQL Binaries'),
1214 'text', // data type
1215 $mysql_bin_dir, // default
1216 xl('Full path to directory containing MySQL executables.')
1219 'perl_bin_dir' => array(
1220 xl('Path to Perl Binaries'),
1221 'text', // data type
1222 $perl_bin_dir, // default
1223 xl('Full path to directory containing Perl executables.')
1226 'temporary_files_dir' => array(
1227 xl('Path to Temporary Files'),
1228 'text', // data type
1229 $temporary_files_dir, // default
1230 xl('Full path to directory used for temporary files.')
1233 'backup_log_dir' => array(
1234 xl('Path for Event Log Backup'),
1235 'text', // data type
1236 $backup_log_dir, // default
1237 xl('Full path to directory for event log backup.')
1240 'state_data_type' => array(
1241 xl('State Data Type'),
1242 array(
1243 '2' => xl('Text field'),
1244 '1' => xl('Single-selection list'),
1245 '26' => xl('Single-selection list with ability to add to the list'),
1247 '26', // default
1248 xl('Field type to use for employer or subscriber state in demographics.')
1251 'state_list' => array(
1252 xl('State list'),
1253 'text', // data type
1254 'state', // default
1255 xl('List used by above State Data Type option.')
1258 'state_custom_addlist_widget' => array(
1259 xl('State List Widget Custom Fields'),
1260 'bool', // data type
1261 '1', // default
1262 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
1265 'country_data_type' => array(
1266 xl('Country Data Type'),
1267 array(
1268 '2' => xl('Text field'),
1269 '1' => xl('Single-selection list'),
1270 '26' => xl('Single-selection list with ability to add to the list'),
1272 '26', // default
1273 xl('Field type to use for employer or subscriber country in demographics.')
1276 'country_list' => array(
1277 xl('Country list'),
1278 'text', // data type
1279 'country', // default
1280 xl('List used by above Country Data Type option.')
1283 'print_command' => array(
1284 xl('Print Command'),
1285 'text', // data type
1286 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
1287 xl('Shell command for printing from the server.')
1290 'default_chief_complaint' => array(
1291 xl('Default Reason for Visit'),
1292 'text', // data type
1294 xl('You may put text here as the default complaint in the New Patient Encounter form.')
1297 'default_new_encounter_form' => array(
1298 xl('Default Encounter Form ID'),
1299 'text', // data type
1301 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
1304 'patient_id_category_name' => array(
1305 xl('Patient ID Category Name'),
1306 'text', // data type
1307 'Patient ID card', // default
1308 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1311 'patient_photo_category_name' => array(
1312 xl('Patient Photo Category Name'),
1313 'text', // data type
1314 'Patient Photograph', // default
1315 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1318 'MedicareReferrerIsRenderer' => array(
1319 xl('Medicare Referrer Is Renderer'),
1320 'bool', // data type
1321 '0', // default = true
1322 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
1325 'post_to_date_benchmark' => array(
1326 xl('Financial Close Date (yyyy-mm-dd)'),
1327 'text', // data type
1328 date('Y-m-d',time() - (10 * 24 * 60 * 60)), // default
1329 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
1332 'enable_hylafax' => array(
1333 xl('Enable Hylafax Support'),
1334 'bool', // data type
1335 '0', // default
1336 xl('Enable Hylafax Support')
1339 'hylafax_server' => array(
1340 xl('Hylafax Server'),
1341 'text', // data type
1342 'localhost', // default
1343 xl('Hylafax server hostname.')
1346 'hylafax_basedir' => array(
1347 xl('Hylafax Directory'),
1348 'text', // data type
1349 '/var/spool/fax', // default
1350 xl('Location where Hylafax stores faxes.')
1353 'hylafax_enscript' => array(
1354 xl('Hylafax Enscript Command'),
1355 'text', // data type
1356 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
1357 xl('Enscript command used by Hylafax.')
1360 'enable_scanner' => array(
1361 xl('Enable Scanner Support'),
1362 'bool', // data type
1363 '0', // default
1364 xl('Enable Scanner Support')
1367 'scanner_output_directory' => array(
1368 xl('Scanner Directory'),
1369 'text', // data type
1370 '/mnt/scan_docs', // default
1371 xl('Location where scans are stored.')
1376 // Portal Tab
1378 'Portal' => array(
1380 'portal_onsite_enable' => array(
1381 xl('Enable Onsite Patient Portal'),
1382 'bool', // data type
1383 '0',
1384 xl('Enable Onsite Patient Portal.')
1387 'portal_onsite_address' => array(
1388 xl('Onsite Patient Portal Site Address'),
1389 'text', // data type
1390 'https://your_web_site.com/openemr/patients',
1391 xl('Website link for the Onsite Patient Portal.')
1394 'portal_offsite_enable' => array(
1395 xl('Enable Offsite Patient Portal'),
1396 'bool', // data type
1397 '0',
1398 xl('Enable Offsite Patient Portal.')
1401 'portal_offsite_providerid' => array(
1402 xl('Offsite Patient Portal Provider ID'),
1403 'text', // data type
1405 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
1408 'portal_offsite_username' => array(
1409 xl('Offsite Patient Portal Username'),
1410 'text', // data type
1412 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
1415 'portal_offsite_password' => array(
1416 xl('Offsite Patient Portal Password'),
1417 'pwd', // data type
1419 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
1422 'portal_offsite_address' => array(
1423 xl('Offsite Patient Portal Site Address'),
1424 'text', // data type
1425 'https://mydocsportal.com/provider.php',
1426 xl('Offsite Https link for the Patient Portal.')
1428 'portal_offsite_address_patient_link' => array(
1429 xl('Offsite Patient Portal Site Address (Patient Link)'),
1430 'text', // data type
1431 'https://mydocsportal.com',
1432 xl('Offsite Https link for the Patient Portal.(Patient Link)')
1437 // Connectors Tab
1439 'Connectors' => array(
1441 'lab_exchange_enable' => array(
1442 xl('Enable Lab Exchange'),
1443 'bool', // data type
1444 '0',
1445 xl('Enable the Medical Information Integration, LLC Lab Exchange Service.')
1448 'lab_exchange_siteid' => array(
1449 xl('Lab Exchange Site ID'),
1450 'text', // data type
1451 '3',
1452 xl('Site ID for the Medical Information Integration, LLC Lab Exchange Service.')
1455 'lab_exchange_token' => array(
1456 xl('Lab Exchange Token ID'),
1457 'text', // data type
1458 '12345',
1459 xl('Token ID for the Medical Information Integration, LLC Lab Exchange Service.')
1462 'lab_exchange_endpoint' => array(
1463 xl('Lab Exchange Site Address'),
1464 'text', // data type
1465 'https://len.mi-squared.com:29443/len/api',
1466 xl('Contact Medical Information Integration, LLC at http://mi-squared.com for Lab Exchange Service.')
1469 'erx_enable' => array(
1470 xl('Enable NewCrop eRx Service'),
1471 'bool', // data type
1472 '0',
1473 xl('Enable NewCrop eRx Service')
1476 'erx_path_production' => array(
1477 xl('NewCrop eRx Site Address'),
1478 'text', // data type
1479 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
1480 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing the eRx service')
1483 'erx_path_soap_production' => array(
1484 xl('NewCrop eRx Web Service Address'),
1485 'text', // data type
1486 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
1487 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing the eRx service')
1490 'partner_name_production' => array(
1491 xl('NewCrop eRx Partner Name'),
1492 'text', // data type
1494 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing the eRx service')
1497 'erx_name_production' => array(
1498 xl('NewCrop eRx Name'),
1499 'text', // data type
1501 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing the eRx service')
1504 'erx_password_production' => array(
1505 xl('NewCrop eRx Password'),
1506 'pass', // data type
1508 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing the eRx service')
1511 'erx_upload_active' => array(
1512 xl('Only upload active prescriptions'),
1513 'bool', // data type
1514 '0',
1515 xl('Only upload active prescriptions')
1518 'erx_import_status_message' => array(
1519 xl('Enable import status message for NewCrop erx'),
1520 'bool', // data type
1521 '0',
1522 xl('Enable import status message for NewCrop erx')
1525 'erx_medication_display' => array(
1526 xl('Do not display Medications uploaded to NewCrop'),
1527 'bool', // data type
1528 '0',
1529 xl('Do not display Medications uploaded to NewCrop')
1532 'erx_allergy_display' => array(
1533 xl('Do not display Allergy uploaded to NewCrop'),
1534 'bool', // data type
1535 '0',
1536 xl('Do not display Allergy uploaded to NewCrop')
1539 'erx_default_patient_country' => array(
1540 xl('Default Patient Country'),
1541 array(
1542 '' => '',
1543 'US' => 'USA',
1544 'CA' => 'Canada',
1545 'MX' => 'Mexico'
1548 xl('Default Patient Country'),
1551 'phimail_enable' => array(
1552 xl('Enable phiMail Direct Messaging Service'),
1553 'bool', // data type
1554 '0',
1555 xl('Enable phiMail Direct Messaging Service')
1558 'phimail_server_address' => array(
1559 xl('phiMail Server Address'),
1560 'text', // data type
1561 'https://phimail.example.com:32541',
1562 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
1565 'phimail_username' => array(
1566 xl('phiMail Username'),
1567 'text', // data type
1569 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
1572 'phimail_password' => array(
1573 xl('phiMail Password'),
1574 'pass', // data type
1576 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
1579 'phimail_notify' => array(
1580 xl('phiMail notification user'),
1581 'text', // data type
1582 'admin',
1583 xl('This user will receive notification of new incoming Direct messages')
1586 'phimail_interval' => array(
1587 xl('phiMail Message Check Interval (minutes)'),
1588 'num', // data type
1589 '5',
1590 xl('Interval between message checks (set to zero for manual checks only)')
1593 'phimail_ccd_enable' => array(
1594 xl('phiMail Allow CCD Send'),
1595 'bool', // data type
1596 '0',
1597 xl('phiMail Allow CCD Send')
1600 'phimail_ccr_enable' => array(
1601 xl('phiMail Allow CCR Send'),
1602 'bool', // data type
1603 '0',
1604 xl('phiMail Allow CCR Send')
1609 'Rx' => array(
1610 'rx_enable_DEA' => array(
1611 xl('Rx Enable DEA #'),
1612 'bool', // data type
1613 '1',
1614 xl('Rx Enable DEA #')
1616 'rx_show_DEA' => array(
1617 xl('Rx Show DEA #'),
1618 'bool', // data type
1619 '0',
1620 xl('Rx Show DEA #')
1622 'rx_enable_NPI' => array(
1623 xl('Rx Enable NPI'),
1624 'bool', // data type
1625 '0',
1626 xl('Rx Enable NPI')
1628 'rx_show_NPI' => array(
1629 xl('Rx Show NPI'),
1630 'bool', // data type
1631 '0',
1632 xl('Rx Show NPI')
1634 'rx_enable_SLN' => array(
1635 xl('Rx Enable State Lic. #'),
1636 'bool', // data type
1637 '0',
1638 xl('Rx Enable State Lic. #')
1640 'rx_show_SLN' => array(
1641 xl('Rx Show State Lic. #'),
1642 'bool', // data type
1643 '0',
1644 xl('Rx Show State Lic. #')
1646 'rx_paper_size' => array(
1647 xl('Rx Paper Size'), // descriptive name
1648 array(
1649 'LETTER' => xl('Letter Paper Size'),
1650 'LEGAL' => xl('Legal Paper Size'),
1651 'FOLIO' => xl('Folio Paper Size'),
1652 'EXECUTIVE' => xl('Executive Paper Size'),
1653 '4A0' => ('4A0' . " " . xl('Paper Size')),
1654 '2A0' => ('2A0' . " " . xl('Paper Size')),
1655 'A0' => ('A0' . " " . xl('Paper Size')),
1656 'A1' => ('A1' . " " . xl('Paper Size')),
1657 'A2' => ('A2' . " " . xl('Paper Size')),
1658 'A3' => ('A3' . " " . xl('Paper Size')),
1659 'A4' => ('A4' . " " . xl('Paper Size')),
1660 'A5' => ('A5' . " " . xl('Paper Size')),
1661 'A6' => ('A6' . " " . xl('Paper Size')),
1662 'A7' => ('A7' . " " . xl('Paper Size')),
1663 'A8' => ('A8' . " " . xl('Paper Size')),
1664 'A9' => ('A9' . " " . xl('Paper Size')),
1665 'A10' => ('A10' . " " . xl('Paper Size')),
1666 'B0' => ('B0' . " " . xl('Paper Size')),
1667 'B1' => ('B1' . " " . xl('Paper Size')),
1668 'B2' => ('B2' . " " . xl('Paper Size')),
1669 'B3' => ('B3' . " " . xl('Paper Size')),
1670 'B4' => ('B4' . " " . xl('Paper Size')),
1671 'B5' => ('B5' . " " . xl('Paper Size')),
1672 'B6' => ('B6' . " " . xl('Paper Size')),
1673 'B7' => ('B7' . " " . xl('Paper Size')),
1674 'B8' => ('B8' . " " . xl('Paper Size')),
1675 'B9' => ('B9' . " " . xl('Paper Size')),
1676 'B10' => ('B10' . " " . xl('Paper Size')),
1677 'C0' => ('C0' . " " . xl('Paper Size')),
1678 'C1' => ('C1' . " " . xl('Paper Size')),
1679 'C2' => ('C2' . " " . xl('Paper Size')),
1680 'C3' => ('C3' . " " . xl('Paper Size')),
1681 'C4' => ('C4' . " " . xl('Paper Size')),
1682 'C5' => ('C5' . " " . xl('Paper Size')),
1683 'C6' => ('C6' . " " . xl('Paper Size')),
1684 'C7' => ('C7' . " " . xl('Paper Size')),
1685 'C8' => ('C8' . " " . xl('Paper Size')),
1686 'C9' => ('C9' . " " . xl('Paper Size')),
1687 'C10' => ('C10' . " " . xl('Paper Size')),
1688 'RA0' => ('RA0' . " " . xl('Paper Size')),
1689 'RA1' => ('RA1' . " " . xl('Paper Size')),
1690 'RA2' => ('RA2' . " " . xl('Paper Size')),
1691 'RA3' => ('RA3' . " " . xl('Paper Size')),
1692 'RA4' => ('RA4' . " " . xl('Paper Size')),
1693 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
1694 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
1695 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
1696 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
1697 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
1699 'LETTER', // default = tree menu
1700 xl('Rx Paper Size')
1702 'rx_left_margin' => array(
1703 xl('Rx Left Margin (px)'),
1704 'num',
1705 '30',
1706 xl('Rx Left Margin (px)')
1708 'rx_right_margin' => array(
1709 xl('Rx Right Margin (px)'),
1710 'num',
1711 '30',
1712 xl('Rx Right Margin (px)')
1714 'rx_top_margin' => array(
1715 xl('Rx Top Margin (px)'),
1716 'num',
1717 '72',
1718 xl('Rx Top Margin (px)')
1720 'rx_bottom_margin' => array(
1721 xl('Rx Bottom Margin (px)'),
1722 'num',
1723 '30',
1724 xl('Rx Bottom Margin (px)')