summaryrefslogtreecommitdiffstatshomepage
path: root/templates/sidebar.block.related.php
blob: 3a37718e3e6a5ecfd8aba96235460fa01de4fb3b (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
<?php
$tagservice =& ServiceFactory::getServiceInstance('TagService');
$userservice =& ServiceFactory::getServiceInstance('UserService');

$logged_on_userid = $userservice->getCurrentUserId();
if ($logged_on_userid === false) {
    $logged_on_userid = NULL;
}
if ($currenttag) {
    $relatedTags = $tagservice->getRelatedTags($currenttag, $userid, $logged_on_userid);
    if (sizeof($relatedTags) > 0) {
?>

<h2><?php echo T_('Related Tags'); ?></h2>
<div id="related">
    <table>
    <?php foreach($relatedTags as $row): ?>
    <tr>
        <td><a href="<?php echo sprintf($cat_url, filter($user, 'url'), filter($currenttag, 'url') .'+'. filter($row['tag'], 'url')); ?>">+</a></td>
        <td><a href="<?php echo sprintf($cat_url, filter($user, 'url'), filter($row['tag'], 'url')); ?>" rel="tag"><?php echo filter($row['tag']); ?></a></td>
    </tr>
    <?php endforeach; ?>
    </table>
</div>

<?php
    }
}
?>