]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/XXXX.new_print_method.sql
Unwrapped upgrade script for print.custom_js_file
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / XXXX.new_print_method.sql
1 INSERT into config.org_unit_setting_type
2 ( name, grp, label, description, datatype ) VALUES
3 (
4         'print.custom_js_file', 'circ',
5         oils_i18n_gettext(
6             'print.custom_js_file',
7             'Printing: Custom Javascript File',
8             'coust',
9             'label'
10         ),
11         oils_i18n_gettext(
12             'print.custom_js_file',
13             'Full URL path to a Javascript File to be loaded when printing. Should'
14             || ' implement a print_custom function for DOM manipulation. Can change'
15             || ' the value of the do_print variable to false to cancel printing.',
16             'coust',
17             'description'
18         ),
19         'string'
20     );