Cleaned things up a bit.
[koha.git] / C4 / Groups.pm
1 package C4::Groups;
2
3 #package to deal with Returns
4 #written 3/11/99 by olwen@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 # FIXME - This package is only used in groups.pl, which in turn is
25 # never used. Presumably this module is therefore obsolete.
26
27 use strict;
28 require Exporter;
29 use DBI;
30 use C4::Context;
31 use C4::Circulation::Circ2;
32 #use C4::Accounts;
33 #use C4::InterfaceCDK;
34 #use C4::Circulation::Main;
35 #use C4::Circulation::Renewals;
36 #use C4::Scan;
37 use C4::Stats;
38 #use C4::Search;
39 #use C4::Print;
40
41 use vars qw($VERSION @ISA @EXPORT);
42   
43 # set the version for version checking
44 $VERSION = 0.01;
45     
46 @ISA = qw(Exporter);
47 @EXPORT = qw(&getgroups &groupmembers);
48
49 sub getgroups {
50     my ($env) = @_;
51     my %groups;
52     my $dbh = C4::Context->dbh;
53     my $sth=$dbh->prepare("select distinct groupshortname,grouplongname from borrowergroups");
54     $sth->execute;
55     while (my ($short, $long)=$sth->fetchrow) {
56         $groups{$short}=$long;
57     }
58     return (\%groups);
59 }
60
61 sub groupmembers {
62     my ($env, $group) = @_;
63     my @members;
64     my $dbh = C4::Context->dbh;
65     my $q_group=$dbh->quote($group);
66     my $sth=$dbh->prepare("select borrowernumber from borrowergroups where groupshortname=$q_group");
67     $sth->execute;
68     while (my ($borrowernumber) = $sth->fetchrow) {
69         my ($patron, $flags) = getpatroninformation($env, $borrowernumber);
70         my $currentissues=currentissues($env, $patron);
71         $patron->{'currentissues'}=$currentissues;
72         push (@members, $patron);
73     }
74     return (\@members);
75 }
76
77
78 END { }       # module clean-up code here (global destructor)