materio-flag-mylists-nav-block.tpl.php 723 B

123456789101112131415161718192021
  1. <section class="mylists">
  2. <ul>
  3. <?php foreach ($flags as $name => $flag): ?>
  4. <?php //dsm($flag, 'flag') ;?>
  5. <li class="flaglist <?php print $flag->name; ?>">
  6. <?php print l($flag->title . '<span class="count">('.count($flag->flaged_content).')</span>', 'lists/'.$flag->fid, array('html'=>true,'attributes'=>array('class'=>array('open-list', $flag->name)))); ?>
  7. <?php if(flag_lists_is_owner('edit', $flag->fid)): ?>
  8. <?php
  9. print l('<i class="icon-wrench"></i>',
  10. 'flags/lists/edit/'.$flag->fid,
  11. array(
  12. 'html'=>true,
  13. 'attributes'=>array('class'=>array('edit-list', $flag->name)),
  14. )
  15. );
  16. ?>
  17. <?php endif; ?>
  18. </li>
  19. <?php endforeach; ?>
  20. </ul>
  21. </section>