field--fences-s.tpl.php in Fences 7
Same filename and directory in other branches
field--fences-s.tpl.php Wrap each field value in the <s> element.
File
templates/field--fences-s.tpl.phpView source
<?php
/**
* @file field--fences-s.tpl.php
* Wrap each field value in the <s> element.
*
* @see http://developers.whatwg.org/text-level-semantics.html#the-s-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) {
?>
<s class="<?php
print $classes;
?>"<?php
print $attributes;
?>>
<?php
print render($item);
?>
</s>
<?php
}