SemanticScuttle/templates/sidebar.block.watchlist.php

20 lines
440 B
PHP
Raw Normal View History

<?php
/* Service creation: only useful services are created */
//No specific services
$watching = $userservice->getWatchNames($userid);
if ($watching) {
?>
<h2><?php echo T_('Watching'); ?></h2>
<div id="watching">
<ul>
<?php foreach($watching as $watchuser): ?>
<li><a href="<?php echo createURL('bookmarks', $watchuser); ?>"><?php echo $watchuser; ?></a> &rarr;</li>
<?php endforeach; ?>
</ul>
</div>
<?php
}
?>