View | Details | Raw Unified | Return to bug 15707
Collapse All | Expand All

(-)a/Koha/Template/Plugin/KohaSpan.pm (+41 lines)
Line 0 Link Here
1
package Koha::Template::Plugin::KohaSpan;
2
3
# Copyright ByWater Solutions 2016
4
# Author: Kyle M Hall <kyle@bywatersolutions.com>
5
6
# This file is part of Koha.
7
#
8
# Koha is free software; you can redistribute it and/or modify it
9
# under the terms of the GNU General Public License as published by
10
# the Free Software Foundation; either version 3 of the License, or
11
# (at your option) any later version.
12
#
13
# Koha is distributed in the hope that it will be useful, but
14
# WITHOUT ANY WARRANTY; without even the implied warranty of
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
# GNU General Public License for more details.
17
#
18
# You should have received a copy of the GNU General Public License
19
# along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21
use Modern::Perl;
22
23
use Template::Plugin::Filter;
24
use base qw( Template::Plugin::Filter );
25
26
our $DYNAMIC = 1;
27
28
sub filter {
29
    my ( $self, $text, $args, $config ) = @_;
30
31
    $config->{with_hours} //= 0;
32
    my $id    = $config->{id};
33
    my $class = $config->{class};
34
35
    my $span = "<span";
36
    $span .= " id='$id'"       if $id;
37
    $span .= " class='$class'" if $class;
38
    $span .= ">$text</span>";
39
}
40
41
1;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/library_groups.tt (-5 / +5 lines)
Lines 1-3 Link Here
1
[% USE KohaSpan %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Koha &rsaquo; Administration &rsaquo; Library groups</title>
3
<title>Koha &rsaquo; Administration &rsaquo; Library groups</title>
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
Lines 94-110 Link Here
94
[% IF added %]
95
[% IF added %]
95
    <div class="dialog message group-added">
96
    <div class="dialog message group-added">
96
        [% IF added.branchcode %]
97
        [% IF added.branchcode %]
97
            <i>[% added.library.branchname %]</i> added to group.
98
            [% added.library.branchname | $KohaSpan class = 'name' %] added to group.
98
        [% ELSE %]
99
        [% ELSE %]
99
            Group <i>[% added.title %]</i> created.
100
            Group [% added.title | $KohaSpan class = 'name' %] created.
100
        [% END %]
101
        [% END %]
101
    </div>
102
    </div>
102
[% ELSIF deleted %]
103
[% ELSIF deleted %]
103
    <div class="dialog message group-deleted">
104
    <div class="dialog message group-deleted">
104
        [% IF deleted.title %]
105
        [% IF deleted.title %]
105
            Group <i>[% deleted.title %]</i> has been deleted.
106
            Group [% deleted.title | $KohaSpan class = 'name' %] has been deleted.
106
        [% ELSE %]
107
        [% ELSE %]
107
            <i>[% deleted.library %]</i> has been removed from group.
108
            [% deleted.library | $KohaSpan class = 'name' %] has been removed from group.
108
        [% END %]
109
        [% END %]
109
    </div>
110
    </div>
110
[% END %]
111
[% END %]
111
- 

Return to bug 15707