source: trunk/themes/Sylvia/themeconf.inc.php @ 26638

Last change on this file since 26638 was 26638, checked in by ddtddt, 10 years ago

[Trunk] - theme 2.5 -> 2.6

  • Property svn:eol-style set to LF
File size: 1.3 KB
Line 
1<?php
2/*
3Theme Name: Sylvia
4Version: 2.6.0
5Description: Dark background, flora and pink decorations.
6Theme URI: http://piwigo.org/ext/extension_view.php?eid=368
7Author: Piwigo team
8Author URI: http://piwigo.org
9*/
10$themeconf = array(
11  'name'         => 'Sylvia',
12  'parent'        => 'default',
13  'icon_dir'      => 'themes/Sylvia/icon',
14  'mime_icon_dir' => 'themes/Sylvia/icon/mimetypes/',
15);
16/************************************ mainpage_categories.tpl ************************************/
17add_event_handler('loc_end_index_category_thumbnails', 'Sylvia_album');
18function Sylvia_album($tpl_thumbnails_var)
19{
20    global $template;
21    $template->set_prefilter('index_category_thumbnails', 'Sylvia_album_prefilter');
22    return $tpl_thumbnails_var;
23}
24function Sylvia_album_prefilter($content, &$smarty)
25{
26  $search = '#\{html_style\}#';
27  $replacement = '{html_style}
28.thumbnailCategory .description .text{ldelim}
29        height: {$derivative_params->max_height()-30}px;
30}';
31  $content = preg_replace($search, $replacement, $content);
32  $search = '#\.thumbnailCategory[\t ]*.description\{ldelim\}[\s]*height:[\t ]*\{\$derivative_params->max_height\(\)\+5#';
33  $replacement = '.thumbnailCategory .description{ldelim}
34        height: {$derivative_params->max_height()+15';
35  $content = preg_replace($search, $replacement, $content);
36  return $content;
37}
38?>
Note: See TracBrowser for help on using the repository browser.