Bug 15552: Better wording of intranetreadinghistory
[koha.git] / C4 / Reports.pm
bloba73830be7c17991483d18605d153f9531d4069c1
1 package C4::Reports;
3 # Copyright 2007 Liblime Ltd
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use strict;
21 #use warnings; FIXME - Bug 2505
22 use CGI qw ( -utf8 );
24 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
25 use C4::Context;
26 use C4::Debug;
28 BEGIN {
29 # set the version for version checking
30 $VERSION = 3.07.00.049;
31 require Exporter;
32 @ISA = qw(Exporter);
33 @EXPORT = qw(
34 GetDelimiterChoices
38 =head1 NAME
40 C4::Reports - Module for generating reports
42 =head1 DESCRIPTION
44 This module contains functions common to reports.
46 =head1 EXPORTED FUNCTIONS
48 =head2 GetDelimiterChoices
50 my $delims = GetDelimiterChoices;
52 This will return a list of all the available delimiters.
54 =cut
56 sub GetDelimiterChoices {
57 my $dbh = C4::Context->dbh;
59 my $sth = $dbh->prepare("
60 SELECT options, value
61 FROM systempreferences
62 WHERE variable = 'delimiter'
63 ");
65 $sth->execute();
67 my ($choices, $default) = $sth->fetchrow;
68 my @dels = split /\|/, $choices;
70 return {
71 values => \@dels,
72 default => $default,
78 __END__
80 =head1 AUTHOR
82 Jesse Weaver <jesse.weaver@liblime.com>
84 =cut