Extension Hooks

weblog_entries_tagdata_end

Hook Added in Version:

EE 1.5.0

Hook File Location:

mod.weblog.php

Hook Description:

Take the final result from an entry's parsing and do what you will.

Hook Parameters

  • $tagdata - The Weblog Entries tag data
  • $row - Array of data for the current entry
  • $this - The current Weblog object including all data relating to categories and custom fields

Hook Returns Data?

Yes

Appearance of Hook in the Code

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