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

12345678910
  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. </li>
  8. <?php endforeach; ?>
  9. </ul>
  10. </section>