Hooks for: header, contentblock, footer
This commit is contained in:
parent
579f09417b
commit
dac8d103e6
19
EVENTS.txt
19
EVENTS.txt
@ -39,3 +39,22 @@ StartShowSections: Start the list of sections in the sidebar
|
|||||||
|
|
||||||
EndShowSections: End the list of sections in the sidebar
|
EndShowSections: End the list of sections in the sidebar
|
||||||
- $action: the current action
|
- $action: the current action
|
||||||
|
|
||||||
|
StartShowHeader: Showing before the header container
|
||||||
|
- $action: the current action
|
||||||
|
|
||||||
|
EndShowHeader: Showing after the header container
|
||||||
|
- $action: the current action
|
||||||
|
|
||||||
|
StartShowFooter: Showing before the footer container
|
||||||
|
- $action: the current action
|
||||||
|
|
||||||
|
EndShowFooter: Showing after the footer container
|
||||||
|
- $action: the current action
|
||||||
|
|
||||||
|
StartShowContentBlock: Showing before the content container
|
||||||
|
- $action: the current action
|
||||||
|
|
||||||
|
EndShowContentBlock: Showing after the content container
|
||||||
|
- $action: the current action
|
||||||
|
|
||||||
|
@ -275,9 +275,15 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
{
|
{
|
||||||
$this->elementStart('body', array('id' => $this->trimmed('action')));
|
$this->elementStart('body', array('id' => $this->trimmed('action')));
|
||||||
$this->elementStart('div', array('id' => 'wrap'));
|
$this->elementStart('div', array('id' => 'wrap'));
|
||||||
$this->showHeader();
|
if (Event::handle('StartShowHeader', array($this))) {
|
||||||
|
$this->showHeader();
|
||||||
|
Event::handle('EndShowHeader', array($this));
|
||||||
|
}
|
||||||
$this->showCore();
|
$this->showCore();
|
||||||
$this->showFooter();
|
if (Event::handle('StartShowFooter', array($this))) {
|
||||||
|
$this->showFooter();
|
||||||
|
Event::handle('EndShowFooter', array($this));
|
||||||
|
}
|
||||||
$this->elementEnd('div');
|
$this->elementEnd('div');
|
||||||
$this->elementEnd('body');
|
$this->elementEnd('body');
|
||||||
}
|
}
|
||||||
@ -432,7 +438,10 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
{
|
{
|
||||||
$this->elementStart('div', array('id' => 'core'));
|
$this->elementStart('div', array('id' => 'core'));
|
||||||
$this->showLocalNavBlock();
|
$this->showLocalNavBlock();
|
||||||
$this->showContentBlock();
|
if (Event::handle('StartShowContentBlock', array($this))) {
|
||||||
|
$this->showContentBlock();
|
||||||
|
Event::handle('EndShowContentBlock', array($this));
|
||||||
|
}
|
||||||
$this->showAside();
|
$this->showAside();
|
||||||
$this->elementEnd('div');
|
$this->elementEnd('div');
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user