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 334-339 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
334
('ILLOpacbackends',NULL,NULL,'ILL backends to enabled for OPAC initiated requests','multiple'),
334
('ILLOpacbackends',NULL,NULL,'ILL backends to enabled for OPAC initiated requests','multiple'),
335
('ILLOpacUnauthenticatedRequest',NULL,NULL,'Can OPAC users place ILL requests without having to be logged in','YesNo'),
335
('ILLOpacUnauthenticatedRequest',NULL,NULL,'Can OPAC users place ILL requests without having to be logged in','YesNo'),
336
('ILLPartnerCode','IL','','Patrons from this patron category will be used as partners to place ILL requests with','free'),
336
('ILLPartnerCode','IL','','Patrons from this patron category will be used as partners to place ILL requests with','free'),
337
('ILLRequestsTabs','','','Add customizable tabs to interlibrary loan requests list','Textarea'),
337
('ILLSendStaffNotices', NULL, NULL, 'Send these ILL notices to staff', 'multiple'),
338
('ILLSendStaffNotices', NULL, NULL, 'Send these ILL notices to staff', 'multiple'),
338
('ILS-DI','0','','Enables ILS-DI services at OPAC.','YesNo'),
339
('ILS-DI','0','','Enables ILS-DI services at OPAC.','YesNo'),
339
('ILS-DI:AuthorizedIPs','','Restricts usage of ILS-DI to some IPs','.','Free'),
340
('ILS-DI:AuthorizedIPs','','Restricts usage of ILS-DI to some IPs','.','Free'),
340
- 

Return to bug 30200