[Koha-cvs] CVS: koha/opac opac-suggestions.pl,NONE,1.1

Paul POULAIN tipaul at users.sourceforge.net
Fri May 28 10:28:25 CEST 2004


Update of /cvsroot/koha/koha/opac
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30582/opac

Added Files:
	opac-suggestions.pl 
Log Message:
adding suggestions in OPAC

--- NEW FILE ---
#!/usr/bin/perl
use strict;
require Exporter;
use CGI;
use HTML::Template;

use C4::Auth;       # get_template_and_user
use C4::Interface::CGI::Output;
use C4::Suggestions;

my $input = new CGI;
my $title = $input->param('title');
my $author = $input->param('author');
my $publishercode = $input->param('publishercode');
my $status = $input->param('status');
my $suggestedbyme = $input->param('suggestedbyme');
my $note = $input->param('note');
my $op = $input->param('op');
$op = 'else' unless $op;

my $dbh = C4::Context->dbh;
my ($template, $borrowernumber, $cookie)
    = get_template_and_user({template_name => "opac-suggestions.tmpl",
			     type => "opac",
			     query => $input,
			     authnotrequired => 1,
			     flagsrequired => {borrow => 1},
			 });
if ($op eq "add_confirm") {
	&newsuggestion($borrowernumber,$title,$author,$publishercode,$note);
	# empty fields, to avoid filter in "searchsuggestion"
	$title='';
	$author='';
	$publishercode='';
	$op='else';
}

if ($op eq "delete_confirm") {
	my @delete_field = $input->param("delete_field");
	foreach my $delete_field (@delete_field) {
		&delsuggestion($borrowernumber,$delete_field);
	}
	$op='else';
}

my $suggestions_loop= &searchsuggestion($borrowernumber,$author,$title,$publishercode,$status,$suggestedbyme);
$template->param(suggestions_loop => $suggestions_loop,
				title => $title,
				author => $author,
				publishercode => $publishercode,
				status => $status,
				suggestedbyme => $suggestedbyme,
				"op_$op" => 1,
);
output_html_with_http_headers $input, $cookie, $template->output;





More information about the Koha-cvs mailing list