forked from GNUsocial/gnu-social
Move object menu into aside
This commit is contained in:
parent
1d29ba8315
commit
1f86f45bb9
@ -669,10 +669,6 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
$this->showContentBlock();
|
$this->showContentBlock();
|
||||||
Event::handle('EndShowContentBlock', array($this));
|
Event::handle('EndShowContentBlock', array($this));
|
||||||
}
|
}
|
||||||
if (Event::handle('StartShowObjectNavBlock', array($this))) {
|
|
||||||
$this->showObjectNavBlock();
|
|
||||||
Event::handle('EndShowObjectNavBlock', array($this));
|
|
||||||
}
|
|
||||||
if (Event::handle('StartShowAside', array($this))) {
|
if (Event::handle('StartShowAside', array($this))) {
|
||||||
$this->showAside();
|
$this->showAside();
|
||||||
Event::handle('EndShowAside', array($this));
|
Event::handle('EndShowAside', array($this));
|
||||||
@ -828,6 +824,10 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
{
|
{
|
||||||
$this->elementStart('div', array('id' => 'aside_primary',
|
$this->elementStart('div', array('id' => 'aside_primary',
|
||||||
'class' => 'aside'));
|
'class' => 'aside'));
|
||||||
|
if (Event::handle('StartShowObjectNavBlock', array($this))) {
|
||||||
|
$this->showObjectNavBlock();
|
||||||
|
Event::handle('EndShowObjectNavBlock', array($this));
|
||||||
|
}
|
||||||
if (Event::handle('StartShowSections', array($this))) {
|
if (Event::handle('StartShowSections', array($this))) {
|
||||||
$this->showSections();
|
$this->showSections();
|
||||||
Event::handle('EndShowSections', array($this));
|
Event::handle('EndShowSections', array($this));
|
||||||
|
Loading…
Reference in New Issue
Block a user