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

Last change on this file since 8804 was 6648, checked in by datajulien, 14 years ago

theme changer
Amélioration de la gestion des thèmes désactivés ou supprimés par l'ajout d'un indicateur de l'état de l'association.

File size: 2.3 KB
Line 
1<?php
2/*
3Plugin Name: NBC ThemeChanger
4Version: 2.1.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_admin_plugin_menu_link(NBC_ThemeChanger_PATH.'admin/nbc_ThemeChanger_admin.php')
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.