source: extensions/nbc_ThemeChanger/main.inc.php @ 10161

Last change on this file since 10161 was 10161, checked in by datajulien, 13 years ago

nbc_ThemeChanger_admin

Piwigo 2.2 compatibility upgrade

url rewrite for modification and suppression actions.

Update in version 2.0.5b of jquery.tablesorter plugin and correction of the autosort js bug when the table is empty

Modified files:

main.inc.php
admin/nbc_themeChanger_admin.tpl
admin/nbc_themeChanger_admin.php
include/jquery.tablesorter.js

File size: 2.3 KB
Line 
1<?php
2/*
3Plugin Name: NBC ThemeChanger
4Version: 2.2.0.B
5Description: Permet d'associer à chaque catégorie virtuel ou physique un thème spécifique.
6        ThemeChanger vous permet de spécifier pour chaque catérie un thème différent.
7        Pour les catégories non spécifiées, le thème par défaut s'applique.
8        ThemeChanger allow you to associate for each category a specific theme.
9        For the unspecified categories, the theme by default is applied.
10        ThemeChanger permette di precisare per ogni categoria un tema diverso.
11        Per le categorie non precisato, il tema da difetto è applicato.
12Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=214
13Author: Datajulien
14Author URI: http://morgane.quoirez.com
15*/
16
17define('NBC_ThemeChanger_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/');
18
19if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
20
21/* Set the administration panel of the plugin */
22
23
24class ThemeChanger
25// Sets the administration panel of the plugin
26{
27        function nbc_ThemeChanger_admin_menu($menu)
28        {
29          array_push($menu,
30                array(
31                  'NAME' => 'ThemeChanger',
32                  'URL'  => get_root_url().'admin.php?page=plugin-'.basename(NBC_ThemeChanger_PATH)
33                )
34          );
35          return $menu;
36        }
37}
38
39$obj = new ThemeChanger();
40
41function change_category_theme()
42{
43  global $template, $page, $user, $conf;
44
45  $conf_nbc_ThemeChanger = isset($conf['nbc_ThemeChanger']) ? explode(";" , $conf['nbc_ThemeChanger']) : array();
46   
47  $category_theme = array();
48 
49  foreach ($conf_nbc_ThemeChanger as $Theme_Cat)
50  {
51    $element_ThemeChanger = explode("," , $Theme_Cat);
52   
53    if ($element_ThemeChanger[0] <> '' and $element_ThemeChanger[1] <> '')
54      $category_theme[$element_ThemeChanger[0]] = $element_ThemeChanger[1];
55  }
56
57  if (isset($page['category']['id']) and isset($category_theme[$page['category']['id']]))
58  {
59        $Defalut_user_theme = $user['theme'];
60        if (realpath(PHPWG_ROOT_PATH.'themes'.'/'.$category_theme[$page['category']['id']]))
61                $user['theme'] = $category_theme[$page['category']['id']];
62
63        $template = new Template(PHPWG_ROOT_PATH.'themes', $user['theme']);
64  }
65}
66
67add_event_handler('get_admin_plugin_menu_links', array(&$obj, 'nbc_ThemeChanger_admin_menu') );
68add_event_handler('loc_end_section_init', 'change_category_theme');
69set_plugin_data($plugin['id'], $obj)
70
71?>
Note: See TracBrowser for help on using the repository browser.