summaryrefslogtreecommitdiff
path: root/data/templates/sidebar.block.popular.php
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2011-05-25 19:43:36 +0200
committerChristian Weiske <cweiske@cweiske.de>2011-05-25 19:43:36 +0200
commit5ba53394fcda4ae9cfa9af52b37fb67517deeb5a (patch)
tree4416be7903a2b339382e9f933284f50797edc239 /data/templates/sidebar.block.popular.php
parent63b0a4b8cb38a8a7c41410900b9dfcc84e6a33a9 (diff)
downloadsemanticscuttle-5ba53394fcda4ae9cfa9af52b37fb67517deeb5a.tar.gz
semanticscuttle-5ba53394fcda4ae9cfa9af52b37fb67517deeb5a.tar.bz2
implement request #1989987: theme support. merge themes branch with --squash
Diffstat (limited to 'data/templates/sidebar.block.popular.php')
-rw-r--r--data/templates/sidebar.block.popular.php44
1 files changed, 0 insertions, 44 deletions
diff --git a/data/templates/sidebar.block.popular.php b/data/templates/sidebar.block.popular.php
deleted file mode 100644
index 50756c0..0000000
--- a/data/templates/sidebar.block.popular.php
+++ /dev/null
@@ -1,44 +0,0 @@
-<?php
-/* Service creation: only useful services are created */
-$b2tservice =SemanticScuttle_Service_Factory::get('Bookmark2Tag');
-
-
-if(!isset($user)) {
- $user = '';
-}
-if(!isset($userid)) {
- $userid = NULL;
-}
-
-$logged_on_userid = $userservice->getCurrentUserId();
-if ($logged_on_userid === false) {
- $logged_on_userid = NULL;
-}
-$popularTags =& $b2tservice->getPopularTags($userid, $popCount, $logged_on_userid);
-$popularTags =& $b2tservice->tagCloud($popularTags, 5, 90, 225, 'alphabet_asc');
-
-if ($popularTags && count($popularTags) > 0) {
-?>
-
-<h2><?php echo T_('Popular Tags'); ?></h2>
-<div id="popular">
- <p class="tags">
- <?php
- $contents = '';
-
- if(strlen($user)==0) {
- $cat_url = createURL('tags', '%2$s');
- }
-
- foreach ($popularTags as $row) {
- $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 ."\n";
- ?>
- </p>
-</div>
-
-<?php
-}
-?>