removing searchborrower from circ2.pm.
[koha.git] / loadmodules.pl
1 #!/usr/bin/perl
2
3 #script to show list of budgets and bookfunds
4 #written 4/2/00 by chris@katipo.co.nz
5 #called as an include by the acquisitions index page
6
7
8 # Copyright 2000-2002 Katipo Communications
9 #
10 # This file is part of Koha.
11 #
12 # Koha is free software; you can redistribute it and/or modify it under the
13 # terms of the GNU General Public License as published by the Free Software
14 # Foundation; either version 2 of the License, or (at your option) any later
15 # version.
16 #
17 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
18 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License along with
22 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
23 # Suite 330, Boston, MA  02111-1307 USA
24
25 use C4::Context;
26 use CGI;
27 my $input=new CGI;
28
29 my $module=$input->param('module');
30
31 SWITCH: {
32         if ($module eq 'acquisitions') { acquisitions(); last SWITCH; }
33         if ($module eq 'search') { catalogue_search(); last SWITCH; }
34         if ($module eq 'addbiblio') {addbiblio(); last SWITCH;}
35         if ($module eq 'somethingelse') { somethingelse(); last SWITCH; }
36 }
37
38 sub acquisitions {
39         my $aq_type = $input->param('acquisitions');
40         $aq_type = C4::Context->preference("acquisitions") || "normal" unless $aq_type;
41         my $marc_bool =$input->param('MARC');
42         $marc_bool = C4::Context->preference("MARC") ||"OFF" unless $marc_bool;
43
44         # Get the acquisition preference. This should be:
45         #       "simple" - minimal information required
46         #       "normal" - full information required
47         #       other - Same as "normal"
48
49         if ($aq_type eq 'simple') {
50                 if ($marc_bool eq "ON") {
51                         print $input->redirect("/cgi-bin/koha/acqui.simple/addbooks.pl");
52                 } else {
53                         print $input->redirect("/cgi-bin/koha/acqui.simple/addbiblio-nomarc.pl");
54                 }
55         } else {
56                 print $input ->redirect("/cgi-bin/koha/acqui/acqui-home.pl");
57         }
58 }
59
60 sub addbiblio {
61         my $marc_bool = C4::Context->preference("MARC") ||"OFF";
62                 if ($marc_bool eq "ON") {
63                         print $input->redirect("/cgi-bin/koha/acqui.simple/addbooks.pl");
64                 } else {
65                         print $input->redirect("/cgi-bin/koha/acqui.simple/addbiblio-nomarc.pl");
66                 }
67 }
68
69 sub catalogue_search {
70         my $marc_p = $input->param('marc');
71         $marc_p = C4::Context->boolean_preference('marc') unless defined $marc_p;
72         $marc_p = 'ON' unless defined $marc_p;
73         my $keyword=$input->param('keyword');
74         my $query = new CGI;
75         my $type = $query->param('type');
76         if ($keyword) {
77                 if ($marc_p) {
78                         print $input->redirect("/cgi-bin/koha/search.marc/search.pl?type=$type");
79                 } else {
80                         print $input ->redirect("/cgi-bin/koha/search.pl?keyword=$keyword");
81                 }
82         } else {
83                 if ($marc_p) {
84                         print $input->redirect("/cgi-bin/koha/search.marc/search.pl?type=$type");
85                 } else {
86                         print $input ->redirect("/cgi-bin/koha/catalogue-home.pl");
87                 }
88         }
89 }
90
91 sub somethingelse {
92 # just an example subroutine
93 }