mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-12 14:28:56 +00:00
[feature/php-events] Fix naming and doc of core.viewforum_modify_topicrow
PHPBB3-9550
This commit is contained in:
parent
fab13f7559
commit
63d17e5181
1 changed files with 9 additions and 1 deletions
|
@ -745,8 +745,16 @@ if (sizeof($topic_list))
|
||||||
'S_TOPIC_TYPE_SWITCH' => ($s_type_switch == $s_type_switch_test) ? -1 : $s_type_switch_test,
|
'S_TOPIC_TYPE_SWITCH' => ($s_type_switch == $s_type_switch_test) ? -1 : $s_type_switch_test,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Modify the topic data before it is assigned to the template
|
||||||
|
*
|
||||||
|
* @event core.viewforum_modify_topicrow
|
||||||
|
* @var array row Array with topic data
|
||||||
|
* @var array topic_row Template array with topic data
|
||||||
|
* @since 3.1-A1
|
||||||
|
*/
|
||||||
$vars = array('row', 'topic_row');
|
$vars = array('row', 'topic_row');
|
||||||
extract($phpbb_dispatcher->trigger_event('core.viewforum_topicrow', compact($vars)));
|
extract($phpbb_dispatcher->trigger_event('core.viewforum_modify_topicrow', compact($vars)));
|
||||||
|
|
||||||
$template->assign_block_vars('topicrow', $topic_row);
|
$template->assign_block_vars('topicrow', $topic_row);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue