Code to set a cookie which stores which language is displayed to the user
[koha.git] / C4 / Output.pm
1 package C4::Output;
2
3 # $Id$
4
5 #package to deal with marking up output
6 #You will need to edit parts of this pm
7 #set the value of path to be where your html lives
8
9
10 # Copyright 2000-2002 Katipo Communications
11 #
12 # This file is part of Koha.
13 #
14 # Koha is free software; you can redistribute it and/or modify it under the
15 # terms of the GNU General Public License as published by the Free Software
16 # Foundation; either version 2 of the License, or (at your option) any later
17 # version.
18 #
19 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
20 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
21 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License along with
24 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
25 # Suite 330, Boston, MA  02111-1307 USA
26
27 # NOTE: I'm pretty sure this module is deprecated in favor of
28 # templates.
29
30 use strict;
31 require Exporter;
32
33 use C4::Context;
34 use C4::Database;
35 use HTML::Template;
36
37 use vars qw($VERSION @ISA @EXPORT);
38
39 # set the version for version checking
40 $VERSION = 0.01;
41
42 =head1 NAME
43
44 C4::Output - Functions for managing templates
45
46 =head1 FUNCTIONS
47
48 =over 2
49
50 =cut
51
52 @ISA = qw(Exporter);
53 @EXPORT = qw(
54                 &themelanguage &gettemplate setlanguagecookie
55                 );
56
57 #FIXME: this is a quick fix to stop rc1 installing broken
58 #Still trying to figure out the correct fix.
59 my $path = C4::Context->config('intrahtdocs')."/default/en/includes/";
60
61 #---------------------------------------------------------------------------------------------------------
62 # FIXME - POD
63 sub gettemplate {
64         my ($tmplbase, $opac, $query) = @_;
65 if (!$query){
66   warn "no query in gettemplate";
67   }
68         my $htdocs;
69         if ($opac ne "intranet") {
70                 $htdocs = C4::Context->config('opachtdocs');
71         } else {
72                 $htdocs = C4::Context->config('intrahtdocs');
73         }
74
75         my ($theme, $lang) = themelanguage($htdocs, $tmplbase, $opac, $query);
76
77         my $template = HTML::Template->new(filename      => "$htdocs/$theme/$lang/$tmplbase",
78                                    die_on_bad_params => 0,
79                                    global_vars       => 1,
80                                    path              => ["$htdocs/$theme/$lang/includes"]);
81
82         # XXX temporary patch for Bug 182 for themelang
83         warn "theme is $theme lang is $lang";
84         $template->param(themelang => ($opac ne 'intranet'? '/opac-tmpl': '/intranet-tmpl') . "/$theme/$lang",
85                                                         interface => ($opac ne 'intranet'? '/opac-tmpl': '/intranet-tmpl'),
86                                                         theme => $theme,
87                                                         lang => $lang);
88
89         
90         return $template;
91 }
92
93 #---------------------------------------------------------------------------------------------------------
94 # FIXME - POD
95 sub themelanguage {
96   my ($htdocs, $tmpl, $section, $query) = @_;
97   if (!$query) {
98     warn "no query";
99     
100   }
101   my $dbh = C4::Context->dbh;
102   my @languages;
103   my @themes;
104   if ( $section eq "intranet")
105   {
106     @languages = split " ", C4::Context->preference("opaclanguages");
107     @themes = split " ", C4::Context->preference("template");
108   }
109   else
110   {
111   # we are in the opac here, what im trying to do is let the individual user
112   # set the theme they want to use.
113   # and perhaps the them as well.
114   my $lang=$query->cookie('KohaOpacLanguage');
115   if ($lang){
116   
117     push @languages,$lang;
118     @themes = split " ", C4::Context->preference("opacthemes");
119   } 
120   else {
121     @languages = split " ", C4::Context->preference("opaclanguages");
122     @themes = split " ", C4::Context->preference("opacthemes");
123     }
124   }
125
126   my ($theme, $lang);
127 # searches through the themes and languages. First template it find it returns.
128 # Priority is for getting the theme right.
129   THEME:
130   foreach my $th (@themes) {
131     foreach my $la (@languages) {
132         for (my $pass = 1; $pass <= 2; $pass += 1) {
133           $la =~ s/([-_])/ $1 eq '-'? '_': '-' /eg if $pass == 2;
134           if (-e "$htdocs/$th/$la/$tmpl") {
135               $theme = $th;
136               $lang = $la;
137               last THEME;
138           }
139         last unless $la =~ /[-_]/;
140         }
141     }
142   }
143   if ($theme and $lang) {
144     return ($theme, $lang);
145   } else {
146     return ('default', 'en');
147   }
148 }
149
150 sub setlanguagecookie {
151    my ($query,$language,$uri)=@_;
152    my $cookie=$query->cookie(-name => 'KohaOpacLanguage',
153                                            -value => $language,
154                                            -expires => '');
155    print $query->redirect(-uri=>$uri,
156    -cookie=>$cookie);
157 }                                  
158
159
160 END { }       # module clean-up code here (global destructor)
161
162 1;
163 __END__
164
165 =back
166
167 =head1 AUTHOR
168
169 Koha Developement team <info@koha.org>
170
171 =cut