diff options
author | jhunkeler <jhunkeler@c5b2fb0a-d05d-0410-98c8-828840a80ff6> | 2009-12-29 00:36:23 -0500 |
---|---|---|
committer | jhunkeler <jhunkeler@c5b2fb0a-d05d-0410-98c8-828840a80ff6> | 2009-12-29 00:36:23 -0500 |
commit | ad6ba256efd1a65fb1bb3951ae6b17b1593205b7 (patch) | |
tree | 19ffc9be7bbd6a542883a5e4dd889ed5c52e6b5e /admin/blocks/index.php | |
parent | 1b435e3b3a66d10b4dcc28d03e90b49d132ba7b5 (diff) | |
download | bayonetcms-ad6ba256efd1a65fb1bb3951ae6b17b1593205b7.tar.gz |
(OC)
Fixed includes/functions::GetBlocks() so that left and right are 0 and 1.
Also fixed the query so that it doesnt get every block, just the active blocks for the defined side.
Re-did some display on the admin side for blocks.
git-svn-id: http://svn.3rd-infantry-division.org/testing/branches/Bayonet CMS v2@408 c5b2fb0a-d05d-0410-98c8-828840a80ff6
Diffstat (limited to 'admin/blocks/index.php')
-rw-r--r-- | admin/blocks/index.php | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/admin/blocks/index.php b/admin/blocks/index.php index 8d63b6d..fb10441 100644 --- a/admin/blocks/index.php +++ b/admin/blocks/index.php @@ -1,7 +1,7 @@ <?php /** * Bayonet Content Management System - * Copyright (C) 2008 Joseph Hunkeler + * Copyright (C) 2008 Joseph Hunkeler & Evan O'Connell * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,6 +16,11 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ + ?> + <div style="text-align:left;"><h2>- Manage Blocks</h2></div> + <table class="panel" width="100%"> + <tr><td class="panel"><center> + <?php /** * This file administers the site blocks. @@ -29,31 +34,27 @@ if(!defined("ADMIN_FILE")) die("Access denied."); } - include $basedir.'blocks/functions.php'; if(isset($_GET['edit'])) { $block_id = $_GET['edit']; EditBlock($block_id); - return; } - -if(isset($_GET['delete'])) +else if(isset($_GET['delete'])) { $block_id = $_GET['delete']; DeleteBlock($block_id); - return; } - -if(isset($_GET['create'])) +else if(isset($_GET['create'])) { NewBlock(); - return; } - -echo "<table align=\"center\" width=\"200px\"><tr><th>".LinkInternal('Create a Block','?load=admin&op=blocks&create=true')."</th></tr></table>"; - -ListBlocks(); - -?>
\ No newline at end of file +else{ + echo "<table align=\"center\" width=\"200px\"><tr><th>".LinkInternal('<img src="images/add.png" />Create a Block','?op=blocks&create=true')."</th></tr></table>"; + + ListBlocks(); +} +?> +</center></td></tr> +</table>
\ No newline at end of file |