diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2008-12-22 03:53:36 +0000 |
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2008-12-22 03:53:36 +0000 |
| commit | b526cc8c0bea4033a1ffadd6706f073f9cb90eeb (patch) | |
| tree | 1bc51063fad8c56910cb52bafb13294d31b82a7b /themes/admin_default | |
| parent | fe27bd1eb34efe95da6ffe8b6f6c137fe8a18306 (diff) | |
Add some admin theme callbacks and make them explicitly admin_xxx for consistency
with the callbacks in the xxx_block helpers. So in the theme we have:
admin.html.php:
$theme->admin_page_bottom()
then in the helpers:
core_block.php:
function admin_page_bottom() { }
Diffstat (limited to 'themes/admin_default')
| -rw-r--r-- | themes/admin_default/views/admin.html.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/themes/admin_default/views/admin.html.php b/themes/admin_default/views/admin.html.php index 6aa5c3c9..0bd90237 100644 --- a/themes/admin_default/views/admin.html.php +++ b/themes/admin_default/views/admin.html.php @@ -22,6 +22,7 @@ </head> <body> + <?= $theme->admin_page_top() ?> <div id="doc4" class="yui-t5 gView"> <div id="hd"> <div id="gHeader"> @@ -58,16 +59,17 @@ </form> </div> - <?= $theme->sidebar_blocks() ?> + <?= $theme->admin_sidebar_blocks() ?> </div> </div> <div id="ft"> <div id="gFooter"> + <?= $theme->admin_footer(); ?> Footer </div> </div> </div> - + <?= $theme->admin_page_bottom() ?> </body> </html> |
