summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--actions/shownotice.php35
-rw-r--r--lib/action.php11
2 files changed, 43 insertions, 3 deletions
diff --git a/actions/shownotice.php b/actions/shownotice.php
index 7033a1672..beae478ba 100644
--- a/actions/shownotice.php
+++ b/actions/shownotice.php
@@ -180,6 +180,18 @@ class ShownoticeAction extends Action
$this->showPage();
}
+
+ /**
+ * Don't show local navigation
+ *
+ * @return void
+ */
+
+ function showLocalNavBlock()
+ {
+ }
+
+
/**
* Fill the content area of the page
*
@@ -196,6 +208,29 @@ class ShownoticeAction extends Action
$this->elementEnd('ul');
}
+
+
+ /**
+ * Don't show page notice
+ *
+ * @return void
+ */
+
+ function showPageNoticeBlock()
+ {
+ }
+
+
+ /**
+ * Don't show aside
+ *
+ * @return void
+ */
+
+ function showAside() {
+ }
+
+
/**
* Extra <head> content
*
diff --git a/lib/action.php b/lib/action.php
index c056c128f..5987abf3c 100644
--- a/lib/action.php
+++ b/lib/action.php
@@ -301,15 +301,20 @@ class Action extends HTMLOutputter // lawsuit
function showCore()
{
$this->elementStart('div', array('id' => 'core'));
+ $this->showLocalNavBlock();
+ $this->showContentBlock();
+ $this->showAside();
+ $this->elementEnd('div');
+ }
+
+ function showLocalNavBlock()
+ {
$this->elementStart('dl', array('id' => 'site_nav_local_views'));
$this->element('dt', null, _('Local views'));
$this->elementStart('dd');
$this->showLocalNav();
$this->elementEnd('dd');
$this->elementEnd('dl');
- $this->showContentBlock();
- $this->showAside();
- $this->elementEnd('div');
}
// SHOULD overload