Added POD.
[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         # FIXME - Assumes English. This ought to be made part of i18n.
46 my @titledata;
47 while (@titles) {
48   my $title = shift @titles;
49   my %row = ('title' => $title);
50   if ($data->{'title'} eq $title) {
51     $row{'selected'}=' selected';
52   } else {
53     $row{'selected'}='';
54   }
55   push(@titledata, \%row);
56 }
57
58 # get the data for children
59 my $cmember1=NewBorrowerNumber();
60 my @cmemdata;
61 for (my $i=0;$i<3;$i++){
62   my %row;
63   $row{'cmember'}=$cmember1+$i;
64   $row{'i'}=$i;
65   $row{'count'}=$i+1;
66   push(@cmemdata, \%row);
67 }
68
69
70 $template->param( startmenumember => startmenu('member'),
71                         endmenumember   => endmenu('member'),
72                         member          => $member,
73                         firstname       => $data->{'firstname'},
74                         surname         => $data->{'surname'},
75                         cardnumber      => $data->{'cardnumber'},
76                         area            => $data->{'area'},
77                         city            => $data->{'city'},
78                         address         => $data->{'address'},
79                         streetaddress   => $data->{'streetaddress'},
80                         streetcity      => $data->{'streetcity'},
81                         phone           => $data->{'phone'},
82                         phoneday        => $data->{'phoneday'},
83                         faxnumber       => $data->{'faxnumber'},
84                         emailaddress    => $data->{'emailaddress'},
85                         contactname     => $data->{'contactname'},
86                         altphone        => $data->{'altphone'},
87                         titleloop       => \@titledata,
88                         cmemloop        => \@cmemdata );
89
90 print "Content-Type: text/html\n\n", $template->output;