8 # Copyright 2009 Chris Cormack and The Koha Dev Team
10 # This file is part of Koha.
12 # Koha is free software; you can redistribute it and/or modify it under the
13 # terms of the GNU General Public License as published by the Free Software
14 # Foundation; either version 2 of the License, or (at your option) any later
17 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
18 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License along with
22 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
23 # Suite 330, Boston, MA 02111-1307 USA
27 Koha::Templates - Object for manipulating templates for use with Koha
31 use base
qw(Class::Accessor);
33 use Template
::Constants
qw( :debug );
37 __PACKAGE__
->mk_accessors(qw( theme lang filename htdocs interface vars));
41 my $interface = shift;
45 if ( $interface ne "intranet" ) {
46 $htdocs = C4
::Context
->config('opachtdocs');
49 $htdocs = C4
::Context
->config('intrahtdocs');
52 my ( $theme, $lang ) = themelanguage
( $htdocs, $tmplbase, $interface );
53 my $template = Template
->new(
57 INCLUDE_PATH
=> "$htdocs/$theme/$lang/includes",
61 ) or die Template
->error();
63 TEMPLATE
=> $template,
69 $self->filename($filename);
70 $self->htdocs($htdocs);
71 $self->interface($interface);
72 $self->{VARS
}->{"test"} = "value";
81 # my $file = $self->htdocs . '/' . $self->theme .'/'.$self->lang.'/'.$self->filename;
82 my $template = $self->{TEMPLATE
};
83 if ( $self->interface eq 'intranet' ) {
84 $vars->{themelang
} = '/intranet-tmpl';
87 $vars->{themelang
} = '/opac-tmpl';
89 $vars->{lang
} = $self->lang;
90 $vars->{themelang
} .= '/' . $self->theme . '/' . $self->lang;
92 ( C4
::Context
->preference("yuipath") eq "local"
93 ?
$vars->{themelang
} . "/lib/yui"
94 : C4
::Context
->preference("yuipath") );
96 ( $self->{interface
} ne 'intranet' ?
'/opac-tmpl' : '/intranet-tmpl' );
97 $vars->{theme
} = $self->theme;
98 $vars->{opaccolorstylesheet
} =
99 C4
::Context
->preference('opaccolorstylesheet');
100 $vars->{opacsmallimage
} = C4
::Context
->preference('opacsmallimage');
101 $vars->{opacstylesheet
} = C4
::Context
->preference('opacstylesheet');
103 # add variables set via param to $vars for processing
104 # and clean any utf8 mess
105 for my $k ( keys %{ $self->{VARS
} } ) {
106 $vars->{$k} = $self->{VARS
}->{$k};
107 if (ref($vars->{$k}) eq 'ARRAY'){
108 utf8_arrayref
($vars->{$k});
110 elsif (ref($vars->{$k}) eq 'HASH'){
111 utf8_hashref
($vars->{$k});
114 utf8
::encode
($vars->{$k}) if utf8
::is_utf8
($vars->{$k});
118 # binmode( STDOUT, ":utf8" );
119 $template->process( $self->filename, $vars, \
$data )
120 || die "Template process failed: ", $template->error();
125 my $arrayref = shift;
126 foreach my $element (@
$arrayref){
127 if (ref($element) eq 'ARRAY'){
128 utf8_arrayref
($element);
131 if (ref($element) eq 'HASH'){
132 utf8_hashref
($element);
135 utf8
::encode
($element) if utf8
::is_utf8
($element);
141 for my $key (keys %{$hashref}){
142 if (ref($hashref->{$key}) eq 'ARRAY'){
143 utf8_arrayref
($hashref->{$key});
146 if (ref($hashref->{$key}) eq 'HASH'){
147 utf8_hashref
($hashref->{$key});
150 utf8
::encode
($hashref->{$key}) if utf8
::is_utf8
($hashref->{$key});
155 # FIXME - this is a horrible hack to cache
156 # the current known-good language, temporarily
157 # put in place to resolve bug 4403. It is
158 # used only by C4::XSLT::XSLTParse4Display;
159 # the language is set via the usual call
161 my $_current_language = 'en';
163 sub _current_language
{
164 return $_current_language;
168 my ( $htdocs, $tmpl, $interface ) = @_;
171 # Set some defaults for language and theme
172 # First, check the user's preferences
175 # But, if there's a cookie set, obey it
176 $lang = $query->cookie('KohaOpacLanguage')
177 if ( defined $query and $query->cookie('KohaOpacLanguage') );
179 # Fall back to English
181 if ( $interface eq 'intranet' ) {
182 @languages = split ",", C4
::Context
->preference("language");
185 @languages = split ",", C4
::Context
->preference("opaclanguages");
188 @languages = ( $lang, @languages );
191 $lang = $languages[0] || 'en';
193 my $theme = 'prog'; # in the event of theme failure default to 'prog' -fbcit
195 if ( $interface eq "intranet" ) {
196 @themes = split " ", C4
::Context
->preference("template");
199 @themes = split " ", C4
::Context
->preference("opacthemes");
202 # searches through the themes and languages. First template it find it returns.
203 # Priority is for getting the theme right.
205 foreach my $th (@themes) {
206 foreach my $la (@languages) {
207 if ( -e
"$htdocs/$th/$la/modules/$tmpl" ) {
212 last unless $la =~ /[-_]/;
215 $_current_language = $lang; # FIXME part of bad hack to paper over bug 4403
216 return ( $theme, $lang );
219 # wrapper method to allow easier transition from HTML template pro to Template Toolkit
225 if ( ref($val) eq 'ARRAY' && !scalar @
$val ) { $val = undef; }
226 elsif ( ref($val) eq 'HASH' && !scalar %$val ) { $val = undef; }
227 $self->{VARS
}->{$key} = $val;