You are here

views-showcase-view-showcasefields.tpl.php in Views Showcase 6

Same filename and directory in other branches
  1. 6.2 views-showcase-view-showcasefields.tpl.php

File

views-showcase-view-showcasefields.tpl.php
View source
<?php

foreach ($fields as $id => $field) {
  ?>
  <div class="views-field-<?php

  print $field->class . $field->custom_class;
  ?>">
    <?php

  if ($field->label) {
    ?>
      <label class="views-label-<?php

    print $field->class;
    ?> views-showcase-field-label">
        <?php

    print $field->label;
    ?>:
      </label>
    <?php

  }
  ?>
    <div class="views-showcase-field-content"><?php

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

}