Extension Hooks

forum_topics_start

Hook Added in Version:

1.4.0

Hook File Location:

mod.forum_core.php

Hook Description:

Allows modifying of the Topics display template before it is processed

Hook Parameters

  • $this - The currently instantiated Forum Core object
  • $str - The topics template

Hook Returns Data?

Yes

Appearance of Hook in the Code

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