source: extensions/luciano/themeconf.inc.php @ 6007

Last change on this file since 6007 was 6007, checked in by patdenice, 14 years ago

Don't load default local_head any more.

File size: 961 bytes
Line 
1<?php
2/*
3Theme Name: Luciano Amodio
4Version: 2.1.a
5Description: Luciano Amodio's theme
6Theme URI: http://piwigo.org/ext/extension_view.php?eid=387
7Author: Luciano Amodio & P@t
8Author URI: http://www.lucianoamodio.it/portfolio/
9*/
10
11$themeconf = array(
12  'parent'                 => 'default',
13  'icon_dir'               => 'themes/luciano/icon',
14  'local_head'             => 'local_head.tpl',
15  'load_parent_css'        => false,
16  'load_parent_local_head' => false,
17);
18
19$conf['show_thumbnail_caption'] = false;
20$conf['top_number'] = 12;
21
22// Remove comments link in Menu
23add_event_handler('blockmanager_apply' , 'remove_comments_link');
24function remove_comments_link($menu_ref_arr)
25{
26  $menu = & $menu_ref_arr[0];
27  if (($block = $menu->get_block('mbMenu')) != null )
28    unset($block->data['comments']);
29}
30
31global $user;
32
33$user['nb_image_line'] = 4;
34$user['nb_line_page'] = 3;
35$user['nb_image_page'] = 12;
36$user['maxwidth'] = 800;
37$user['maxheight'] = 600;
38
39?>
Note: See TracBrowser for help on using the repository browser.