templatified:set templatedirectory in koha.conf to use the templates
[koha.git] / jmemberentry.pl
1 #!/usr/bin/perl
2
3 #script to set up screen for modification of borrower details
4 #written 20/12/99 by chris@katipo.co.nz
5
6
7 # Copyright 2000-2002 Katipo Communications
8 #
9 # This file is part of Koha.
10 #
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 #
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License along with
21 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
22 # Suite 330, Boston, MA  02111-1307 USA
23
24 use strict;
25 use C4::Output;
26 use CGI;
27 use C4::Search;
28 use HTML::Template;
29
30 my $input = new CGI;
31
32 my $theme = $input->param('theme'); # only used if allowthemeoverride is set
33 my %tmpldata = pathtotemplate ( template => 'jmemberentry.tmpl', theme => $theme );
34 my $template = HTML::Template->new(filename => $tmpldata{'path'}, die_on_bad_params => 0);
35
36 my $member=$input->param('bornum');
37 if ($member eq ''){
38   $member=NewBorrowerNumber();
39 }
40 my $type=$input->param('type');
41
42 my $data=borrdata('',$member);
43
44 my @titles = ('Miss', 'Mrs', 'Ms', 'Mr', 'Dr', 'Sir');
45 my @titledata;
46 while (@titles) {
47   my $title = shift @titles;
48   my %row = ('title' => $title);
49   if ($data->{'title'} eq $title) {
50     $row{'selected'}=' selected';
51   } else {
52     $row{'selected'}='';
53   }
54   push(@titledata, \%row);
55 }
56
57 # get the data for children
58 my $cmember1=NewBorrowerNumber();
59 my @cmemdata;
60 for (my $i=0;$i<3;$i++){
61   my %row;
62   $row{'cmember'}=$cmember1+$i;
63   $row{'i'}=$i;
64   $row{'count'}=$i+1;
65   push(@cmemdata, \%row);
66 }
67
68
69 $template->param( startmenumember => startmenu('member'),
70                         endmenumember   => endmenu('member'),
71                         member          => $member,
72                         firstname       => $data->{'firstname'},
73                         surname         => $data->{'surname'},
74                         cardnumber      => $data->{'cardnumber'},
75                         area            => $data->{'area'},
76                         city            => $data->{'city'},
77                         address         => $data->{'address'},
78                         streetaddress   => $data->{'streetaddress'},
79                         streetcity      => $data->{'streetcity'},
80                         phone           => $data->{'phone'},
81                         phoneday        => $data->{'phoneday'},
82                         faxnumber       => $data->{'faxnumber'},
83                         emailaddress    => $data->{'emailaddress'},
84                         contactname     => $data->{'contactname'},
85                         altphone        => $data->{'altphone'},
86                         titleloop       => \@titledata,
87                         cmemloop        => \@cmemdata );
88
89 print "Content-Type: text/html\n\n", $template->output;