]> projects.mako.cc - scuttle/blob - templates/sidebar.block.common.php
updated readme with information on a series of bugs I know exist
[scuttle] / templates / sidebar.block.common.php
1 <?php
2 $sf = new ServiceFactory();
3 $tagservice  =& $sf->getServiceInstance('TagService');
4 $commonTags =& $tagservice->getRelatedTagsByHash($hash);
5 $commonTags =& $tagservice->tagCloud($commonTags, 5, 90, 225, 'alphabet_asc'); 
6
7 if ($commonTags && count($commonTags) > 0) {
8 ?>
9
10 <h2><?php echo T_('Popular Tags'); ?></h2>
11 <div id="common">
12     <p class="tags">
13     <?php
14     $contents = '';
15     foreach ($commonTags as $row) {
16         $entries = T_ngettext('bookmark', 'bookmarks', $row['bCount']);
17         $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> ';
18     }
19     echo $contents ."\n";
20     ?>
21     </p>
22 </div>
23
24 <?php
25 }
26 ?>

Benjamin Mako Hill || Want to submit a patch?