1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based picture gallery | |
---|
4 | // | Theme switch plugin | |
---|
5 | // +-----------------------------------------------------------------------+ |
---|
6 | // | Copyright(C) 2012 Piwigo Team http://piwigo.org | |
---|
7 | // | Copyright(C) 2010 Pavel Budka http://budkovi.ic.cz | |
---|
8 | // +-----------------------------------------------------------------------+ |
---|
9 | // | This program is free software; you can redistribute it and/or modify | |
---|
10 | // | it under the terms of the GNU General Public License as published by | |
---|
11 | // | the Free Software Foundation | |
---|
12 | // | | |
---|
13 | // | This program is distributed in the hope that it will be useful, but | |
---|
14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
16 | // | General Public License for more details. | |
---|
17 | // | | |
---|
18 | // | You should have received a copy of the GNU General Public License | |
---|
19 | // | along with this program; if not, write to the Free Software | |
---|
20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
21 | // | USA. | |
---|
22 | // +-----------------------------------------------------------------------+ |
---|
23 | |
---|
24 | /* |
---|
25 | Plugin Name: Theme Switch |
---|
26 | Version: auto |
---|
27 | Description: Lets users change the theme of the gallery via menu on home page. The switch can show theme names or theme icons, depends on configuration. |
---|
28 | Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=257 |
---|
29 | Author: Pavel Budka & Mistic |
---|
30 | Author URI: http://budkovi.ic.cz |
---|
31 | */ |
---|
32 | |
---|
33 | // in order to use select box instead of thumbnail view, add |
---|
34 | // $conf['theme_switch_mode'] = 'select'; |
---|
35 | // in your local configuration |
---|
36 | |
---|
37 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
38 | |
---|
39 | define('THEME_SWITCH_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/'); |
---|
40 | |
---|
41 | include_once(THEME_SWITCH_PATH.'theme_switch.inc.php'); |
---|
42 | |
---|
43 | add_event_handler('user_init', 'theme_controler_switch'); |
---|
44 | add_event_handler('loc_end_index', 'theme_controler_init'); |
---|
45 | |
---|
46 | ?> |
---|