You are here

semanticviews-view-fields.tpl.php in Semantic Views 7

Same filename and directory in other branches
  1. 6 semanticviews-view-fields.tpl.php

Default simple view template to display all the fields as a row. The template outputs a full row by looping through the $fields array, printing the field's HTML element (as configured in the UI) and the class attributes. If a label is specified for the field, it is printed wrapped in a <label> element with the same class attributes as the field's HTML element.

  • $view: The view in use.
  • $fields: an array of $field objects. Each one contains:
    • $field->content: The output of the field.
    • $field->raw: The raw data for the field, if it exists. This is NOT output safe.
    • $field->element_type: The HTML element wrapping the field content and label.
    • $field->attributes: An array of attributes for the field wrapper.
    • $field->handler: The Views field handler object controlling this field. Do not use var_export to dump this object, as it can't handle the recursion.
  • $row: The raw result object from the query, with all data it fetched.

@todo Justify this template. Excluding the PHP, this template outputs angle brackets, the label element, slashes and whitespace.

File

semanticviews-view-fields.tpl.php
View source
<?php

/**
 * @file
 * Default simple view template to display all the fields as a row. The template
 * outputs a full row by looping through the $fields array, printing the field's
 * HTML element (as configured in the UI) and the class attributes. If a label
 * is specified for the field, it is printed wrapped in a <label> element with
 * the same class attributes as the field's HTML element.
 *
 * - $view: The view in use.
 * - $fields: an array of $field objects. Each one contains:
 *   - $field->content: The output of the field.
 *   - $field->raw: The raw data for the field, if it exists. This is NOT output
 *     safe.
 *   - $field->element_type: The HTML element wrapping the field content and
 *     label.
 *   - $field->attributes: An array of attributes for the field wrapper.
 *   - $field->handler: The Views field handler object controlling this field.
 *     Do not use var_export to dump this object, as it can't handle the
 *     recursion.
 * - $row: The raw result object from the query, with all data it fetched.
 *
 * @see template_preprocess_semanticviews_view_fields()
 * @ingroup views_templates
 * @todo Justify this template. Excluding the PHP, this template outputs angle
 * brackets, the label element, slashes and whitespace.
 */
foreach ($fields as $id => $field) {
  ?>

  <?php

  if (!empty($field->element_type)) {
    ?>
    <<?php

    print $field->element_type;
    print drupal_attributes($field->attributes);
    ?>>
  <?php

  }
  ?>

    <?php

  if (!empty($field->label)) {
    ?>

      <?php

    if (!empty($field->label_element_type)) {
      ?>
        <<?php

      print $field->label_element_type;
      print drupal_attributes($field->label_attributes);
      ?>>
      <?php

    }
    ?>

          <?php

    print $field->label;
    if ($field->handler->options['element_label_colon']) {
      ?>:<?php

    }
    ?>

      <?php

    if (!empty($field->label_element_type)) {
      ?>
        </<?php

      print $field->label_element_type;
      ?>>
      <?php

    }
    ?>

    <?php

  }
  ?>

      <?php

  print $field->content;
  ?>

  <?php

  if (!empty($field->element_type)) {
    ?>
    </<?php

    print $field->element_type;
    ?>>
  <?php

  }
  ?>

<?php

}