diff options
author | patdenice <patdenice@piwigo.org> | 2008-07-12 14:27:22 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2008-07-12 14:27:22 +0000 |
commit | 3e8dd7da9b095d6e9a5ba69515cbeb075fc214b6 (patch) | |
tree | 277bda41e6d424a0995cba5a01648776b24cf398 /include/category_cats.inc.php | |
parent | be7bb150c2157948cc6e00324166059d03b14e16 (diff) |
Add triggers for category name (render_category_name).
Add strip_tags for ALT attribute on category thumbnail.
git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2432 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/category_cats.inc.php')
-rw-r--r-- | include/category_cats.inc.php | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/include/category_cats.inc.php b/include/category_cats.inc.php index dabe072c4..d87efd522 100644 --- a/include/category_cats.inc.php +++ b/include/category_cats.inc.php @@ -185,6 +185,12 @@ if (count($categories) > 0) foreach ($categories as $category) { + $category['name'] = trigger_event( + 'render_category_name', + $category['name'], + 'subcatify_category_name' + ); + if ($page['section']=='recent_cats') { $name = get_cat_display_name_cache($category['uppercats'], null, false); @@ -200,7 +206,7 @@ if (count($categories) > 0) 'categories.category', array( 'SRC' => $thumbnail_src_of[$category['representative_picture_id']], - 'ALT' => $category['name'], + 'ALT' => strip_tags($category['name']), 'TITLE' => l10n('hint_category'), 'ICON' => $icon_ts, @@ -249,11 +255,17 @@ if (count($categories) > 0) foreach ($categories as $category) { + $category['name'] = trigger_event( + 'render_category_name', + $category['name'], + 'thumbnail_category_name' + ); + $template->assign_block_vars( 'thumbnails.line.thumbnail', array( 'IMAGE' => $thumbnail_src_of[ $category['representative_picture_id'] ], - 'IMAGE_ALT' => $category['name'], + 'IMAGE_ALT' => strip_tags($category['name']), 'IMAGE_TITLE' => get_display_images_count ( $category['nb_images'], |