authorities (continued)
[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
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) = @_;
65
66         my $htdocs;
67         if ($opac ne "intranet") {
68                 $htdocs = C4::Context->config('opachtdocs');
69         } else {
70                 $htdocs = C4::Context->config('intrahtdocs');
71         }
72
73         my ($theme, $lang) = themelanguage($htdocs, $tmplbase, $opac);
74
75         my $template = HTML::Template->new(filename      => "$htdocs/$theme/$lang/$tmplbase",
76                                    die_on_bad_params => 0,
77                                    global_vars       => 1,
78                                    path              => ["$htdocs/$theme/$lang/includes"]);
79
80         # XXX temporary patch for Bug 182 for themelang
81         $template->param(themelang => ($opac ne 'intranet'? '/opac-tmpl': '/intranet-tmpl') . "/$theme/$lang",
82                                                         interface => ($opac ne 'intranet'? '/opac-tmpl': '/intranet-tmpl'),
83                                                         theme => $theme,
84                                                         lang => $lang);
85         return $template;
86 }
87
88 #---------------------------------------------------------------------------------------------------------
89 # FIXME - POD
90 sub themelanguage {
91   my ($htdocs, $tmpl, $section) = @_;
92
93   my $dbh = C4::Context->dbh;
94   my @languages;
95   my @themes;
96   if ( $section eq "intranet")
97   {
98     @languages = split " ", C4::Context->preference("opaclanguages");
99     @themes = split " ", C4::Context->preference("template");
100   }
101   else
102   {
103     @languages = split " ", C4::Context->preference("opaclanguages");
104     @themes = split " ", C4::Context->preference("opacthemes");
105   }
106
107   my ($theme, $lang);
108 # searches through the themes and languages. First template it find it returns.
109 # Priority is for getting the theme right.
110   THEME:
111   foreach my $th (@themes) {
112     foreach my $la (@languages) {
113         for (my $pass = 1; $pass <= 2; $pass += 1) {
114           $la =~ s/([-_])/ $1 eq '-'? '_': '-' /eg if $pass == 2;
115           if (-e "$htdocs/$th/$la/$tmpl") {
116               $theme = $th;
117               $lang = $la;
118               last THEME;
119           }
120         last unless $la =~ /[-_]/;
121         }
122     }
123   }
124   if ($theme and $lang) {
125     return ($theme, $lang);
126   } else {
127     return ('default', 'en');
128   }
129 }
130
131
132 END { }       # module clean-up code here (global destructor)
133
134 1;
135 __END__
136
137 =back
138
139 =head1 AUTHOR
140
141 Koha Developement team <info@koha.org>
142
143 =cut