source: extensions/Wood/themeconf.inc.php @ 19500

Last change on this file since 19500 was 19500, checked in by Miklfe, 11 years ago
File size: 553 bytes
Line 
1<?php
2/*
3Theme Name: Wood
4Version: auto
5Description: Piwigo theme.
6Theme URI: http://piwigo.org/ext/extension_view.php?eid=641
7Author:Miklfe [piwitheme.fr]
8Author URI: http://piwitheme.fr
9*/
10$themeconf = array(
11  'name'  => 'Wood',
12  'parent' => 'PwgCarbon_dft',
13  'local_head'  => 'local_head.tpl'
14);
15
16
17add_event_handler('loc_begin_index', 'modify_nb_thumbnail_page');
18if(!function_exists('modify_nb_thumbnail_page'))
19{
20        function modify_nb_thumbnail_page()
21        {
22        global $user, $page;
23                $user['nb_image_page']=999;
24                $page['nb_image_page']=999;
25        }
26}
27
28
29?>
Note: See TracBrowser for help on using the repository browser.