root/trunk/apps/snippets/modules/tag/templates/_listAll.php

Revision 2, 390 bytes (checked in by fabien, 4 years ago)

initial import

  • Property svn:mime-type set to text/x-php
  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
Line 
1 <h2>Tags</h2>
2 <ul>
3 <?php foreach($tags as $tag => $count): ?>
4   <li>
5     <?php echo link_to($tag, 'snippet/listByTag?tag='.$tag) ?> (<?php echo $count ?>)
6     <?php if($sf_user->hasCredential('admin')): ?>
7       <?php echo link_to('[delete]', 'tag/delete?tag='.$tag, 'confim=Are you sure you want to delete '.$count.' tags ?') ?>
8     <?php endif; ?>   
9   </li> 
10 <?php endforeach; ?>
11 </ul>
Note: See TracBrowser for help on using the browser.