Replaced expressions of the form "$x = $x <op> $y" with "$x <op>= $y".
[koha.git] / C4 / Groups.pm
1 package C4::Groups;
2
3 # $Id$
4
5 #package to deal with Returns
6 #written 3/11/99 by olwen@katipo.co.nz
7
8
9 # Copyright 2000-2002 Katipo Communications
10 #
11 # This file is part of Koha.
12 #
13 # Koha is free software; you can redistribute it and/or modify it under the
14 # terms of the GNU General Public License as published by the Free Software
15 # Foundation; either version 2 of the License, or (at your option) any later
16 # version.
17 #
18 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
19 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
20 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License along with
23 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
24 # Suite 330, Boston, MA  02111-1307 USA
25
26 # FIXME - This package is only used in groups.pl, which in turn is
27 # never used. Presumably this module is therefore obsolete.
28
29 use strict;
30 require Exporter;
31 use DBI;
32 use C4::Context;
33 use C4::Circulation::Circ2;
34 #use C4::Accounts;
35 #use C4::InterfaceCDK;
36 #use C4::Circulation::Main;
37 #use C4::Circulation::Renewals;
38 #use C4::Scan;
39 use C4::Stats;
40 #use C4::Search;
41 #use C4::Print;
42
43 use vars qw($VERSION @ISA @EXPORT);
44
45 # set the version for version checking
46 $VERSION = 0.01;
47
48 @ISA = qw(Exporter);
49 @EXPORT = qw(&getgroups &groupmembers);
50
51 sub getgroups {
52     my ($env) = @_;
53     my %groups;
54     my $dbh = C4::Context->dbh;
55     my $sth=$dbh->prepare("select distinct groupshortname,grouplongname from borrowergroups");
56     $sth->execute;
57     while (my ($short, $long)=$sth->fetchrow) {
58         $groups{$short}=$long;
59     }
60     return (\%groups);
61 }
62
63 sub groupmembers {
64     my ($env, $group) = @_;
65     my @members;
66     my $dbh = C4::Context->dbh;
67     my $q_group=$dbh->quote($group);
68     my $sth=$dbh->prepare("select borrowernumber from borrowergroups where groupshortname=$q_group");
69     $sth->execute;
70     while (my ($borrowernumber) = $sth->fetchrow) {
71         my ($patron, $flags) = getpatroninformation($env, $borrowernumber);
72         my $currentissues=currentissues($env, $patron);
73         $patron->{'currentissues'}=$currentissues;
74         push (@members, $patron);
75     }
76     return (\@members);
77 }
78
79
80 END { }       # module clean-up code here (global destructor)