2007-12-12 16:29:16 +00:00
|
|
|
<?php
|
2008-12-05 07:25:04 +00:00
|
|
|
/* Service creation: only useful services are created */
|
|
|
|
//No specific services
|
2007-12-12 16:29:16 +00:00
|
|
|
|
|
|
|
$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> →</li>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|