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

(-)a/Koha/Template/Plugin/Koha.pm (+49 lines)
Line 0 Link Here
1
package Koha::Template::Plugin::Koha;
2
3
# Copyright ByWater Solutions 2013
4
5
# This file is part of Koha.
6
#
7
# Koha is free software; you can redistribute it and/or modify it under the
8
# terms of the GNU General Public License as published by the Free Software
9
# Foundation; either version 2 of the License, or (at your option) any later
10
# version.
11
#
12
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License along
17
# with Koha; if not, write to the Free Software Foundation, Inc.,
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20
use Modern::Perl;
21
22
use Template::Plugin;
23
use base qw( Template::Plugin );
24
25
use C4::Koha;
26
use C4::Context;
27
28
=pod
29
30
This plugin contains various Koha replated Template Toolkit functions
31
to help streamline Koha and to move logic from the Perl code into the
32
Templates when it makes sense to do so.
33
34
To use, first, include the line '[% USE Koha %]' at the top
35
of the template to enable the plugin.
36
37
For example: [% IF Koha.Preference( 'MyPreference ) == 'SettingA' %]
38
removes the necessity of setting a template variable in Perl code for
39
each and every system preference, even if no evaluation of the setting
40
is necessary.
41
42
=cut
43
44
sub Preference {
45
    my ( $self, $pref ) = @_;
46
    return C4::Context->preference( $pref );
47
}
48
49
1;
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc (+1 lines)
Lines 14-19 Link Here
14
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.hotkeys.min.js"></script>
14
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.hotkeys.min.js"></script>
15
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.cookie.min.js"></script>
15
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.cookie.min.js"></script>
16
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.highlight-3.js"></script>
16
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.highlight-3.js"></script>
17
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.qtip.js"></script>
17
<script type="text/javascript" src="[% interface %]/lib/bootstrap/bootstrap.min.js"></script>
18
<script type="text/javascript" src="[% interface %]/lib/bootstrap/bootstrap.min.js"></script>
18
19
19
[% IF ( login ) %]
20
[% IF ( login ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc (-1 / +24 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
<div class="gradient">
2
<div class="gradient">
2
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Patrons Resident Search Box -->
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Patrons Resident Search Box -->
3
<div id="header_search">
4
<div id="header_search">
Lines 19-24 Link Here
19
          <option value='streettype,address,address2,city,state,zipcode,country'>Street Address</option>
20
          <option value='streettype,address,address2,city,state,zipcode,country'>Street Address</option>
20
          <option value='dateofbirth'>Date of birth</option>
21
          <option value='dateofbirth'>Date of birth</option>
21
      </select>
22
      </select>
23
      <script type="text/javascript">
24
          [% SET dateformat = Koha.Preference('dateformat') %]
25
          $("#searchfields").change(function() {
26
              if ( $(this).val() == 'dateofbirth' ) {
27
                  [% IF dateformat == 'us' %]
28
                      [% SET format = 'MM/DD/YYYY' %]
29
                  [% ELSIF dateformat == 'iso' %]
30
                      [% SET format = 'YYYY-MM-DD' %]
31
                  [% ELSIF dateformat == 'metric' %]
32
                      [% SET format = 'DD/MM/YYYY' %]
33
                  [% END %]
34
35
                  $('#searchmember').qtip({
36
                      content: 'Dates of birth should be entered in the format "[% format %]"',
37
                      style: {
38
                          tip: 'topLeft'
39
                      }
40
                  })
41
              } else {
42
                  $('#searchmember').qtip('destroy');
43
              }
44
          });
45
      </script>
22
46
23
      <label for="searchtype">Search type:</label>
47
      <label for="searchtype">Search type:</label>
24
      <select name="searchtype" id="searchtype">
48
      <select name="searchtype" id="searchtype">
25
- 

Return to bug 8845