From ae485ffef024e69680eb8dc05b4050a100f78235 Mon Sep 17 00:00:00 2001 From: tipaul Date: Tue, 17 Jan 2006 16:08:25 +0000 Subject: [PATCH] removing useless package & script --- C4/Groups.pm | 80 -------------- groups.pl | 286 --------------------------------------------------- 2 files changed, 366 deletions(-) delete mode 100755 C4/Groups.pm delete mode 100755 groups.pl diff --git a/C4/Groups.pm b/C4/Groups.pm deleted file mode 100755 index c4bbe9f204..0000000000 --- a/C4/Groups.pm +++ /dev/null @@ -1,80 +0,0 @@ -package C4::Groups; - -# $Id$ - -#package to deal with Returns -#written 3/11/99 by olwen@katipo.co.nz - - -# Copyright 2000-2002 Katipo Communications -# -# This file is part of Koha. -# -# Koha is free software; you can redistribute it and/or modify it under the -# terms of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later -# version. -# -# Koha is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License along with -# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, -# Suite 330, Boston, MA 02111-1307 USA - -# FIXME - This package is only used in groups.pl, which in turn is -# never used. Presumably this module is therefore obsolete. - -use strict; -require Exporter; -use DBI; -use C4::Context; -use C4::Circulation::Circ2; -#use C4::Accounts; -#use C4::InterfaceCDK; -#use C4::Circulation::Main; -#use C4::Circulation::Renewals; -#use C4::Scan; -use C4::Stats; -#use C4::Search; -#use C4::Print; - -use vars qw($VERSION @ISA @EXPORT); - -# set the version for version checking -$VERSION = 0.01; - -@ISA = qw(Exporter); -@EXPORT = qw(&getgroups &groupmembers); - -sub getgroups { - my ($env) = @_; - my %groups; - my $dbh = C4::Context->dbh; - my $sth=$dbh->prepare("select distinct groupshortname,grouplongname from borrowergroups"); - $sth->execute; - while (my ($short, $long)=$sth->fetchrow) { - $groups{$short}=$long; - } - return (\%groups); -} - -sub groupmembers { - my ($env, $group) = @_; - my @members; - my $dbh = C4::Context->dbh; - my $q_group=$dbh->quote($group); - my $sth=$dbh->prepare("select borrowernumber from borrowergroups where groupshortname=?"); - $sth->execute($q_group); - while (my ($borrowernumber) = $sth->fetchrow) { - my ($patron, $flags) = getpatroninformation($env, $borrowernumber); - my $currentissues=currentissues($env, $patron); - $patron->{'currentissues'}=$currentissues; - push (@members, $patron); - } - return (\@members); -} - - -END { } # module clean-up code here (global destructor) diff --git a/groups.pl b/groups.pl deleted file mode 100755 index be38e4148a..0000000000 --- a/groups.pl +++ /dev/null @@ -1,286 +0,0 @@ -#!/usr/bin/perl - -# $Id$ - -#written 14/1/2000 -#script to display reports - - -# Copyright 2000-2002 Katipo Communications -# -# This file is part of Koha. -# -# Koha is free software; you can redistribute it and/or modify it under the -# terms of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later -# version. -# -# Koha is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License along with -# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, -# Suite 330, Boston, MA 02111-1307 USA - -use CGI qw/:standard/; -use C4::Output; -use C4::Groups; -use C4::Circulation::Circ2; -use C4::Print; -use DBI; -use C4::Database; - -my $configfile=configfile(); -my $intranetdir=$configfile->{'intranetdir'}; - - -my $input=new CGI; -my $time=$input->param('time'); -#print $input->header; - - -my $branches=getbranches(\%env); -my $printers=getprinters(\%env); -my $branch=$input->param('branch'); -my $printer=$input->param('printer'); -($branch) || ($branch=$input->cookie('branch')); -($printer) || ($printer=$input->cookie('printer')); -my ($oldbranch, $oldprinter); -if ($input->param('selectnewbranchprinter')) { - $oldbranch=$branch; - $oldprinter=$printer; - $branch=''; - $printer=''; -} -$env{'branchcode'}=$branch; -$env{'printer'}=$printer; -#$env{'queue'}=$printer; -my $branchcount=0; -my $printercount=0; -my $branchoptions; -my $printeroptions; -foreach (keys %$branches) { - (next) unless ($_); - (next) if (/^TR$/); - $branchcount++; - my $selected=''; - ($selected='selected') if ($_ eq $oldbranch); - ($selected='selected') if ($_ eq $branch); - $branchoptions.="