diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-02-27 12:20:50 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-02-27 12:20:50 +0100 |
commit | e15b9dc7828de8644775709155c157a71bddb832 (patch) | |
tree | a935b85c7e0c68a812e52b72c050ae916a178d38 /phpBB | |
parent | 0daf148aaa79a5ebd050afb978b7b8572b9d7ad3 (diff) | |
parent | 67a963ac42902719240f0325274aaa69f6f208c7 (diff) | |
download | forums-e15b9dc7828de8644775709155c157a71bddb832.tar forums-e15b9dc7828de8644775709155c157a71bddb832.tar.gz forums-e15b9dc7828de8644775709155c157a71bddb832.tar.bz2 forums-e15b9dc7828de8644775709155c157a71bddb832.tar.xz forums-e15b9dc7828de8644775709155c157a71bddb832.zip |
Merge pull request #3388 from rxu/ticket/13596
[ticket/13596] Add display_forums() event to allow modifying forums list data
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/functions_display.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index 31cf43e599..b62b514293 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -375,6 +375,28 @@ function display_forums($root_data = '', $display_moderators = true, $return_mod get_moderators($forum_moderators, $forum_ids_moderator); } + /** + * Event to perform additional actions before the forum list is being generated + * + * @event core.display_forums_before + * @var array active_forum_ary Array with forum data to display active topics + * @var bool display_moderators Flag indicating if we display forum moderators + * @var array forum_moderators Array with forum moderators list + * @var array forum_rows Data array of all forums we display + * @var bool return_moderators Flag indicating if moderators list should be returned + * @var array root_data Array with the root forum data + * @since 3.1.4-RC1 + */ + $vars = array( + 'active_forum_ary', + 'display_moderators', + 'forum_moderators', + 'forum_rows', + 'return_moderators', + 'root_data', + ); + extract($phpbb_dispatcher->trigger_event('core.display_forums_before', compact($vars))); + // Used to tell whatever we have to create a dummy category or not. $last_catless = true; foreach ($forum_rows as $row) |