Extension Hooks

weblog_module_fetch_pagination_data

Hook Added in Version:

1.4.0

Hook File Location:

mod.weblog.php

Hook Description:

- Works with the 'weblog_module_create_pagination' hook

Hook Parameters

  • $this - Currently instantiated object for Weblog class, remember to call this with a reference if you want to modify the object

Hook Returns Data?

No

Appearance of Hook in the Code

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