summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorGravatar mensonge2009-01-07 15:13:16 +0000
committerGravatar mensonge2009-01-07 15:13:16 +0000
commit32398ee61bf5fec93f2a0236149eb44db72768d2 (patch)
tree482f01d3c75d5e7793bf4755fb93277f48b3b28c
parentd68d3dc525b942460c4a5a1b10273c128278a837 (diff)
downloadscuttle-32398ee61bf5fec93f2a0236149eb44db72768d2.tar.gz
scuttle-32398ee61bf5fec93f2a0236149eb44db72768d2.zip
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
-rw-r--r--config.inc.php.example4
-rw-r--r--scuttle.css6
-rw-r--r--templates/bookmarks.tpl.php7
-rw-r--r--templates/sidebar.tpl.php24
4 files changed, 31 insertions, 10 deletions
diff --git a/config.inc.php.example b/config.inc.php.example
index df4c615..56cf957 100644
--- a/config.inc.php.example
+++ b/config.inc.php.example
@@ -82,9 +82,11 @@ $menuTag = 'menu'; # name of the tag whose subtags will appear into the menu box
$maxSizeMenuBlock = 7; # maximum number of items (tags) appearing into menu box
$menu2Tags = array('example', 'of', 'menu', 'tags'); # list of tags used by menu2 sidebar box (void list = hidden menu2 box)
-### Other ###
+### Search ###
$sizeSearchHistory = 10; # number of users' searches that are saved {1..10[Default]..-1[Unlimited]}
$enableGoogleCustomSearch = true; #Enable Google Search Engine into "gsearch/" folder
+### Other ###
+$enableAdminColors = true; #Enables special colors on admin pages and bookmarks marking the difference with normal user.
?>
diff --git a/scuttle.css b/scuttle.css
index 9dfc0a4..7f9b579 100644
--- a/scuttle.css
+++ b/scuttle.css
@@ -507,6 +507,12 @@ ul {
width: 75%;
}
+.adminBackground {
+ background: #FFFFFF url(http://127.0.0.6/SemanticScuttle/trunk/images/logo_24.png) repeat-y scroll top right;
+ /*border-top: 1px solid;
+ border-color: #CC9900;*/
+}
+
/* DOJO Style */
/* DOJO Style */
diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php
index 4a9c1b2..56fadbe 100644
--- a/templates/bookmarks.tpl.php
+++ b/templates/bookmarks.tpl.php
@@ -19,6 +19,13 @@ include('search.inc.php');
<?php endif?>
+<?php if($GLOBALS['enableAdminColors']!=false && isset($userid) && $userservice->isAdmin($userid)): ?>
+<div style="width:70%;text-align:center;">
+<img src="<?php echo ROOT ?>images/logo_24.png" width="12px"/> <?php echo T_('Bookmarks on this page are managed by an admin user.'); ?><img src="<?php echo ROOT ?>images/logo_24.png" width="12px"/>
+</div>
+<?php endif?>
+
+
<?php
// common tag description
if((isset($currenttag) && $currenttag!= '' && $GLOBALS['enableCommonTagDescription'])
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