source: extensions/PwgCarbon_dft/themeconf.inc.php @ 18803

Last change on this file since 18803 was 18803, checked in by Miklfe, 11 years ago
File size: 732 bytes
Line 
1<?php
2/*
3Theme Name: PwgCarbon_dft
4Version: 1.0
5Description: theme PwgCarbon_dft pour Piwigo.
6Theme URI:
7Author: Miklfe
8Author URI:
9*/
10
11
12
13load_language('theme.lang', PHPWG_THEMES_PATH.'PwgCarbon_dft/');
14
15                               
16$themeconf = array(
17        'name'                                          => 'PwgCarbon_dft',
18        'parent'                                        => 'default',
19        'load_parent_css'                       => true,
20        'load_parent_local_head'        => false,
21        'local_head'                            => 'local_head.tpl',
22        'icon_dir'                                      => 'themes/PwgCarbon_dft/icon/',
23        );
24
25
26
27add_event_handler('get_categories_menu_sql_where', 'mic_get_categories_menu_sql_where', EVENT_HANDLER_PRIORITY_NEUTRAL, 3 );
28
29function mic_get_categories_menu_sql_where($where){     
30        global $page;
31                $where = '1';
32        return $where;
33}
34
35
36
37 
38 
39?>
Note: See TracBrowser for help on using the repository browser.