synch'ing 2.2 and head
[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         my $opacstylesheet = C4::Context->preference('opacstylesheet');
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         $template->param(themelang => ($opac ne 'intranet'? '/opac-tmpl': '/intranet-tmpl') . "/$theme/$lang",
83                                                         interface => ($opac ne 'intranet'? '/opac-tmpl': '/intranet-tmpl'),
84                                                         theme => $theme,
85                                                         opacstylesheet => $opacstylesheet,
86                                                         opacsmallimage => C4::Context->preference('opacsmallimage'),
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   my $dbh = C4::Context->dbh;
101   my @languages;
102   my @themes;
103   if ( $section eq "intranet")
104   {
105     @languages = split " ", C4::Context->preference("opaclanguages");
106     @themes = split " ", C4::Context->preference("template");
107   }
108   else
109   {
110   # we are in the opac here, what im trying to do is let the individual user
111   # set the theme they want to use.
112   # and perhaps the them as well.
113   my $lang=$query->cookie('KohaOpacLanguage');
114   if ($lang){
115   
116     push @languages,$lang;
117     @themes = split " ", C4::Context->preference("opacthemes");
118   } 
119   else {
120     @languages = split " ", C4::Context->preference("opaclanguages");
121     @themes = split " ", C4::Context->preference("opacthemes");
122     }
123   }
124
125   my ($theme, $lang);
126 # searches through the themes and languages. First template it find it returns.
127 # Priority is for getting the theme right.
128   THEME:
129   foreach my $th (@themes) {
130     foreach my $la (@languages) {
131         for (my $pass = 1; $pass <= 2; $pass += 1) {
132           $la =~ s/([-_])/ $1 eq '-'? '_': '-' /eg if $pass == 2;
133           if (-e "$htdocs/$th/$la/$tmpl") {
134               $theme = $th;
135               $lang = $la;
136               last THEME;
137           }
138         last unless $la =~ /[-_]/;
139         }
140     }
141   }
142   if ($theme and $lang) {
143     return ($theme, $lang);
144   } else {
145     return ('default', 'en');
146   }
147 }
148
149 sub setlanguagecookie {
150    my ($query,$language,$uri)=@_;
151    my $cookie=$query->cookie(-name => 'KohaOpacLanguage',
152                                            -value => $language,
153                                            -expires => '');
154    print $query->redirect(-uri=>$uri,
155    -cookie=>$cookie);
156 }                                  
157
158
159 END { }       # module clean-up code here (global destructor)
160
161 1;
162 __END__
163
164 =back
165
166 =head1 AUTHOR
167
168 Koha Developement team <info@koha.org>
169
170 =cut