View | Details | Raw Unified | Return to bug 30200
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/Bug_30200-Add_ILLRequestsTabs.pl (+18 lines)
Line 0 Link Here
1
use Modern::Perl;
2
3
return {
4
    bug_number => "30200",
5
    description => "Add customizable tabs to interlibrary loan requests list",
6
    up => sub {
7
        my ($args) = @_;
8
        my ($dbh, $out) = @$args{qw(dbh out)};
9
        # Do you stuffs here
10
        $dbh->do(q{
11
            INSERT INTO `systempreferences`
12
                (variable,value,options,explanation,type)
13
            VALUES
14
                ('ILLRequestsTabs','','','Add customizable tabs to interlibrary loan requests list','Textarea');
15
        });
16
17
    },
18
};
(-)a/installer/data/mysql/mandatory/sysprefs.sql (-1 / +1 lines)
Lines 328-333 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
328
('ILLModuleUnmediated','0','','If enabled, try to immediately progress newly placed ILL requests.','YesNo'),
328
('ILLModuleUnmediated','0','','If enabled, try to immediately progress newly placed ILL requests.','YesNo'),
329
('ILLOpacbackends',NULL,NULL,'ILL backends to enabled for OPAC initiated requests','multiple'),
329
('ILLOpacbackends',NULL,NULL,'ILL backends to enabled for OPAC initiated requests','multiple'),
330
('ILLPartnerCode','IL','','Patrons from this patron category will be used as partners to place ILL requests with','free'),
330
('ILLPartnerCode','IL','','Patrons from this patron category will be used as partners to place ILL requests with','free'),
331
('ILLRequestsTabs','','','Add customizable tabs to interlibrary loan requests list','Textarea'),
331
('ILLSendStaffNotices', NULL, NULL, 'Send these ILL notices to staff', 'multiple'),
332
('ILLSendStaffNotices', NULL, NULL, 'Send these ILL notices to staff', 'multiple'),
332
('ILS-DI','0','','Enables ILS-DI services at OPAC.','YesNo'),
333
('ILS-DI','0','','Enables ILS-DI services at OPAC.','YesNo'),
333
('ILS-DI:AuthorizedIPs','','Restricts usage of ILS-DI to some IPs','.','Free'),
334
('ILS-DI:AuthorizedIPs','','Restricts usage of ILS-DI to some IPs','.','Free'),
334
- 

Return to bug 30200