Exemplo n.º 1
0
    <?php 
    foreach ($myTags as $etiqueta) {
        ?>
      <li class="review">
        <a href="<?php 
        echo url_for('general/search?tag=' . armorTag($etiqueta));
        ?>
"><?php 
        echo $etiqueta;
        ?>
</a>
        <?php 
        echo "(" . $etiqueta->getCount() . ")";
        ?>
        <?php 
        if (TagManager::isMine($etiqueta, $entity)) {
            ?>
        	<a href="#" class="remove" onclick="return removeTag(<?php 
            echo $etiqueta->getId();
            ?>
)">X</a>        	
        <?php 
        }
        ?>
      </li>
    <?php 
    }
    ?>
    
	<?php 
    include_component_slot('tagList', array('entity' => $entity, 'myCount' => count($myTags)));