52a5fd4bbd
Create output_html_with_http_headers function to contain the "print $query ->header(-type => guesstype...),..." call. This is in preparation for non-HTML output (e.g., text/xml) and charset conversion before output in the future. Created C4/Interface/CGI/Template.pm to hold convenience functions specific to the CGI interface using HTML::Template Modified moremembers.pl to make the "sex" field localizable for languages where M and F doesn't make sense
35 lines
804 B
Perl
Executable file
35 lines
804 B
Perl
Executable file
#!/usr/bin/perl
|
|
use strict;
|
|
require Exporter;
|
|
|
|
use C4::Auth;
|
|
use C4::Interface::CGI::Output;
|
|
use C4::Context;
|
|
use CGI;
|
|
use C4::Database;
|
|
use HTML::Template;
|
|
|
|
my $classlist='';
|
|
|
|
my $dbh=C4::Context->dbh;
|
|
my $sth=$dbh->prepare("select groupname,itemtypes from itemtypesearchgroups order by groupname");
|
|
$sth->execute;
|
|
while (my ($groupname,$itemtypes) = $sth->fetchrow) {
|
|
$classlist.="<option value=\"$itemtypes\">$groupname\n";
|
|
}
|
|
|
|
|
|
my $query = new CGI;
|
|
|
|
my ($template, $borrowernumber, $cookie)
|
|
= get_template_and_user({template_name => "opac-search.tmpl",
|
|
query => $query,
|
|
type => "opac",
|
|
authnotrequired => 1,
|
|
flagsrequired => {borrow => 1},
|
|
});
|
|
|
|
|
|
$template->param(classlist => $classlist);
|
|
|
|
output_html_with_http_headers $query, $cookie, $template->output;
|