Adding changelanguage feature to OPAC
authorHenri-Damien LAURENT <henridamien@koha-fr.org>
Sun, 20 Jan 2008 06:58:57 +0000 (00:58 -0600)
committerJoshua Ferraro <jmf@liblime.com>
Sun, 20 Jan 2008 16:18:08 +0000 (10:18 -0600)
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>

koha-tmpl/opac-tmpl/prog/en/includes/masthead-basic.inc
opac/opac-changelanguage.pl [new file with mode: 0755]
opac/opac-main.pl

index 588802f..60349ef 100644 (file)
@@ -1,6 +1,6 @@
 <div class="yui-g"><div id="corner"><!-- TMPL_IF NAME="opacbookbag" --><a class="cart" href="/cgi-bin/koha/opac-basket.pl" onclick="openBasket(); return false;" title="A &quot;shopping cart&quot; for your selections">Book Bag<span id="basket"><script language="javascript" type="text/javascript">if(basketcount){ document.write(basketcount) };</script></span></a><!-- /TMPL_IF -->
 <!-- TMPL_IF NAME="opaclanguagesdisplay" --><div id="language">
-       <ul><!-- TMPL_LOOP NAME="languages" --><li><a href="/cgi-bin/koha/changelanguage.pl?language=<!-- TMPL_VAR NAME="language" -->"><!-- TMPL_VAR NAME="label" --></a> </li><!-- /TMPL_LOOP -->
+       <ul><!-- TMPL_LOOP NAME="languages" --><li><a href="/cgi-bin/koha/opac-changelanguage.pl?language=<!-- TMPL_VAR NAME="language" -->"><!-- TMPL_VAR NAME="label" --></a> </li><!-- /TMPL_LOOP -->
        </ul></div><!-- /TMPL_IF --></div></div>
 
 <div id="members">
diff --git a/opac/opac-changelanguage.pl b/opac/opac-changelanguage.pl
new file mode 100755 (executable)
index 0000000..9a470ae
--- /dev/null
@@ -0,0 +1,26 @@
+#!/usr/bin/perl
+
+# This file is part of Koha.
+#
+# Koha is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA  02111-1307 USA
+
+use C4::Output;
+use CGI;
+
+my $query    = new CGI;
+my $language = $query->param('language');
+my $url      = $query->referer();
+
+warn "Language : $query // $language // $url";
+setlanguagecookie( $query, $language, $url );
index a7b5f24..0c9087b 100755 (executable)
@@ -50,7 +50,8 @@ foreach my $language (@$langavail) {
 #   next if $currently_selected_languages->{$language};
 #   FIXME: could incorporate language_name and language_locale_name for better display
     push @languages,
-      { language => $language->{'language_code'}, counter => $counter };
+      { language => $language->{'language_code'}, counter => $counter, selected=>($input->cookie('KohaOpacLanguage') ? $language->{'language_code'} eq $input->cookie('KohaOpacLanguage')
+  : $language->{'language_code'} eq C4::Context->preference('opaclanguages')) };
     $counter++;
 }