@@ -, +, @@ --- .../opac-tmpl/bootstrap/en/modules/opac-main.tt | 4 ++ .../bootstrap/en/modules/opac-news-rss.tt | 15 +++++ opac/opac-news-rss.pl | 67 ++++++++++++++++++++++ 3 files changed, 86 insertions(+) create mode 100644 koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-news-rss.tt create mode 100755 opac/opac-news-rss.pl --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt @@ -47,6 +47,10 @@ [% END %] +
+ + RSS for the librarys general newsfeed. +
[% END %] [% IF ( display_daily_quote && daily_quote ) %] --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-news-rss.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-news-rss.tt @@ -0,0 +1,15 @@ + + + + + News from [% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]the library[% END %] + [% OPACBaseURL %]/cgi-bin/koha/opac-main.pl + + [% FOREACH newsitem IN koha_news %] + + [% newsitem.title |html %] + [% newsitem.new |html %] + + [% END %] + + --- a/opac/opac-news-rss.pl +++ a/opac/opac-news-rss.pl @@ -0,0 +1,67 @@ +#!/usr/bin/perl + +# This file is part of Koha. +# +# Copyright (C) 2015 Viktor Sarge +# +# 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 CGI; +use C4::Auth; # get_template_and_user +use C4::Output; +use C4::NewsChannels; # GetNewsToDisplay +use C4::Languages qw(getTranslatedLanguages accept_language); + +use strict; +use warnings; + + +my $input = new CGI; +my $dbh = C4::Context->dbh; + +my ( $template, $borrowernumber, $cookie ) = get_template_and_user( + { + template_name => "opac-news-rss.tt", + type => "opac", + query => $input, + authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ), + flagsrequired => { borrow => 1 }, + } +); + +my $casAuthentication = C4::Context->preference('casAuthentication'); +$template->param( + casAuthentication => $casAuthentication, +); + +# Get the news to display +# use cookie setting for language, bug default to syspref if it's not set +my ($theme, $news_lang, $availablethemes) = C4::Templates::themelanguage(C4::Context->config('opachtdocs'),'opac-main.tt','opac',$input); + +my $homebranch; + +if (C4::Context->userenv) { + $homebranch = C4::Context->userenv->{'branch'}; +} +my $all_koha_news = &GetNewsToDisplay($news_lang,$homebranch); +my $koha_news_count = scalar @$all_koha_news; + +$template->param( + koha_news => $all_koha_news, + koha_news_count => $koha_news_count, +); + +output_html_with_http_headers $input, $cookie, $template->output; --