mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-10 09:19:18 -04:00
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() { }
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user