weblog_entries_query_result
Hook Added in Version:
EE 1.6.7
Hook File Location:
mod.weblog.php
Hook Description:
Take the whole query object, do what you wish
Hook Parameters
- $this - the Weblog class object
- $this->query - the query object for this entries tag
Hook Returns Data?
Yes
Appearance of Hook in the Code
if ($EXT->active_hook('weblog_entries_query_result') === TRUE)
{
$this->query = $EXT->call_extension('weblog_entries_query_result', $this, $this->query);
if ($EXT->end_script === TRUE) return $TMPL->tagdata;
}
