834b3aedb8
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@266 b3834d28-1941-0410-a4f8-b48e95affb8f
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
/* Service creation: only useful services are created */
|
|
$tag2tagservice =& ServiceFactory::getServiceInstance('Tag2TagService');
|
|
|
|
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;
|
|
}
|
|
|
|
|
|
$cat_url = createURL('tags', '%2$s');
|
|
$menu2Tags = $GLOBALS['menu2Tags'];
|
|
|
|
|
|
if (sizeOf($menu2Tags) > 0) {
|
|
$this->includeTemplate("dojo.inc");
|
|
?>
|
|
|
|
<h2><?php echo '<span>'.T_('Featured Menu Tags').'</span> ';?></h2>
|
|
|
|
|
|
<div id="related"><?php
|
|
foreach($menu2Tags as $menu2Tag) {
|
|
|
|
echo '<div dojoType="dojo.data.ItemFileReadStore" url="ajax/getlinkedtags.php?tag='.filter($menu2Tag, 'url').'" 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>';
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
<?php
|
|
}
|
|
?>
|