7 use List
::MoreUtils qw
/any uniq/;
9 # Copyright 2009 Chris Cormack and The Koha Dev Team
11 # This file is part of Koha.
13 # Koha is free software; you can redistribute it and/or modify it under the
14 # terms of the GNU General Public License as published by the Free Software
15 # Foundation; either version 2 of the License, or (at your option) any later
18 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
19 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
20 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License along with
23 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
24 # Suite 330, Boston, MA 02111-1307 USA
28 Koha::Templates - Object for manipulating templates for use with Koha
32 use base
qw(Class::Accessor);
34 use Template
::Constants
qw( :debug );
35 use C4
::Languages
qw(getTranslatedLanguages get_bidi regex_lang_subtags language_get_description accept_language );
39 __PACKAGE__
->mk_accessors(qw( theme activethemes preferredtheme lang filename htdocs interface vars));
45 my $interface = shift;
48 my $query = @_?
shift: undef;
50 if ( $interface ne "intranet" ) {
51 $htdocs = C4
::Context
->config('opachtdocs');
54 $htdocs = C4
::Context
->config('intrahtdocs');
56 my ($theme, $lang, $activethemes)= themelanguage
( $htdocs, $tmplbase, $interface, $query);
58 foreach (@
$activethemes) {
59 push @includes, "$htdocs/$_/$lang/includes";
60 push @includes, "$htdocs/$_/en/includes" unless $lang eq 'en';
62 # Do not use template cache if script is called from commandline
63 my $use_template_cache = C4
::Context
->config('template_cache_dir') && defined $ENV{GATEWAY_INTERFACE
};
64 my $template = Template
->new(
67 PLUGIN_BASE
=> 'Koha::Template::Plugin',
68 COMPILE_EXT
=> $use_template_cache ?
'.ttc' : '',
69 COMPILE_DIR
=> $use_template_cache ? C4
::Context
->config('template_cache_dir') : '',
70 INCLUDE_PATH
=> \
@includes,
73 ) or die Template
->error();
75 TEMPLATE
=> $template,
81 $self->activethemes($activethemes);
82 $self->preferredtheme($activethemes->[0]);
83 $self->filename($filename);
84 $self->htdocs($htdocs);
85 $self->interface($interface);
86 $self->{VARS
}->{"test"} = "value";
95 # my $file = $self->htdocs . '/' . $self->theme .'/'.$self->lang.'/'.$self->filename;
96 my $template = $self->{TEMPLATE
};
97 if ( $self->interface eq 'intranet' ) {
98 $vars->{themelang
} = '/intranet-tmpl';
101 $vars->{themelang
} = '/opac-tmpl';
103 $vars->{lang
} = $self->lang;
104 $vars->{themelang
} .= '/' . $self->preferredtheme . '/' . $self->lang;
106 ( $self->{interface
} ne 'intranet' ?
'/opac-tmpl' : '/intranet-tmpl' );
107 $vars->{theme
} = $self->theme;
108 $vars->{opaccolorstylesheet
} =
109 C4
::Context
->preference('opaccolorstylesheet');
110 $vars->{opaclayoutstylesheet
} =
111 C4
::Context
->preference('opaclayoutstylesheet');
113 # add variables set via param to $vars for processing
114 # and clean any utf8 mess
115 for my $k ( keys %{ $self->{VARS
} } ) {
116 $vars->{$k} = $self->{VARS
}->{$k};
117 if (ref($vars->{$k}) eq 'ARRAY'){
118 utf8_arrayref
($vars->{$k});
120 elsif (ref($vars->{$k}) eq 'HASH'){
121 utf8_hashref
($vars->{$k});
124 utf8
::encode
($vars->{$k}) if utf8
::is_utf8
($vars->{$k});
128 # binmode( STDOUT, ":utf8" );
129 $template->process( $self->filename, $vars, \
$data )
130 || die "Template process failed: ", $template->error();
135 my $arrayref = shift;
136 foreach my $element (@
$arrayref){
137 if (ref($element) eq 'ARRAY'){
138 utf8_arrayref
($element);
141 if (ref($element) eq 'HASH'){
142 utf8_hashref
($element);
145 utf8
::encode
($element) if utf8
::is_utf8
($element);
151 for my $key (keys %{$hashref}){
152 if (ref($hashref->{$key}) eq 'ARRAY'){
153 utf8_arrayref
($hashref->{$key});
156 if (ref($hashref->{$key}) eq 'HASH'){
157 utf8_hashref
($hashref->{$key});
160 utf8
::encode
($hashref->{$key}) if utf8
::is_utf8
($hashref->{$key});
164 # wrapper method to allow easier transition from HTML template pro to Template Toolkit
170 if ( ref($val) eq 'ARRAY' && !scalar @
$val ) { $val = undef; }
171 elsif ( ref($val) eq 'HASH' && !scalar %$val ) { $val = undef; }
173 $self->{VARS
}->{$key} = $val;
175 warn "Problem = a value of $val has been passed to param without key";
183 C4::Templates - Functions for managing templates
189 # FIXME: this is a quick fix to stop rc1 installing broken
190 # Still trying to figure out the correct fix.
191 my $path = C4
::Context
->config('intrahtdocs') . "/prog/en/includes/";
193 #---------------------------------------------------------------------------------------------------------
196 sub _get_template_file
{
197 my ($tmplbase, $interface, $query) = @_;
199 my $is_intranet = $interface eq 'intranet';
200 my $htdocs = C4
::Context
->config($is_intranet ?
'intrahtdocs' : 'opachtdocs');
201 my ($theme, $lang, $availablethemes) = themelanguage
($htdocs, $tmplbase, $interface, $query);
202 my $filename = "$htdocs/$theme/$lang/modules/$tmplbase";
204 return ($htdocs, $theme, $lang, $filename);
209 my ( $tmplbase, $interface, $query, $is_plugin ) = @_;
210 ($query) or warn "no query in gettemplate";
211 my $path = C4
::Context
->preference('intranet_includes') || 'includes';
212 my ($htdocs, $theme, $lang, $filename)
213 = _get_template_file
($tmplbase, $interface, $query);
214 $filename = $tmplbase if ( $is_plugin );
215 my $template = C4
::Templates
->new($interface, $filename, $tmplbase, $query);
217 # NOTE: Commenting these out rather than deleting them so that those who need
218 # to know how we previously shimmed these directories will be able to understand.
219 # my $is_intranet = $interface eq 'intranet';
221 # ($is_intranet ? '/intranet-tmpl' : '/opac-tmpl') .
224 # themelang => $themelang,
225 # interface => $is_intranet ? '/intranet-tmpl' : '/opac-tmpl',
230 # Bidirectionality, must be sent even if is the only language
231 my $current_lang = regex_lang_subtags
($lang);
233 $bidi = get_bidi
($current_lang->{script
}) if $current_lang->{script
};
238 my $languages_loop = getTranslatedLanguages
($interface,$theme,$lang);
239 my $num_languages_enabled = 0;
240 foreach my $lang (@
$languages_loop) {
241 foreach my $sublang (@
{ $lang->{'sublanguages_loop'} }) {
242 $num_languages_enabled++ if $sublang->{enabled
};
245 my $one_language_enabled = ($num_languages_enabled <= 1) ?
1 : 0; # deal with zero enabled langs as well
247 languages_loop
=> $languages_loop,
248 one_language_enabled
=> $one_language_enabled,
249 ) unless $one_language_enabled;
257 my ($theme,$lang,\@themes) = themelanguage($htdocs,$tmpl,$interface,query);
259 This function returns the theme and language to be used for rendering the UI.
260 It also returns the list of themes that should be applied as a fallback. This is
261 used for the theme overlay feature (i.e. if a file doesn't exist on the requested
262 theme, fallback to the configured fallback).
264 Important: this function is used on the webinstaller too, so always consider
265 the use case where the DB is not populated already when rewriting/fixing.
270 my ($htdocs, $tmpl, $interface, $query) = @_;
271 ($query) or warn "no query in themelanguage";
273 # Select a language based on cookie, syspref available languages & browser
274 my $lang = C4
::Languages
::getlanguage
($query);
278 my $theme_syspref = ($interface eq 'intranet') ?
'template' : 'opacthemes';
279 my $fallback_syspref = ($interface eq 'intranet') ?
'template' : 'OPACFallback';
280 # Yeah, hardcoded, last resort if the DB is not populated
281 my $hardcoded_theme = ($interface eq 'intranet') ?
'prog' : 'bootstrap';
283 # Configured theme is the first one
284 push @themes, C4
::Context
->preference( $theme_syspref )
285 if C4
::Context
->preference( $theme_syspref );
286 # Configured fallback next
287 push @themes, C4
::Context
->preference( $fallback_syspref )
288 if C4
::Context
->preference( $fallback_syspref );
289 # The hardcoded fallback theme is the last one
290 push @themes, $hardcoded_theme;
292 # Try to find first theme for the selected theme/lang, then for fallback/lang
293 my $where = $tmpl =~ /xsl$/ ?
'xslt' : 'modules';
294 for my $theme (@themes) {
295 if ( -e
"$htdocs/$theme/$lang/$where/$tmpl" ) {
296 return ( $theme, $lang, uniq
( \
@themes ) );
299 # Otherwise return theme/'en', last resort fallback/'en'
300 for my $theme (@themes) {
301 if ( -e
"$htdocs/$theme/en/$where/$tmpl" ) {
302 return ( $theme, 'en', uniq
( \
@themes ) );
305 # tmpl is a full path, so this is a template for a plugin
306 if ( $tmpl =~ /^\// && -e
$tmpl ) {
307 return ( $themes[0], $lang, uniq
( \
@themes ) );
312 sub setlanguagecookie
{
313 my ( $query, $language, $uri ) = @_;
315 my $cookie = $query->cookie(
316 -name
=> 'KohaOpacLanguage',
321 print $query->redirect(
327 =head2 getlanguagecookie
329 my $cookie = getlanguagecookie($query,$language);
331 Returns a cookie object containing the calculated language to be used.
335 sub getlanguagecookie
{
336 my ( $query, $language ) = @_;
337 my $cookie = $query->cookie(
338 -name
=> 'KohaOpacLanguage',
349 my $columns = GetColumnDefs( $cgi )
351 It is passed a CGI object and returns a hash of hashes containing
352 the column names and descriptions for each table defined in the
353 columns.def file corresponding to the CGI object.
363 my $htdocs = C4
::Context
->config('intrahtdocs');
364 my $columns_file = 'columns.def';
366 # Get theme and language to build the path to columns.def
367 my ($theme, $lang, $availablethemes) =
368 themelanguage
($htdocs, 'about.tt', 'intranet', $query);
369 # Build columns.def path
370 my $path = "$htdocs/$theme/$lang/$columns_file";
372 if ( ! open ( $fh, q{<}, $path ) ) {
373 carp
"Error opening $path. Check your templates.";
376 # Loop through the columns.def file
377 while ( my $input = <$fh> ){
379 if ( $input =~ m
|<field name
="(.*)">(.*)</field
>| ) {
380 my ( $table, $column ) = split( '\.', $1);
381 my $description = $2;
382 # Initialize the table array if needed.
383 @
{$columns->{ $table }} = () if ! defined $columns->{ $table };
384 # Push field and description
385 push @
{$columns->{ $table }},
386 { field
=> $column, description
=> $description };