From b526cc8c0bea4033a1ffadd6706f073f9cb90eeb Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Mon, 22 Dec 2008 03:53:36 +0000 Subject: 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() { } --- themes/admin_default/views/admin.html.php | 6 ++++-- themes/default/views/footer.html.php | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'themes') 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 @@ + admin_page_top() ?>
@@ -58,16 +59,17 @@
- sidebar_blocks() ?> + admin_sidebar_blocks() ?>
+ admin_footer(); ?> Footer
- + admin_page_bottom() ?> diff --git a/themes/default/views/footer.html.php b/themes/default/views/footer.html.php index 7f011735..b5f842b7 100644 --- a/themes/default/views/footer.html.php +++ b/themes/default/views/footer.html.php @@ -1,4 +1,5 @@ +footer() ?>;