aboutsummaryrefslogtreecommitdiffstats
path: root/include/category_default.inc.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2008-03-01 14:24:04 +0000
committerrvelices <rv-github@modusoptimus.com>2008-03-01 14:24:04 +0000
commit732e456b3ba0c3e9ff4134e0ea815df03375918b (patch)
tree1bec560e6642d417c37a161b0de39d778686f8e3 /include/category_default.inc.php
parente6b785cbaa554d815a385e380ff959c7dea595ba (diff)
- thumbnails.tpl migration
git-svn-id: http://piwigo.org/svn/trunk@2234 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/category_default.inc.php')
-rw-r--r--include/category_default.inc.php52
1 files changed, 16 insertions, 36 deletions
diff --git a/include/category_default.inc.php b/include/category_default.inc.php
index 402df757b..365eedff6 100644
--- a/include/category_default.inc.php
+++ b/include/category_default.inc.php
@@ -62,11 +62,6 @@ SELECT *
$template->set_filenames( array( 'thumbnails' => 'thumbnails.tpl',));
if (count($pictures) > 0)
{
- // first line
- $template->assign_block_vars('thumbnails.line', array());
- // current row displayed
- $row_number = 0;
-
// define category slideshow url
$row = reset($pictures);
$page['cat_slideshow_url'] =
@@ -82,6 +77,8 @@ if (count($pictures) > 0)
(isset($_GET['slideshow']) ? $_GET['slideshow']
: '' ))
);
+
+ $template->clear_assign('thumbnails'); // category_default reuse them
}
trigger_action('loc_begin_index_thumbnails', $pictures);
@@ -99,8 +96,7 @@ foreach ($pictures as $row)
array('start')
);
- $template->assign_block_vars(
- 'thumbnails.line.thumbnail',
+ $tpl_var =
array(
'IMAGE' => $thumbnail_url,
'IMAGE_ALT' => $row['file'],
@@ -110,18 +106,15 @@ foreach ($pictures as $row)
'U_IMG_LINK' => $url,
'CLASS' => 'thumbElmt',
- )
);
+
if ($user['show_nb_hits'])
{
- $template->assign_block_vars(
- 'thumbnails.line.thumbnail.nb_hits',
+ $tpl_var['nb_hits'] =
array(
- 'HITS'=> l10n_dec('%d hit', '%d hits', $row['hit']),
- 'CLASS'=> set_span_class($row['hit']) . ' nb-hits',
- )
- );
-
+ 'HITS'=> $row['hit'],
+ 'CLASS'=> set_span_class($row['hit']),
+ );
}
if ($conf['show_thumbnail_caption'])
@@ -152,12 +145,7 @@ foreach ($pictures as $row)
}
}
- $template->assign_block_vars(
- 'thumbnails.line.thumbnail.element_name',
- array(
- 'NAME' => $name
- )
- );
+ $tpl_var['ELEMENT_NAME'] = $name;
}
if ($user['show_nb_comments'])
@@ -169,25 +157,17 @@ SELECT COUNT(*) AS nb_comments
AND validated = \'true\'
;';
list($row['nb_comments']) = mysql_fetch_array(pwg_query($query));
- $template->assign_block_vars(
- 'thumbnails.line.thumbnail.nb_comments',
+ $tpl_var['nb_comments'] =
array(
- 'NB_COMMENTS'=> l10n_dec('%d comment', '%d comments',
- $row['nb_comments']),
- 'CLASS'=> set_span_class($row['nb_comments']) . ' nb-comments',
- )
- );
+ 'NB_COMMENTS'=> $row['nb_comments'],
+ 'CLASS'=> set_span_class($row['nb_comments']),
+ );
}
- //plugins need to add/modify sth in this loop ?
- trigger_action('loc_index_thumbnail', $row, 'thumbnails.line.thumbnail' );
+ $template->append('thumbnails', $tpl_var);
- // create a new line ?
- if (++$row_number == $user['nb_image_line'])
- {
- $template->assign_block_vars('thumbnails.line', array());
- $row_number = 0;
- }
+ //plugins need to add/modify sth in this loop ?
+ trigger_action('loc_index_thumbnail', $row, 'thumbnails' );
}
trigger_action('loc_end_index_thumbnails', $pictures);