2007-12-12 16:29:16 +00:00
|
|
|
<?php
|
2008-12-05 07:25:04 +00:00
|
|
|
/* Service creation: only useful services are created */
|
2009-10-23 17:13:16 +00:00
|
|
|
$b2tservice =SemanticScuttle_Service_Factory::get('Bookmark2Tag');
|
2007-12-12 16:29:16 +00:00
|
|
|
|
2008-05-10 08:59:41 +00:00
|
|
|
/* Manage input */
|
2008-06-04 16:11:21 +00:00
|
|
|
$userid = isset($userid)?$userid:NULL;
|
2008-05-10 08:59:41 +00:00
|
|
|
|
2007-12-12 16:29:16 +00:00
|
|
|
$logged_on_userid = $userservice->getCurrentUserId();
|
|
|
|
if ($logged_on_userid === false) {
|
|
|
|
$logged_on_userid = NULL;
|
|
|
|
}
|
2008-04-21 08:44:44 +00:00
|
|
|
$recentTags = $b2tservice->getPopularTags($userid, $popCount, $logged_on_userid, $GLOBALS['defaultRecentDays']);
|
|
|
|
$recentTags =& $b2tservice->tagCloud($recentTags, 5, 90, 225, 'alphabet_asc');
|
2007-12-12 16:29:16 +00:00
|
|
|
|
|
|
|
if ($recentTags && count($recentTags) > 0) {
|
|
|
|
?>
|
|
|
|
|
|
|
|
<h2><?php echo T_('Recent Tags'); ?></h2>
|
|
|
|
<div id="recent">
|
|
|
|
<?php
|
|
|
|
$contents = '<p class="tags">';
|
2008-02-20 13:43:06 +00:00
|
|
|
|
2008-11-25 15:57:29 +00:00
|
|
|
if(!isset($user) || $user == '') {
|
2008-11-21 10:44:28 +00:00
|
|
|
$user = '';
|
|
|
|
$cat_url = createURL('tags', '%2$s');
|
2008-02-20 13:43:06 +00:00
|
|
|
}
|
|
|
|
|
2008-11-21 10:44:28 +00:00
|
|
|
foreach ($recentTags as $row) {
|
2007-12-12 16:29:16 +00:00
|
|
|
$entries = T_ngettext('bookmark', 'bookmarks', $row['bCount']);
|
|
|
|
$contents .= '<a href="'. sprintf($cat_url, $user, filter($row['tag'], 'url')) .'" title="'. $row['bCount'] .' '. $entries .'" rel="tag" style="font-size:'. $row['size'] .'">'. filter($row['tag']) .'</a> ';
|
|
|
|
}
|
|
|
|
echo $contents ."</p>\n";
|
|
|
|
?>
|
2008-04-24 08:48:57 +00:00
|
|
|
<p style="text-align:right"><a href="<?php echo createURL('populartags'); ?>"><?php echo T_('Popular Tags'); ?></a> →</p>
|
2007-12-12 16:29:16 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
}
|
2008-02-20 13:43:06 +00:00
|
|
|
?>
|