source: extensions/Float/themeconf.inc.php

Last change on this file was 25980, checked in by Miklfe, 10 years ago
File size: 659 bytes
Line 
1<?php
2/*
3Theme Name: Float
4Version: 1.3.0
5Description: Piwigo theme.
6Theme URI: http://piwigo.org/ext/extension_view.php?eid=642
7Author:Miklfe [piwitheme.fr]
8Author URI: http://piwitheme.fr
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');
18
19if(!function_exists('modify_nb_thumbnail_page'))
20{
21        function modify_nb_thumbnail_page()
22        {
23        global $user, $page;
24                $user['nb_image_page']=999;
25                $page['nb_image_page']=999;
26
27        }
28}
29
30add_event_handler('loc_end_page_header', 'load_Float' );
31function load_Float(){include('float.php');}
32?>
Note: See TracBrowser for help on using the repository browser.