@@ -, +, @@ areas - "location" -- the area of the template where the content will appear. This will correspond to the system preference it replaces: OpacMainUserBlock, OpacNavRight, etc. - "lang" -- the user's currently-selected language. - "library" -- the user's home library (if they are logged in) --- Koha/Template/Plugin/KohaNews.pm | 73 ++++++++++++++++++++++ .../bootstrap/en/includes/html_helpers.inc | 13 ++++ 2 files changed, 86 insertions(+) create mode 100644 Koha/Template/Plugin/KohaNews.pm --- a/Koha/Template/Plugin/KohaNews.pm +++ a/Koha/Template/Plugin/KohaNews.pm @@ -0,0 +1,73 @@ +package Koha::Template::Plugin::KohaNews; + +# Copyright ByWater Solutions 2012 +# Copyright BibLibre 2014 +# Parts copyright Athens County Public Libraries 2019 + +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . + +use Modern::Perl; + +use Template::Plugin; +use base qw( Template::Plugin ); + +use C4::Koha; +use C4::Context; +use C4::NewsChannels; # GetNewsToDisplay + +sub get { + my ( $self, $params ) = @_; + + my $display_location = $params->{location}; + my $lang = $params->{lang}; + my $library = $params->{library} || ""; + my $news_lang; + + if( !$display_location ){ + $news_lang = $lang; + } else { + $news_lang = $display_location."_".$lang; + } + + my $content = &GetNewsToDisplay( $news_lang, $library ); + + return $content; +} + +1; + +=head1 NAME + +Koha::Template::Plugin::KohaNews - TT Plugin for displaying Koha news + +=head1 SYNOPSIS + +[% USE KohaNews %] + +[% KohaNews.get() %] + +=head1 ROUTINES + +=head2 get + +In a template, you can get the all categories with +the following TT code: [% KohaNews.get() %] + +=head1 AUTHOR + +Owen Leonard + +=cut --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/html_helpers.inc +++ a/koha-tmpl/opac-tmpl/bootstrap/en/includes/html_helpers.inc @@ -7,3 +7,16 @@ [% END%] [% END %] [% END %] + +[% BLOCK koha_news_block %] + [% IF ( news.size > 0 ) %] + [% FOREACH n IN news %] +
+ [% IF ( n.title ) %] +

[% n.title | html %]

+ [% END %] +
[% n.content | $raw %]
+
+ [% END %] + [% END %] +[% END %] --