forum_topics_loop_end
Hook Added in Version:
EE 1.5.1
Hook File Location:
mod.forum_core.php
Hook Description:
Modify the processed topic row before it is appended to the template output
Hook Parameters
- $this - The currently instantiated Forum Core object
- $query->result - array of all of the topics
- $row - The data for this topic
- $temp - The yet-to-be-processed template
Hook Returns Data?
Yes
Appearance of Hook in the Code
if (isset($EXT->extensions['forum_topics_loop_end']))
{
$temp = $EXT->call_extension('forum_topics_loop_end', $this, $query->result, $row, $temp);
if ($EXT->end_script === TRUE) return;
}
