Full ELMS Learning Network documentation
views-view-list.tpl.php
×
Error message
User warning: The following module is missing from the file system: theme/theme. For information about how to fix this, see the documentation page. in _drupal_trigger_error_with_delayed_logging() (line 1156 of /var/www/html/elmsln_community/api.elmsln.org/includes/bootstrap.inc).- cis7 sites/all/modules/ulmus/views/theme/views-view-list.tpl.php
- cle7 sites/all/modules/ulmus/views/theme/views-view-list.tpl.php
- ecd7 sites/all/modules/ulmus/views/theme/views-view-list.tpl.php
- elmsmedia7 sites/all/modules/ulmus/views/theme/views-view-list.tpl.php
- harmony7 sites/all/modules/ulmus/views/theme/views-view-list.tpl.php
- icor7 sites/all/modules/ulmus/views/theme/views-view-list.tpl.php
- meedjum_blog7 sites/all/modules/ulmus/views/theme/views-view-list.tpl.php
- mooc7 sites/all/modules/ulmus/views/theme/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.
1 string reference to the theme hook from views-view-list.tpl.php
Note: this list is generated by looking for the string for this theme hook, so it may include some references that are not actually using this theme hook.
- views_views_plugins in sites/
all/ modules/ ulmus/ views/ includes/ plugins.inc - Implements hook_views_plugins().
File
sites/all/modules/ulmus/views/theme/views-view-list.tpl.phpView source
- <?php
-
- /**
- * @file
- * 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
- */
- ?>
- <?php print $wrapper_prefix; ?>
- <?php if (!empty($title)) : ?>
- <h3><?php print $title; ?></h3>
- <?php endif; ?>
- <?php print $list_type_prefix; ?>
- <?php foreach ($rows as $id => $row): ?>
- <li class="<?php print $classes_array[$id]; ?>"><?php print $row; ?></li>
- <?php endforeach; ?>
- <?php print $list_type_suffix; ?>
- <?php print $wrapper_suffix; ?>
-