root / drupal7 / sites / all / themes / blogbuzz / templates / field--taxonomy-term-reference.tpl.php @ 4b706e38
1 |
<?php
|
---|---|
2 |
// $Id: field--taxonomy-term-reference.tpl.php,v 1.1.2.1 2011/01/23 05:03:51 antsin Exp $
|
3 |
/**
|
4 |
* @file
|
5 |
* Output for taxonomy term reference fields.
|
6 |
*/
|
7 |
?>
|
8 |
|
9 |
<div class="<?php print $classes; ?>"<?php print $attributes; ?>> |
10 |
<?php if (!$label_hidden) : ?> |
11 |
<h3 class="field-label"<?php print $title_attributes; ?>><?php print $label ?> </h3> |
12 |
<?php endif; ?> |
13 |
<span class="field-items"<?php print $content_attributes; ?>> |
14 |
<?php $num_fields = count($items); ?> |
15 |
<?php $i = 1; ?> |
16 |
<?php foreach ($items as $delta => $item) : ?> |
17 |
<?php print render($item); ?><?php $i != $num_fields ? print ', ' : ''; ?> |
18 |
<?php $i++; ?> |
19 |
<?php endforeach; ?> |
20 |
</span>
|
21 |
</div>
|