3ef7b27643
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@29 b3834d28-1941-0410-a4f8-b48e95affb8f
143 lines
4.2 KiB
PHP
143 lines
4.2 KiB
PHP
<?php
|
|
$tag2tagservice =& ServiceFactory::getServiceInstance('Tag2TagService');
|
|
$userservice =& ServiceFactory::getServiceInstance('UserService');
|
|
|
|
function displayLinkedTags($tag, $linkType, $uId, $cat_url, $user, $editingMode =false, $precedentTag =null, $level=0, $stopList=array()) {
|
|
|
|
if(in_array($tag, $stopList)) {
|
|
return array('output' => '', 'stoplist' => $stopList);
|
|
}
|
|
|
|
$tag2tagservice =& ServiceFactory::getServiceInstance('Tag2TagService');
|
|
$tagstatservice =& ServiceFactory::getServiceInstance('TagStatService');
|
|
|
|
$output = '';
|
|
$output.= '<tr>';
|
|
$output.= '<td></td>';
|
|
$output.= '<td>';
|
|
$output.= $level == 0?'<b>':'';
|
|
$output.= str_repeat(' ', $level*2) .'<a href="'. sprintf($cat_url, filter($user, 'url'), filter($tag, 'url')) .'" rel="tag">'. filter($tag) .'</a>';
|
|
$output.= $level == 1?'</b>':'';
|
|
//$output.= ' - '. $tagstatservice->getMaxDepth($tag, $linkType, $uId);
|
|
|
|
$synonymTags = $tag2tagservice->getAllLinkedTags($tag, '=', $uId);
|
|
$synonymTags = is_array($synonymTags)?$synonymTags:array($synonymTags);
|
|
sort($synonymTags);
|
|
foreach($synonymTags as $synonymTag) {
|
|
$output.= ", ".$synonymTag;
|
|
}
|
|
|
|
if($editingMode) {
|
|
$output.= ' (';
|
|
$output.= '<a href="'.createURL('tag2tagadd', $tag).'">add</a>';
|
|
if($precedentTag != null) {
|
|
$output.= ' - ';
|
|
$output.= '<a href="'.createURL('tag2tagdelete', $precedentTag.'/'.$tag).'">del</a>';
|
|
}
|
|
$output.= ')';
|
|
}
|
|
$output.= '</td>';
|
|
$output.= '</tr>';
|
|
|
|
$tags = array($tag);
|
|
$tags = array_merge($tags, $synonymTags);
|
|
foreach($tags as $tag) {
|
|
|
|
if(!in_array($tag, $stopList)) {
|
|
$linkedTags = $tag2tagservice->getLinkedTags($tag, '>', $uId);
|
|
$precedentTag = $tag;
|
|
$stopList[] = $tag;
|
|
foreach($linkedTags as $linkedTag) {
|
|
$displayLinkedTags = displayLinkedTags($linkedTag, $linkType, $uId, $cat_url, $user, $editingMode, $precedentTag, $level + 1, $stopList);
|
|
$output.= $displayLinkedTags['output'];
|
|
}
|
|
if(is_array($displayLinkedTags['stopList'])) {
|
|
$stopList = array_merge($stopList, $displayLinkedTags['stopList']);
|
|
$stopList = array_unique($stopList);
|
|
}
|
|
}
|
|
|
|
}
|
|
return array('output' => $output, 'stopList' => $stopList);
|
|
}
|
|
|
|
$logged_on_userid = $userservice->getCurrentUserId();
|
|
if ($logged_on_userid === false) {
|
|
$logged_on_userid = NULL;
|
|
}
|
|
|
|
$explodedTags = array();
|
|
if ($currenttag) {
|
|
$explodedTags = explode('+', $currenttag);
|
|
} else {
|
|
if($summarizeLinkedTags == true) {
|
|
$orphewTags = $tag2tagservice->getOrphewTags('>', $userid, 4, "nb");
|
|
} else {
|
|
$orphewTags = $tag2tagservice->getOrphewTags('>', $userid);
|
|
}
|
|
|
|
foreach($orphewTags as $orphewTag) {
|
|
$explodedTags[] = $orphewTag['tag'];
|
|
}
|
|
}
|
|
|
|
if(count($explodedTags) > 0) {
|
|
$displayLinkedZone = false;
|
|
foreach($explodedTags as $explodedTag) {
|
|
if($tag2tagservice->getLinkedTags($explodedTag, '>', $userid) || $tag2tagservice->getLinkedTags($explodedTag, '>', $userid, true) || $tag2tagservice->getLinkedTags($explodedTag, '=', $userid)) {
|
|
$displayLinkedZone = true;
|
|
break;
|
|
}
|
|
}
|
|
if ($displayLinkedZone) {
|
|
?>
|
|
|
|
<h2>
|
|
<?php
|
|
echo T_('Linked Tags').' ';
|
|
//if($userid != null) {
|
|
$cUser = $userservice->getUser($userid);
|
|
echo '<a href="'.createURL('alltags', $cUser['username']).'">('.T_('plus').')</a>';
|
|
//}
|
|
?>
|
|
</h2>
|
|
|
|
|
|
<div id="linked">
|
|
<table>
|
|
<?php
|
|
if(($logged_on_userid != null) && ($userid === $logged_on_userid)) {
|
|
$editingMode = true;
|
|
} else {
|
|
$editingMode = false;
|
|
}
|
|
$stopList = array();
|
|
foreach($explodedTags as $explodedTag) {
|
|
if(!in_array($explodedTag, $stopList)) {
|
|
// fathers tag
|
|
$fatherTags = $tag2tagservice->getLinkedTags($explodedTag, '>', $userid, true);
|
|
if(count($fatherTags)>0) {
|
|
foreach($fatherTags as $fatherTag) {
|
|
echo '<tr><td>';
|
|
echo '<a href="'. sprintf($cat_url, filter($user, 'url'), filter($fatherTag, 'url')) .'" rel="tag">('. filter($fatherTag) .')</a>';
|
|
echo '</td></tr>';
|
|
}
|
|
}
|
|
|
|
$displayLinkedTags = displayLinkedTags($explodedTag, '>', $userid, $cat_url, $user, $editingMode, null, 0);
|
|
echo $displayLinkedTags['output'];
|
|
if(is_array($displayLinkedTags['stopList'])) {
|
|
$stopList = array_merge($stopList, $displayLinkedTags['stopList']);
|
|
}
|
|
}
|
|
|
|
}
|
|
?>
|
|
</table>
|
|
</div>
|
|
|
|
<?php
|
|
}
|
|
}
|
|
?>
|