10 lines
420 B
PHP
10 lines
420 B
PHP
<section class="mylists">
|
|
<ul>
|
|
<?php foreach ($flags as $name => $flag): ?>
|
|
<?php //dsm($flag, 'flag') ;?>
|
|
<li class="flaglist <?php print $flag->name; ?>">
|
|
<?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)))); ?>
|
|
</li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
</section>
|