diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-12-29 00:35:31 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-12-29 00:35:31 +0000 |
commit | b46bfdd4921e27ed472aabfd06ab7c95f30e7e62 (patch) | |
tree | e522d493e45bf30514566e8da4f0f1d268f706e1 /themes | |
parent | ed8689f768f81d2c3ed8bee70c43d4f7c71c108e (diff) |
Separate permanent messages out of the message helper and put them
into site_status. Show site status in the header in the admin theme.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/admin_default/views/admin.html.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/themes/admin_default/views/admin.html.php b/themes/admin_default/views/admin.html.php index 39025e32..2859ee25 100644 --- a/themes/admin_default/views/admin.html.php +++ b/themes/admin_default/views/admin.html.php @@ -28,6 +28,8 @@ <div id="doc4" class="yui-t5 gView"> <div id="hd"> <div id="gHeader"> + <?= $theme->site_status() ?> + <?= $theme->admin_header_top() ?> <ul id="gLoginMenu"> <li><?= html::anchor("albums/1", "Browse Gallery") ?></li> <li id="gLogoutLink"><a href="<?= url::site("logout?continue=albums/1") ?>">Logout</a></li> @@ -36,11 +38,10 @@ <div id="gSiteAdminMenu" class="gClearFix"> <?= $theme->admin_menu() ?> </div> + <?= $theme->admin_header_bottom() ?> </div> </div> - <?= $theme->messages() ?> - <div id="bd"> <div id="yui-main"> <div class="yui-b"> @@ -70,9 +71,10 @@ </div> <div id="ft"> <div id="gFooter"> - <?= $theme->admin_footer(); ?> + <?= $theme->admin_footer() ?> Footer </div> + <?= $theme->admin_credits() ?> </div> </div> <?= $theme->admin_page_bottom() ?> |