Added "father" column to bibliothesaurus table
[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 'MARC') {marc(); last SWITCH; }
35         if ($module eq 'somethingelse') { somethingelse(); last SWITCH; }
36 }
37
38 sub acquisitions {
39     my $aq_type = C4::Context->preference("acquisitions") || "normal"; 
40     # Get the acquisition preference. This should be: 
41     #       "simple" - minimal information required 
42     #       "normal" - full information required 
43     #       other - Same as "normal" 
44      
45     if ($aq_type eq 'simple') { 
46         print $input->redirect("/cgi-bin/koha/acqui.simple/addbooks.pl"); 
47     } elsif ($aq_type eq 'normal') { 
48         print $input ->redirect("/cgi-bin/koha/acqui/acqui-home.pl"); 
49     } else {
50         print $input ->redirect("/cgi-bin/koha/acqui/acqui-home.pl");
51     }
52 }
53
54 sub catalogue_search {
55         my $marc_p = C4::Context->boolean_preference("marc");
56         $marc_p = 1 unless defined $marc_p;
57         my $keyword=$input->param('keyword');
58         my $query = new CGI;
59         my $type = $query->param('type');
60         if ($keyword) {
61                 if ($marc_p) {
62                         print $input->redirect("/cgi-bin/koha/search.marc/search.pl?type=$type");
63                 } else {
64                         print $input ->redirect("/cgi-bin/koha/search.pl?keyword=$keyword");
65                 }
66         } else {
67                 if ($marc_p) {
68                         print $input->redirect("/cgi-bin/koha/search.marc/search.pl?type=$type");
69                 } else {
70                         print $input ->redirect("/cgi-bin/koha/catalogue-home.pl");
71                 }
72         }
73 }
74
75 sub marc {
76 #       my $marc_p = C4::Context->boolean_preference("marc");
77 #       $marc_p = 1 unless defined $marc_p;
78 #       my $query = new CGI;
79 #       my $type = $query->param('type');
80 #       if ($marc_p) {
81 #               print $input->redirect("/cgi-bin/koha/cataloguing.marc/cataloguing-home.pl");
82 #       } else {
83                 print $input ->redirect("/cgi-bin/koha/acqui.simple/isbnsearch.pl");
84 #       }
85 }
86
87 sub somethingelse {
88 # just an example subroutine
89 }