2008-04-04 22:57:23 +00:00
|
|
|
<?php
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | Piwigo - a PHP based picture gallery |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2009-01-04 23:09:15 +00:00
|
|
|
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
|
2009-02-12 23:12:39 +00:00
|
|
|
// | Copyright(C) 2003-2008 PhpWebGallery team http://phpwebgallery.net |
|
2008-04-04 22:57:23 +00:00
|
|
|
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | This program 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 |
|
|
|
|
// | |
|
|
|
|
// | This program 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 this program; if not, write to the Free Software |
|
|
|
|
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
|
|
|
// | USA. |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2008-04-16 20:09:23 +00:00
|
|
|
|
2008-04-05 11:14:37 +00:00
|
|
|
/*
|
2007-11-18 19:59:33 +00:00
|
|
|
Plugin Name: Language Switch
|
2009-06-30 21:16:24 +00:00
|
|
|
Version: 2.0.2b
|
2007-11-19 19:51:54 +00:00
|
|
|
Description: Switch to another language from flags on your gallery home page.
|
2009-02-12 23:12:39 +00:00
|
|
|
Plugin URI: http://piwigo.org/ext/extension_view.php?eid=123
|
2008-05-15 18:43:33 +00:00
|
|
|
Author: Piwigo team
|
|
|
|
Author URI: http://piwigo.org
|
2007-11-18 19:59:33 +00:00
|
|
|
*/
|
2008-04-16 20:09:23 +00:00
|
|
|
|
2007-11-18 19:59:33 +00:00
|
|
|
include_once(PHPWG_PLUGINS_PATH.'language_switch/language_switch.inc.php');
|
2009-06-30 21:16:24 +00:00
|
|
|
$language_controler = new language_controler();
|
|
|
|
add_event_handler('loading_lang', array(&$language_controler, '_switch'), 5 );
|
|
|
|
add_event_handler('loc_end_index', array(&$language_controler, '_flags'), 95 );
|
2007-11-18 19:59:33 +00:00
|
|
|
?>
|