$this->elementStart('div', array('id' => 'content'));
$this->showPageTitle();
$this->showPageNotice();
+ $this->elementStart('div', array('id' => 'content_inner'));
+ // show the actual content (forms, lists, whatever)
$this->showContent();
$this->elementEnd('div');
+ $this->elementEnd('div');
}
function showPageTitle() {
function showContent()
{
- // show the actual content (forms, lists, whatever)
- $this->elementStart('div', array('id' => 'content_inner'));
- $this->elementEnd('div');
}
function showAside()