source: extensions/Float/themeconf.inc.php @ 19040

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