summaryrefslogtreecommitdiff
path: root/templates/sidebar.tpl.php
diff options
context:
space:
mode:
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-01-07 15:13:16 +0000
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-01-07 15:13:16 +0000
commit32398ee61bf5fec93f2a0236149eb44db72768d2 (patch)
tree482f01d3c75d5e7793bf4755fb93277f48b3b28c /templates/sidebar.tpl.php
parentd68d3dc525b942460c4a5a1b10273c128278a837 (diff)
downloadsemanticscuttle-32398ee61bf5fec93f2a0236149eb44db72768d2.tar.gz
semanticscuttle-32398ee61bf5fec93f2a0236149eb44db72768d2.tar.bz2
New Feature: special colors on admin page and bookmarks allowing to mark a difference with bookmarks from normal users. [Config file modified: ]
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@223 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/sidebar.tpl.php')
-rw-r--r--templates/sidebar.tpl.php24
1 files changed, 15 insertions, 9 deletions
diff --git a/templates/sidebar.tpl.php b/templates/sidebar.tpl.php
index 88915fc..ad5c74f 100644
--- a/templates/sidebar.tpl.php
+++ b/templates/sidebar.tpl.php
@@ -1,10 +1,16 @@
-
+<?php if($GLOBALS['enableAdminColors']!=false && isset($userid) && $userservice->isAdmin($userid)): ?>
+<div id="sidebar" class="adminBackground">
+<?php else: ?>
<div id="sidebar">
- <?php
-
- $size = count($sidebar_blocks);
- for ($i = 0; $i < $size; $i++) {
- $this->includeTemplate('sidebar.block.'. $sidebar_blocks[$i]);
- }
- ?>
-</div>
+<?php endif ?>
+
+
+<?php
+
+$size = count($sidebar_blocks);
+for ($i = 0; $i < $size; $i++) {
+ $this->includeTemplate('sidebar.block.'. $sidebar_blocks[$i]);
+}
+?>
+
+</div> \ No newline at end of file