Extension Hooks

comment_entries_tagdata

Hook Added in Version:

1.4.0

Hook File Location:

mod.comment.php

Hook Description:

Modify and play with the comment entries tagdata before everyone else

Hook Parameters

  • $tagdata - The tag data
  • $row - The data for the current comment

Hook Returns Data?

Yes

Appearance of Hook in the Code

if (isset($EXT->extensions['comment_entries_tagdata']))
{
 $tagdata = $EXT->call_extension('comment_entries_tagdata', $tagdata, $row);
 if ($EXT->end_script === TRUE) return $tagdata;
}