Show NoticeForm only if logged in
This commit is contained in:
parent
10a4d9ea1e
commit
d012bdabde
@ -208,7 +208,11 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
$this->showLogo();
|
$this->showLogo();
|
||||||
$this->showPrimaryNav();
|
$this->showPrimaryNav();
|
||||||
$this->showSiteNotice();
|
$this->showSiteNotice();
|
||||||
$this->showNoticeForm();
|
if (common_logged_in()) {
|
||||||
|
$this->showNoticeForm();
|
||||||
|
} else {
|
||||||
|
$this->showAnonymousMessage();
|
||||||
|
}
|
||||||
$this->elementEnd('div');
|
$this->elementEnd('div');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -285,6 +289,11 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
$notice_form->show();
|
$notice_form->show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function showAnonymousMessage()
|
||||||
|
{
|
||||||
|
// needs to be defined by the class
|
||||||
|
}
|
||||||
|
|
||||||
function showCore()
|
function showCore()
|
||||||
{
|
{
|
||||||
$this->elementStart('div', array('id' => 'core'));
|
$this->elementStart('div', array('id' => 'core'));
|
||||||
|
Loading…
Reference in New Issue
Block a user