aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authorJakub Senko <jakubsenko@gmail.com>2016-11-20 18:13:34 +0100
committerJakub Senko <jakubsenko@gmail.com>2016-11-20 18:16:49 +0100
commita1a3daaca87a27899514f28a70a307702222de89 (patch)
treef13e6bd5bed32b6bb21abda0bb3db041a35e7db1 /phpBB/viewtopic.php
parentdbd9c1f242ae7c7660feddf2677d41aa82bd21b4 (diff)
downloadforums-a1a3daaca87a27899514f28a70a307702222de89.tar
forums-a1a3daaca87a27899514f28a70a307702222de89.tar.gz
forums-a1a3daaca87a27899514f28a70a307702222de89.tar.bz2
forums-a1a3daaca87a27899514f28a70a307702222de89.tar.xz
forums-a1a3daaca87a27899514f28a70a307702222de89.zip
[ticket/13479] Add core.viewtopic_highlight_modify
PHPBB3-13479
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r--phpBB/viewtopic.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index 780e43e09b..5c98a9c931 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -495,6 +495,28 @@ if ($config['allow_topic_notify'])
}
}
+/**
+* Event to modify highlight.
+*
+* @event core.viewtopic_highlight_modify
+* @var string highlight String to be highlighted
+* @var string highlight_match Highlight string to be used in preg_replace
+* @var array topic_data Topic data
+* @var int start Pagination start
+* @var int total_posts Number of posts
+* @var string viewtopic_url Current viewtopic URL
+* @since 3.1.11-RC1
+*/
+$vars = array(
+ 'highlight',
+ 'highlight_match',
+ 'topic_data',
+ 'start',
+ 'total_posts',
+ 'viewtopic_url',
+);
+extract($phpbb_dispatcher->trigger_event('core.viewtopic_highlight_modify', compact($vars)));
+
// Bookmarks
if ($config['allow_bookmarks'] && $user->data['is_registered'] && request_var('bookmark', 0))
{