Added copyright statement to all .pl and .pm files
[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::Acquisitions;
26 use C4::Biblio;
27 use C4::Search;
28 use CGI;
29 my $input=new CGI;
30
31 my $module=$input->param('module');
32
33 SWITCH: {
34     if ($module eq 'acquisitions') { acquisitions(); last SWITCH; }
35     if ($module eq 'somethingelse') { somethingelse(); last SWITCH; }
36 }
37
38
39 sub acquisitions {
40     # FIXME
41     # instead of getting a hash, then reading/writing to it at least twice 
42     # and up to four times, maybe this should be a different function -
43     # areAquisitionsSimple() which returns a boolean
44     my %systemprefs=systemprefs();
45     ($systemprefs{'acquisitions'}) || ($systemprefs{'acquisitions'}='normal');
46     if ($systemprefs{'acquisitions'} eq 'simple') {
47         print $input->redirect("/cgi-bin/koha/acqui.simple/addbooks.pl");
48     } elsif ($systemprefs{'acquisitions'} eq 'normal') {
49         print $input ->redirect("/acquisitions");
50     } else {
51         print $input ->redirect("/acquisitions");
52     }
53 }
54
55
56 sub somethingelse {
57 # just an example subroutine
58 }