Extension Hooks

forum_thread_rows_absolute_end

Hook Added in Version:

EE 1.5.1

Hook File Location:

mod.forum_core.php

Hook Description:

Take the processed thread rows and do what you wish

Hook Parameters

  • $this - The currently instantiated Forum Core object
  • $data - Information about the current group of thread_rows (announcement, topic, all posts, etc.)
  • $thread_rows - The fully processed thread row template

Hook Returns Data?

Yes

Appearance of Hook in the Code

if (isset($EXT->extensions['forum_thread_rows_absolute_end']))
{
 $thread_rows = $EXT->call_extension('forum_thread_rows_absolute_end', $this, $data, $thread_rows);
 if ($EXT->end_script === TRUE) return $thread_rows;
}