aboutsummaryrefslogtreecommitdiff
path: root/data/templates/default/sidebar.block.menu.php
blob: 94a9fa26f7cad9780cae9f613ed6f12ae3881565 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
/* Service creation: only useful services are created */
$tag2tagservice =SemanticScuttle_Service_Factory::get('Tag2Tag');


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;
}

// editing mode
if(($logged_on_userid != null) && ($userid === $logged_on_userid)) {
    $editingMode = true;
} else {
    $editingMode = false;
}

if(!isset($user) || $user == '') {
    $cat_url = createURL('tags', '%2$s');
}

$menuTags = $tag2tagservice->getMenuTags($userid);
if (sizeof($menuTags) > 0 || ($userid != 0 && $userid === $logged_on_userid)) {
?>

<h2>
<?php
    echo '<span title="'.sprintf(T_('Tags included into the tag \'%s\''), $GLOBALS['menuTag']).'">'.T_('Menu Tags').'</span> ';
    //}
?>
</h2>


<div id="related">
<table>
<?php
    if($editingMode) {
	echo '<tr><td></td><td>';
	echo ' (<a href="'. createURL('tag2tagadd','menu') .'" rel="tag">'.T_('Add new link').'</a>) ';
	echo ' (<a href="'. createURL('tag2tagdelete','menu') .'" rel="tag">'.T_('Delete link').'</a>)';
	echo '</td></tr>';
    }

    $stopList = array();
    foreach($menuTags as $menuTag) {
	$tag = $menuTag['tag'];
	if(!in_array($tag, $stopList)) {
	    $displayLinkedTags = displayLinkedTags($tag, '>', $userid, $cat_url, $user, $editingMode, null, 1);
	    echo $displayLinkedTags['output'];
	    if(is_array($displayLinkedTags['stopList'])) {
		$stopList = array_merge($stopList, $displayLinkedTags['stopList']);
	    }
	}
    }
?>
</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> </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> </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> </p>
<?php endif; ?>
</div>

<?php
}
?>