Extension Hooks

control_panel_home_page_left_option

Hook Added in Version:

1.4.0

Hook File Location:

cp.home.php

Hook Description:

Allows adding of new option to left site of CP home page

Hook Parameters

  • $meth - The method being requested

Hook Returns Data?

Yes

Appearance of Hook in the Code

elseif (isset($EXT->extensions['control_panel_home_page_left_option']))
{
 $DSP->body .= $EXT->call_extension('control_panel_home_page_left_option', $meth);
}

Additional Notes

For this extension to work, you first have to add a possible method to the $this->methods class variable.