Extension Hooks

forum_topics_absolute_end

Hook Added in Version:

EE 1.5.1

Hook File Location:

mod.forum_core.php

Hook Description:

Modify the finalized topics template and do what you wish

Hook Parameters

  • $this - The currently instantiated Forum Core object
  • $query->result - array of all of the displayed topics
  • $str - The finalized topics template

Hook Returns Data?

Yes

Appearance of Hook in the Code

if (isset($EXT->extensions['forum_topics_absolute_end']))
{
 $str = $EXT->call_extension('forum_topics_absolute_end', $this, $query->result, $str);
 if ($EXT->end_script === TRUE) return $str;
}