Merge branch 'bug2505_patches' of git://git.catalyst.net.nz/koha into to-push
[koha.git] / C4 / Reports.pm
1 package C4::Reports;
2
3 # Copyright 2007 Liblime Ltd
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 use strict;
21 #use warnings; FIXME - Bug 2505
22 use CGI;
23
24 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
25 use C4::Context;
26 use C4::Debug;
27
28 BEGIN {
29     # set the version for version checking
30     $VERSION = 0.13;
31     require Exporter;
32     @ISA = qw(Exporter);
33     @EXPORT = qw(
34         GetDelimiterChoices
35     );
36 }
37
38 =head1 NAME
39    
40 C4::Reports - Module for generating reports 
41
42 =head1 DESCRIPTION
43
44 This module contains functions common to reports.
45
46 =head1 EXPORTED FUNCTIONS
47
48 =head2 GetDelimiterChoices
49
50 =over 4
51
52 my $delims = GetDelimiterChoices;
53
54 =back
55
56 This will return a list of all the available delimiters.
57
58 =cut
59
60 sub GetDelimiterChoices {
61     my $dbh = C4::Context->dbh;
62
63     my $sth = $dbh->prepare("
64       SELECT options, value
65       FROM systempreferences
66       WHERE variable = 'delimiter'
67     ");
68
69     $sth->execute();
70
71     my ($choices, $default) = $sth->fetchrow;
72     my @dels = split /\|/, $choices;
73
74     return CGI::scrolling_list(
75                 -name     => 'sep',
76                 -id       => 'sep',
77                 -default  => $default,
78                 -values   => \@dels,
79                 -size     => 1,
80                 -multiple => 0 );
81 }
82
83 1;
84
85 __END__
86
87 =head1 AUTHOR
88
89 Jesse Weaver <jesse.weaver@liblime.com>
90
91 =cut