tags.php 316 B

123456789101112131415
  1. <?php
  2. /**
  3. * View the tags for this image
  4. *
  5. * @uses $vars['entity']
  6. *
  7. * @author Cash Costello
  8. * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2
  9. */
  10. $tags = $vars['entity']->getPhotoTags();
  11. foreach ($tags as $tag) {
  12. echo elgg_view('photos/tagging/tag', array('tag' => $tag));
  13. }