summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-11-20 13:42:03 +0000
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-11-20 13:42:03 +0000
commit3c685aa352587b752af61c6e80b1645ca3830316 (patch)
tree1e0782ec1ba91c8bdf5706cb20d702fa261f9be2 /templates
parent54991bce619b2840452594e8a78004b7389445ed (diff)
downloadsemanticscuttle-3c685aa352587b752af61c6e80b1645ca3830316.tar.gz
semanticscuttle-3c685aa352587b752af61c6e80b1645ca3830316.tar.bz2
New feature: Dynamic tree of tags using Dojo toolkit (used by a menu2 sidebar box) [Config file modified: ]
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@165 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates')
-rw-r--r--templates/sidebar.block.menu2.php62
-rw-r--r--templates/top.inc.php9
2 files changed, 67 insertions, 4 deletions
diff --git a/templates/sidebar.block.menu2.php b/templates/sidebar.block.menu2.php
new file mode 100644
index 0000000..9b660fa
--- /dev/null
+++ b/templates/sidebar.block.menu2.php
@@ -0,0 +1,62 @@
+<?php
+$tag2tagservice =& ServiceFactory::getServiceInstance('Tag2TagService');
+$userservice =& ServiceFactory::getServiceInstance('UserService');
+
+require_once('sidebar.linkedtags.inc.php');
+
+/* Manage input */
+$userid = isset($userid)?$userid:0;
+$user = isset($user)?$user:null;
+
+
+$logged_on_userid = $userservice->getCurrentUserId();
+if ($logged_on_userid === false) {
+ $logged_on_userid = NULL;
+}
+
+if(!isset($user)) {
+ $cat_url = createURL('tags', '%2$s');
+}
+
+$menu2Tags = $GLOBALS['menu2Tags'];
+if (sizeOf($menu2Tags) > 0) {
+ ?>
+
+<h2><?php echo '<span>'.T_('Menu Tags').'</span> ';?></h2>
+
+
+<div id="related"><?php
+foreach($menu2Tags as $menu2Tag) {
+
+ echo '<div dojoType="dojo.data.ItemFileReadStore" url="http://127.0.0.6/SemanticScuttle/trunk/ajax/getlinkedtags.php?tag='.$menu2Tag.'" jsid="linkedTagStore" ></div>';
+ echo '<div dojoType="dijit.Tree" store="linkedTagStore" labelAttr="name" >';
+ echo '<script type="dojo/method" event="onClick" args="item">';
+ $returnUrl = sprintf($cat_url, filter($user, 'url'), filter('', 'url'));
+ echo 'window.location = "'.$returnUrl.'"+item.name';
+ echo '</script>';
+ echo '<script type="dojo/method" event="getLabelClass" args="item">';
+ echo 'return \'treeTag\';';
+ echo '</script>';
+ echo '</div>';
+}
+?> <!-- /table--> <?php $cUser = $userservice->getUser($userid); ?> <?php if($userid>0): ?>
+<?php if($userid==$logged_on_userid): ?>
+<p style="text-align: right"><a
+ href="<?php echo createURL('alltags', $cUser['username']); ?>"
+ title="<?php echo T_('See all your tags')?>"><?php echo T_('all your tags'); ?></a>
+&rarr;</p>
+<?php else: ?>
+<p style="text-align: right"><a
+ href="<?php echo createURL('alltags', $cUser['username']); ?>"
+ title="<?php echo T_('See all tags from this user')?>"><?php echo T_('all tags from this user'); ?></a>
+&rarr;</p>
+<?php endif; ?> <?php else : ?>
+<p style="text-align: right"><a
+ href="<?php echo createURL('populartags', $cUser['username']); ?>"
+ title="<?php echo T_('See popular tags')?>"><?php echo T_('Popular Tags'); ?></a>
+&rarr;</p>
+<?php endif; ?></div>
+
+<?php
+}
+?>
diff --git a/templates/top.inc.php b/templates/top.inc.php
index dca9036..88a949a 100644
--- a/templates/top.inc.php
+++ b/templates/top.inc.php
@@ -23,7 +23,7 @@ if(isset($rsschannels)) {
src="<?php echo $GLOBALS['root']; ?>jsScuttle.php"></script>
<link rel="stylesheet" type="text/css"
- href="http://ajax.googleapis.com/ajax/libs/dojo/1.2/dijit/themes/tundra/tundra.css">
+ href="http://ajax.googleapis.com/ajax/libs/dojo/1.2/dijit/themes/nihilo/nihilo.css">
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/dojo/1.2/dojo/dojo.xd.js"
@@ -32,14 +32,15 @@ if(isset($rsschannels)) {
<script type="text/javascript">
dojo.require("dojo.parser");
dojo.require("dojo.data.ItemFileReadStore");
-dojo.require("dojox.form.MultiComboBox");
+dojo.require("dojox.form.MultiComboBox");
+dojo.require("dijit.Tree");
</script>
<?php endif ?>
</head>
-<body class="tundra">
-<!-- the tundra class is used by Dojo widgets -->
+<body class="nihilo">
+<!-- the class is used by Dojo widgets -->
<?php
$headerstyle = '';