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

Last change on this file since 31813 was 25980, checked in by Miklfe, 10 years ago
File size: 659 bytes
RevLine 
[18804]1<?php
2/*
3Theme Name: Float
[25980]4Version: 1.3.0
[18804]5Description: Piwigo theme.
[19040]6Theme URI: http://piwigo.org/ext/extension_view.php?eid=642
[19041]7Author:Miklfe [piwitheme.fr]
8Author URI: http://piwitheme.fr
[18804]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');
[19491]18
19if(!function_exists('modify_nb_thumbnail_page'))
[18804]20{
[19491]21        function modify_nb_thumbnail_page()
22        {
23        global $user, $page;
24                $user['nb_image_page']=999;
25                $page['nb_image_page']=999;
[18804]26
[19491]27        }
[18804]28}
[19491]29
[18804]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.