• Main Page
  • Related Pages
  • Modules
  • Classes
  • Files
  • File List
  • File Members

theme/views-view-grid.tpl.php

Go to the documentation of this file.
00001 <?php
00011 ?>
00012 <?php if (!empty($title)) : ?>
00013   <h3><?php print $title; ?></h3>
00014 <?php endif; ?>
00015 <table class="<?php print $class; ?>"<?php print $attributes; ?>>
00016   <tbody>
00017     <?php foreach ($rows as $row_number => $columns): ?>
00018       <tr class="<?php print $row_classes[$row_number]; ?>">
00019         <?php foreach ($columns as $column_number => $item): ?>
00020           <td class="<?php print $column_classes[$row_number][$column_number]; ?>">
00021             <?php print $item; ?>
00022           </td>
00023         <?php endforeach; ?>
00024       </tr>
00025     <?php endforeach; ?>
00026   </tbody>
00027 </table>

Generated on Sun Feb 26 2012 12:52:52 for Views by  doxygen 1.7.1