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