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