]> git.koha-community.org Git - koha.git/blob - Koha/Template/Plugin/KohaNews.pm
Bug 24776: Remove file Koha/Template/Plugin/Borrowers.pm
[koha.git] / Koha / Template / Plugin / KohaNews.pm
1 package Koha::Template::Plugin::KohaNews;
2
3 # Copyright ByWater Solutions 2012
4 # Copyright BibLibre 2014
5 # Parts copyright Athens County Public Libraries 2019
6
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21
22 use Modern::Perl;
23
24 use Template::Plugin;
25 use base qw( Template::Plugin );
26
27 use C4::Koha;
28 use C4::Context;
29 use C4::NewsChannels; # GetNewsToDisplay
30
31 sub get {
32     my ( $self, $params ) = @_;
33
34     my $display_location = $params->{location};
35     my $blocktitle = $params->{blocktitle};
36     my $lang = $params->{lang};
37     my $library = $params->{library} || "";
38     my $news_lang;
39
40     if( !$display_location ){
41         $news_lang = $lang;
42     } else {
43         $news_lang = $display_location."_".$lang;
44     }
45
46     my $content = &GetNewsToDisplay( $news_lang, $library );
47
48     return {
49         content => $content,
50         location => $display_location,
51         blocktitle => $blocktitle
52     };
53 }
54
55 1;
56
57 =head1 NAME
58
59 Koha::Template::Plugin::KohaNews - TT Plugin for displaying Koha news
60
61 =head1 SYNOPSIS
62
63 [% USE KohaNews %]
64
65 [% KohaNews.get() %]
66
67 =head1 ROUTINES
68
69 =head2 get
70
71 In a template, you can get the all categories with
72 the following TT code: [% KohaNews.get() %]
73
74 =head1 AUTHOR
75
76 Owen Leonard <oleonard@myacpl.org>
77
78 =cut