From 3e8dd7da9b095d6e9a5ba69515cbeb075fc214b6 Mon Sep 17 00:00:00 2001 From: patdenice Date: Sat, 12 Jul 2008 14:27:22 +0000 Subject: 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 --- include/category_cats.inc.php | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'include/category_cats.inc.php') 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'], -- cgit v1.2.3