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

(-)a/installer/data/mysql/atomicupdate/bug_32731_-_add_CataloguingToolsInToolsHome_syspref.pl (+14 lines)
Line 0 Link Here
1
use Modern::Perl;
2
3
return {
4
    bug_number => "32731",
5
    description => "Add CataloguingToolsInToolsHome system preference",
6
    up => sub {
7
        my ($args) = @_;
8
        my ($dbh, $out) = @$args{qw(dbh out)};
9
10
        $dbh->do(q{INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('CataloguingToolsInToolsHome', '0', NULL, 'Show cataloguing tools in Tools Home menu, additional to Cataloguing Home', 'YesNo') });
11
12
        say $out "Added system preference 'CataloguingToolsInToolsHome'";
13
    },
14
};
(-)a/installer/data/mysql/mandatory/sysprefs.sql (+1 lines)
Lines 133-138 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
133
('casServerVersion','2', '2|3','Version of the CAS server Koha will connect to.','Choice'),
133
('casServerVersion','2', '2|3','Version of the CAS server Koha will connect to.','Choice'),
134
('CatalogModuleRelink','0',NULL,'If OFF the linker will never replace the authids that are set in the cataloging module.','YesNo'),
134
('CatalogModuleRelink','0',NULL,'If OFF the linker will never replace the authids that are set in the cataloging module.','YesNo'),
135
('CataloguingLog','1',NULL,'If ON, log edit/create/delete actions on bibliographic data. WARNING: this feature is very resource consuming.','YesNo'),
135
('CataloguingLog','1',NULL,'If ON, log edit/create/delete actions on bibliographic data. WARNING: this feature is very resource consuming.','YesNo'),
136
('CataloguingToolsInToolsHome', '0', NULL, 'Show cataloguing tools in Tools Home menu, additional to Cataloguing Home', 'YesNo'),
136
('ChargeFinesOnClosedDays','0',NULL,'Charge fines on days the library is closed.','YesNo'),
137
('ChargeFinesOnClosedDays','0',NULL,'Charge fines on days the library is closed.','YesNo'),
137
('CheckPrevCheckout','hardno','hardyes|softyes|softno|hardno','By default, for every item checked out, should we warn if the patron has borrowed that item in the past?','Choice'),
138
('CheckPrevCheckout','hardno','hardyes|softyes|softno|hardno','By default, for every item checked out, should we warn if the patron has borrowed that item in the past?','Choice'),
138
('CheckPrevCheckoutDelay','0', NULL,'Maximum number of days that will trigger a warning if the patron has borrowed that item in the past when CheckPrevCheckout is enabled.','free'),
139
('CheckPrevCheckoutDelay','0', NULL,'Maximum number of days that will trigger a warning if the patron has borrowed that item in the past when CheckPrevCheckout is enabled.','free'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref (-1 / +6 lines)
Lines 318-323 Cataloging: Link Here
318
                  dsc: descending.
318
                  dsc: descending.
319
                  az: from A to Z.
319
                  az: from A to Z.
320
                  za: from Z to A.
320
                  za: from Z to A.
321
        -
322
            - pref: CataloguingToolsInToolsHome
323
              choices:
324
                  1: "Show"
325
                  0: "Don't show"
326
            - cataloguing tools in the Tools Home page, additional to Cataloguing Home page.
321
    Importing:
327
    Importing:
322
        -
328
        -
323
            - When matching on ISBN with the record import tool,
329
            - When matching on ISBN with the record import tool,
324
- 

Return to bug 32731