Extension Hooks

weblog_entries_row

Hook Added in Version:

EE 1.6.7

Hook File Location:

mod.weblog.php

Hook Description:

Take the entry data, do what you wish

Hook Parameters

  • $this - the Weblog class object
  • $row - current row data

Hook Returns Data?

Yes

Appearance of Hook in the Code

if ($EXT->active_hook('weblog_entries_row') === TRUE)
{
	$row = $EXT->call_extension('weblog_entries_row', $this, $row);
	if ($EXT->end_script === TRUE) return $tagdata;
}