source: extensions/Full_Background/themeconf.inc.php @ 19210

Last change on this file since 19210 was 19210, checked in by Miklfe, 11 years ago
File size: 935 bytes
Line 
1<?php
2/*
3Theme Name: Full_Background
4Version: auto
5Description: theme Full_Background pour Piwigo.
6Theme URI: http://piwigo.org/ext/extension_view.php?eid=649
7Author:Miklfe [piwitheme.fr]
8Author URI: http://piwitheme.fr
9*/
10$themeconf = array(
11  'name'  => 'Full_Background',
12  'parent' => 'default',
13  'local_head'  => 'local_head.tpl',
14
15);
16
17load_language('theme.lang', PHPWG_THEMES_PATH.'Full_Background/');
18
19
20add_event_handler('loc_begin_index', 'modify_nb_thumbnail_page');
21function modify_nb_thumbnail_page()
22{
23global $user, $page;
24        $user['nb_image_page']=999;
25        $page['nb_image_page']=999;
26
27}
28
29add_event_handler('get_categories_menu_sql_where', 'mic_get_categories_menu_sql_where', EVENT_HANDLER_PRIORITY_NEUTRAL, 3 );
30
31function mic_get_categories_menu_sql_where($where){     
32        global $page;
33                $where = '1';
34        return $where;
35}
36
37  add_event_handler('allow_increment_element_hit_count', 'stop_increment');
38function stop_increment(){
39}
40?>
Note: See TracBrowser for help on using the repository browser.