diff options
author | Sarven Capadisli <csarven@status.net> | 2010-03-03 15:31:44 -0500 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2010-03-03 15:31:44 -0500 |
commit | 13713a09bbb2cac0c82c2d6602c8820662740218 (patch) | |
tree | 07402e6428664dea5b8c0b255e3b50eab0d63d13 /lib/adminpanelaction.php | |
parent | d3c1888256e32495cb0db9065ff7a03e105299a3 (diff) | |
parent | c7d390e4949b28c28c95375bfe4523de05af7808 (diff) |
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing
Diffstat (limited to 'lib/adminpanelaction.php')
-rw-r--r-- | lib/adminpanelaction.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/adminpanelaction.php b/lib/adminpanelaction.php index 536d97cdf..9ea4fe206 100644 --- a/lib/adminpanelaction.php +++ b/lib/adminpanelaction.php @@ -172,6 +172,24 @@ class AdminPanelAction extends Action } /** + * Show content block. Overrided just to add a special class + * to the content div to allow styling. + * + * @return nothing + */ + function showContentBlock() + { + $this->elementStart('div', array('id' => 'content', 'class' => 'admin')); + $this->showPageTitle(); + $this->showPageNoticeBlock(); + $this->elementStart('div', array('id' => 'content_inner')); + // show the actual content (forms, lists, whatever) + $this->showContent(); + $this->elementEnd('div'); + $this->elementEnd('div'); + } + + /** * show human-readable instructions for the page, or * a success/failure on save. * |