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 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
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.
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.
21 #use warnings; FIXME - Bug 2505
24 use vars
qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
29 # set the version for version checking
30 $VERSION = 3.07.00.049;
40 C4::Reports - Module for generating reports
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.
56 sub GetDelimiterChoices
{
57 my $dbh = C4
::Context
->dbh;
59 my $sth = $dbh->prepare("
61 FROM systempreferences
62 WHERE variable = 'delimiter'
67 my ($choices, $default) = $sth->fetchrow;
68 my @dels = split /\|/, $choices;
70 return CGI
::scrolling_list
(
85 Jesse Weaver <jesse.weaver@liblime.com>