PluginHooks:EndShowHTML
From StatusNet
Contents |
Description
Arguments
1: PublicAction
Related Code
File: lib/action.php (line 98)
...
*/
function showPage()
{
if (Event::handle('StartShowHTML', array($this))) {
$this->startHTML();
Event::handle('EndShowHTML', array($this));
}
if (Event::handle('StartShowHead', array($this))) {
$this->showHead();
Event::handle('EndShowHead', array($this));
}
...
Examples
class ExamplePlugin extends Plugin {
public function onEndShowHTML ($publicaction) {
//do something
}
}