Extension Hooks

forum_thread_rows_loop_start

Hook Added in Version:

EE 1.5.1

Hook File Location:

mod.forum_core.php

Hook Description:

Modify the thread row template and data before any processing takes place

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_start']))
{
 $temp = $EXT->call_extension('forum_thread_rows_loop_start', $this, $data, $row, $temp);
 if ($EXT->end_script === TRUE) return;
}