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>.
21 #use warnings; FIXME - Bug 2505
24 use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
38 C4::Reports - Module for generating reports
42 This module contains functions common to reports.
44 =head1 EXPORTED FUNCTIONS
46 =head2 GetDelimiterChoices
48 my $delims = GetDelimiterChoices;
50 This will return a list of all the available delimiters.
54 sub GetDelimiterChoices {
55 my $dbh = C4::Context->dbh;
57 my $sth = $dbh->prepare("
59 FROM systempreferences
60 WHERE variable = 'delimiter'
65 my ($choices, $default) = $sth->fetchrow;
66 my @dels = split /\|/, $choices;
80 Jesse Weaver <jesse.weaver@liblime.com>