You are here

semantic-field.tpl.php in Semantic Fields 7

semantic_field.tpl.php Default template implementation to display the value of a field.

This file is not used and is here as a starting point for customization only.

Available variables:

  • $items: An array of field values. Use render() to output them.
  • $label: The item label.
  • $label_hidden: Whether the label display is set to 'hidden'.
  • $classes: String of classes that can be used to style contextually through CSS. It can be manipulated through the variable $classes_array from preprocess functions. The default values can be one or more of the following:

    • field: The current template type, i.e., "theming hook".
    • field-name-[field_name]: The current field name. For example, if the field name is "field_description" it would result in "field-name-field-description".
    • field-type-[field_type]: The current field type. For example, if the field type is "text" it would result in "field-type-text".
    • field-label-[label_display]: The current label position. For example, if the label position is "above" it would result in "field-label-above".

Other variables:

  • $element['#object']: The entity to which the field is attached.
  • $element['#view_mode']: View mode, e.g. 'full', 'teaser'...
  • $element['#field_name']: The field name.
  • $element['#field_type']: The field type.
  • $element['#field_language']: The field language.
  • $element['#field_translatable']: Whether the field is translatable or not.
  • $element['#label_display']: Position of label display, inline, above, or hidden.
  • $field_name_css: The css-compatible field name.
  • $field_type_css: The css-compatible field type.
  • $classes_array: Array of html class attribute values. It is flattened into a string within the variable $classes.

File

theme/semantic-field.tpl.php
View source
<?php

/**
 * @file semantic_field.tpl.php
 * Default template implementation to display the value of a field.
 *
 * This file is not used and is here as a starting point for customization only.
 * @see theme_field()
 *
 * Available variables:
 * - $items: An array of field values. Use render() to output them.
 * - $label: The item label.
 * - $label_hidden: Whether the label display is set to 'hidden'.
 * - $classes: String of classes that can be used to style contextually through
 *   CSS. It can be manipulated through the variable $classes_array from
 *   preprocess functions. The default values can be one or more of the
 *   following:
 *   - field: The current template type, i.e., "theming hook".
 *   - field-name-[field_name]: The current field name. For example, if the
 *     field name is "field_description" it would result in
 *     "field-name-field-description".
 *   - field-type-[field_type]: The current field type. For example, if the
 *     field type is "text" it would result in "field-type-text".
 *   - field-label-[label_display]: The current label position. For example, if
 *     the label position is "above" it would result in "field-label-above".
 *
 * Other variables:
 * - $element['#object']: The entity to which the field is attached.
 * - $element['#view_mode']: View mode, e.g. 'full', 'teaser'...
 * - $element['#field_name']: The field name.
 * - $element['#field_type']: The field type.
 * - $element['#field_language']: The field language.
 * - $element['#field_translatable']: Whether the field is translatable or not.
 * - $element['#label_display']: Position of label display, inline, above, or
 *   hidden.
 * - $field_name_css: The css-compatible field name.
 * - $field_type_css: The css-compatible field type.
 * - $classes_array: Array of html class attribute values. It is flattened
 *   into a string within the variable $classes.
 *
 * @see template_preprocess_field()
 * @see semantic_fields_preprocess_field()
 * @see theme_field()
 */
?>
<!--
THIS FILE IS NOT USED AND IS HERE AS A STARTING POINT FOR CUSTOMIZATION ONLY.
See http://api.drupal.org/api/function/theme_field/7 for details.
After copying this file to your theme's folder and customizing it, remove this
HTML comment.
-->
<?php

if (!empty($field_prefix)) {
  print $field_prefix;
}
if (!empty($field_element)) {
  ?>
<<?php

  print $field_element;
  ?> class="<?php

  print $classes;
  ?>"<?php

  print $attributes;
  ?>>
<?php

}
?>
  <?php

if (!$label_hidden) {
  ?>
    <?php

  if (!empty($label_element)) {
    ?>
    <<?php

    print $label_element;
    ?> class="<?php

    print $label_classes;
    ?>"<?php

    print $title_attributes;
    ?>>
    <?php

  }
  ?>
      <?php

  print $label . $label_suffix;
  ?>&nbsp;
    <?php

  if (!empty($label_element)) {
    ?>
    </<?php

    print $label_element;
    ?>>
    <?php

  }
  ?>
  <?php

}
?>
  <?php

if (!empty($content_element)) {
  ?>
  <<?php

  print $content_element;
  ?> class="<?php

  print $content_classes;
  ?>"<?php

  print $content_attributes;
  ?>>
  <?php

}
?>
    <?php

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

  print $item_element;
  ?> class="<?php

  print $item_classes[$delta];
  ?>"<?php

  print $item_attributes[$delta];
  ?>>
        <?php

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

  print $item_element;
  ?>>

      <?php

  if (!empty($item_separator) && $delta < count($items) - 1) {
    ?>
      <?php

    print $item_separator;
    ?>
      <?php

  }
  ?>
    <?php

}
?>
  <?php

if (!empty($content_element)) {
  ?>
  </<?php

  print $content_element;
  ?>>
  <?php

}
if (!empty($field_element)) {
  ?>
</<?php

  print $field_element;
  ?>>
<?php

}
if (!empty($field_suffix)) {
  print $field_suffix;
}