source: extensions/theme_switch/trunk/main.inc.php @ 16241

Last change on this file since 16241 was 16241, checked in by mistic100, 12 years ago

choose between selectbox or thumbnails grid with a local config option, thumbnail grid use 2.4 drop-downs menus, only an icon appears on toolbar

File size: 2.4 KB
Line 
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/*
25Plugin Name: Theme Switch
26Version: auto
27Description: 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.
28Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=257
29Author: Pavel Budka & Mistic
30Author 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
37if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
38
39define('THEME_SWITCH_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/');
40
41include_once(THEME_SWITCH_PATH.'theme_switch.inc.php');
42
43add_event_handler('user_init', 'theme_controler_switch');
44add_event_handler('loc_end_index', 'theme_controler_init');
45
46?>
Note: See TracBrowser for help on using the repository browser.