Full ELMS Learning Network documentation
views-view-summary-unformatted.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-summary-unformatted.tpl.php
- cle7 sites/all/modules/ulmus/views/theme/views-view-summary-unformatted.tpl.php
- ecd7 sites/all/modules/ulmus/views/theme/views-view-summary-unformatted.tpl.php
- elmsmedia7 sites/all/modules/ulmus/views/theme/views-view-summary-unformatted.tpl.php
- harmony7 sites/all/modules/ulmus/views/theme/views-view-summary-unformatted.tpl.php
- icor7 sites/all/modules/ulmus/views/theme/views-view-summary-unformatted.tpl.php
- meedjum_blog7 sites/all/modules/ulmus/views/theme/views-view-summary-unformatted.tpl.php
- mooc7 sites/all/modules/ulmus/views/theme/views-view-summary-unformatted.tpl.php
Default simple view template to display a group of summary lines.
This wraps items in a span if set to inline, or a div if not.
1 string reference to the theme hook from views-view-summary-unformatted.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-summary-unformatted.tpl.phpView source
- <?php
-
- /**
- * @file
- * Default simple view template to display a group of summary lines.
- *
- * This wraps items in a span if set to inline, or a div if not.
- *
- * @ingroup views_templates
- */
- ?>
- <?php foreach ($rows as $id => $row): ?>
- <?php print (!empty($options['inline']) ? '<span' : '<div') . ' class="views-summary views-summary-unformatted">'; ?>
- <?php if (!empty($row->separator)) { print $row->separator; } ?>
- <a href="<?php print $row->url; ?>"<?php print !empty($row_classes[$id]) ? ' class="' . $row_classes[$id] . '"' : ''; ?>><?php print $row->link; ?></a>
- <?php if (!empty($options['count'])): ?>
- (<?php print $row->count; ?>)
- <?php endif; ?>
- <?php print !empty($options['inline']) ? '</span>' : '</div>'; ?>
- <?php endforeach; ?>
-