AlkantarClanX12
| Current Path : /var/www/clients/client1/web1/web/sites/all/modules/semanticviews/ |
| Current File : /var/www/clients/client1/web1/web/sites/all/modules/semanticviews/semanticviews-view-fields.tpl.php |
<?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.
*/
?>
<?php foreach ($fields as $id => $field): ?>
<?php if (!empty($field->element_type)): ?>
<<?php print $field->element_type; ?><?php print drupal_attributes($field->attributes); ?>>
<?php endif; ?>
<?php if (!empty($field->label)): ?>
<?php if (!empty($field->label_element_type)): ?>
<<?php print $field->label_element_type; ?><?php print drupal_attributes($field->label_attributes); ?>>
<?php endif; ?>
<?php print $field->label; ?>:
<?php if (!empty($field->label_element_type)): ?>
</<?php print $field->label_element_type; ?>>
<?php endif; ?>
<?php endif; ?>
<?php print $field->content; ?>
<?php if (!empty($field->element_type)): ?>
</<?php print $field->element_type; ?>>
<?php endif; ?>
<?php endforeach; ?>