You are here

views-view-row-sgrid-style.tpl.php in Sortable Grid Views Plugin 7

Same filename and directory in other branches
  1. 6 views-view-row-sgrid-style.tpl.php

views-view-unformatted.tpl.php Default simple view template to display a list of rows.

File

views-view-row-sgrid-style.tpl.php
View source
<?php

// $Id: views-view-unformatted.tpl.php,v 1.6.6.1 2010/03/29 20:05:38 dereine Exp $

/**
 * @file views-view-unformatted.tpl.php
 * Default simple view template to display a list of rows.
 *
 * @ingroup views_templates
 */
foreach ($fields as $id => $field) {
  ?>
  <?php

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

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

  }
  ?>

  <?php

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

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

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

  print $field->wrapper_suffix;
}
?>
<span class='sgrid-nid'><?php

print $sgrid_nid;
?></span>