Bug 26434: Fix plugin dirs addition to @INC
[koha.git] / Koha / Template / Plugin / Context.pm
1 package Koha::Template::Plugin::Context;
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19
20 use base qw( Template::Plugin );
21
22 use C4::Context;
23
24 =head1 NAME
25
26 Koha::Template::Plugin::Scalar - Return object set in scalar context
27
28 =head1 SYNOPSIS
29
30 If you need to force scalar context when calling a method on a object set.
31 Especially useful to call ->search
32
33 =cut
34
35 =head1 API
36
37 =head2 Class Methods
38
39 =cut
40
41 =head3 Scalar
42
43 Return object set in scalar context
44
45 =cut
46
47 sub Scalar {
48     my ( $self, $set, $method ) = @_;
49     return unless $set;
50     $set = $set->$method;
51     return $set;
52 }
53
54 1;