You are here

field--fences-pre.tpl.php in Fences 7

Same filename and directory in other branches
  1. 7.2 templates/field--fences-pre.tpl.php

field--fences-pre.tpl.php Wrap each field value in the <pre> element.

File

templates/field--fences-pre.tpl.php
View source
<?php

/**
 * @file field--fences-pre.tpl.php
 * Wrap each field value in the <pre> element.
 *
 * @see http://developers.whatwg.org/grouping-content.html#the-pre-element
 */
if ($element['#label_display'] == 'inline') {
  ?>
  <span class="field-label"<?php

  print $title_attributes;
  ?>>
    <?php

  print $label;
  ?>:
  </span>
<?php

}
elseif ($element['#label_display'] == 'above') {
  ?>
  <h3 class="field-label"<?php

  print $title_attributes;
  ?>>
    <?php

  print $label;
  ?>
  </h3>
<?php

}
?>

<?php

foreach ($items as $delta => $item) {
  ?>
  <pre class="<?php

  print $classes;
  ?>"<?php

  print $attributes;
  ?>>
    <?php

  print render($item);
  ?>
  </pre>
<?php

}