field--field-audio.tpl.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /**
  3. * @file field.tpl.php
  4. * Default template implementation to display the value of a field.
  5. *
  6. * This file is not used and is here as a starting point for customization only.
  7. * @see theme_field()
  8. *
  9. * Available variables:
  10. * - $items: An array of field values. Use render() to output them.
  11. * - $label: The item label.
  12. * - $label_hidden: Whether the label display is set to 'hidden'.
  13. * - $classes: String of classes that can be used to style contextually through
  14. * CSS. It can be manipulated through the variable $classes_array from
  15. * preprocess functions. The default values can be one or more of the
  16. * following:
  17. * - field: The current template type, i.e., "theming hook".
  18. * - field-name-[field_name]: The current field name. For example, if the
  19. * field name is "field_description" it would result in
  20. * "field-name-field-description".
  21. * - field-type-[field_type]: The current field type. For example, if the
  22. * field type is "text" it would result in "field-type-text".
  23. * - field-label-[label_display]: The current label position. For example, if
  24. * the label position is "above" it would result in "field-label-above".
  25. *
  26. * Other variables:
  27. * - $element['#object']: The entity to which the field is attached.
  28. * - $element['#view_mode']: View mode, e.g. 'full', 'teaser'...
  29. * - $element['#field_name']: The field name.
  30. * - $element['#field_type']: The field type.
  31. * - $element['#field_language']: The field language.
  32. * - $element['#field_translatable']: Whether the field is translatable or not.
  33. * - $element['#label_display']: Position of label display, inline, above, or
  34. * hidden.
  35. * - $field_name_css: The css-compatible field name.
  36. * - $field_type_css: The css-compatible field type.
  37. * - $classes_array: Array of html class attribute values. It is flattened
  38. * into a string within the variable $classes.
  39. *
  40. * @see template_preprocess_field()
  41. * @see theme_field()
  42. */
  43. ?>
  44. <?php //dsm($items, '$items '.$label); ?>
  45. <?php if(count($items)): ?>
  46. <section class="<?php print $classes; ?>"<?php print $attributes; ?>>
  47. <?php if (!$label_hidden): ?>
  48. <div class="field-label"<?php print $title_attributes; ?>><?php print $label ?>:&nbsp;</div>
  49. <?php endif; ?>
  50. <div class="field-items"<?php print $content_attributes; ?>>
  51. <?php foreach ($items as $delta => $item): ?>
  52. <div class="field-item <?php print $delta % 2 ? 'odd' : 'even'; ?>"<?php print $item_attributes[$delta]; ?>>
  53. <audio src="<?php print render($item); ?>" controls></audio>
  54. </div>
  55. <?php endforeach; ?>
  56. </div>
  57. </section>
  58. <?php endif; ?>