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

Last change on this file since 6552 was 6552, checked in by datajulien, 14 years ago
File size: 2.2 KB
Line 
1<?php
2/*
3Plugin Name: NBC ThemeChanger
4Version: 2.1.0.a
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égorie 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
19
20//if (!defined(NBC_ThemeChanger_PATH)) die('Hacking attempt - ThemeChanger main.inc.php - NBC_ThemeChanger_PATH!');
21
22/* Set the administration panel of the plugin */
23
24
25class ThemeChanger
26// Sets the administration panel of the plugin
27{
28        function nbc_ThemeChanger_admin_menu($menu)
29        {
30          array_push($menu,
31                array(
32                  'NAME' => 'ThemeChanger',
33                  'URL'  => get_admin_plugin_menu_link(NBC_ThemeChanger_PATH.'admin/nbc_ThemeChanger_admin.php')
34                )
35          );
36          return $menu;
37        }
38}
39
40$obj = new ThemeChanger();
41
42function change_category_theme()
43{
44  global $template, $page, $user, $conf;
45
46  $conf_nbc_ThemeChanger = isset($conf['nbc_ThemeChanger']) ? explode(";" , $conf['nbc_ThemeChanger']) : array();
47   
48  $category_theme = array();
49 
50  foreach ($conf_nbc_ThemeChanger as $Theme_Cat)
51  {
52    $element_ThemeChanger = explode("," , $Theme_Cat);
53   
54    if ($element_ThemeChanger[0] <> '' and $element_ThemeChanger[1] <> '')
55      $category_theme[$element_ThemeChanger[0]] = $element_ThemeChanger[1];
56  }
57
58  if (isset($page['category']['id']) and isset($category_theme[$page['category']['id']]))
59  {
60    $user['theme'] = $category_theme[$page['category']['id']];
61        $template = new Template(PHPWG_ROOT_PATH.'themes', $user['theme'] );
62  }
63}
64
65add_event_handler('get_admin_plugin_menu_links', array(&$obj, 'nbc_ThemeChanger_admin_menu') );
66add_event_handler('loc_end_section_init', 'change_category_theme');
67set_plugin_data($plugin['id'], $obj)
68
69?>
Note: See TracBrowser for help on using the repository browser.