From def88719e84445cfea91539bc96072c31fd65189 Mon Sep 17 00:00:00 2001 From: mistic100 Date: Sat, 11 Jun 2011 14:35:38 +0000 Subject: feature:2322 Add two new trigger events for tag name display and tag url git-svn-id: http://piwigo.org/svn/trunk@11317 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/functions_html.inc.php | 4 ++-- include/functions_tag.inc.php | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/functions_html.inc.php b/include/functions_html.inc.php index 9e422288e..60b3a9a86 100644 --- a/include/functions_html.inc.php +++ b/include/functions_html.inc.php @@ -275,7 +275,7 @@ function get_html_tag_selection( } $output.= - '>' + '> ' .$tag['name'] .'' .'' @@ -441,7 +441,7 @@ function get_tags_content_title() .'" title="' .l10n('display photos linked to this tag') .'">' - .$page['tags'][$i]['name'] + .trigger_event('render_tag_name', $page['tags'][$i]['name']) .''; $remove_url = null; diff --git a/include/functions_tag.inc.php b/include/functions_tag.inc.php index 76931710f..028fd766c 100644 --- a/include/functions_tag.inc.php +++ b/include/functions_tag.inc.php @@ -68,6 +68,7 @@ SELECT * if ( $counter ) { $row['counter'] = $counter; + $row['name'] = trigger_event('render_tag_name', $row['name']); array_push($tags, $row); } } @@ -89,6 +90,7 @@ SELECT * $tags = array(); while ($row = pwg_db_fetch_assoc($result)) { + $row['name'] = trigger_event('render_tag_name', $row['name']); array_push($tags, $row); } @@ -238,6 +240,7 @@ SELECT t.*, count(*) AS counter $tags = array(); while($row = pwg_db_fetch_assoc($result)) { + $row['name'] = trigger_event('render_tag_name', $row['name']); array_push($tags, $row); } usort($tags, 'tag_alpha_compare'); -- cgit v1.2.3