|
|
Drupal example source code file (views-view-list.tpl.php)
The views-view-list.tpl.php Drupal example source code<?php // $Id: views-view-list.tpl.php,v 1.3 2008/09/30 19:47:11 merlinofchaos Exp $ /** * @file views-view-list.tpl.php * Default simple view template to display a list of rows. * * - $title : The title of this group of rows. May be empty. * - $options['type'] will either be ul or ol. * @ingroup views_templates */ ?> <div class="item-list"> <?php if (!empty($title)) : ?> <h3><?php print $title; ?></h3> <?php endif; ?> <<?php print $options['type']; ?>> <?php foreach ($rows as $id => $row): ?> <li class="<?php print $classes[$id]; ?>"><?php print $row; ?></li> <?php endforeach; ?> </<?php print $options['type']; ?>> </div> Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views-view-list.tpl.php source code file: |
"Drupal" is a registered trademark of Dries Buytaert.
my drupal tutorials and examples
Copyright
1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.
Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.