Full ELMS Learning Network documentation
eva-display-entity-view.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/eva/eva-display-entity-view.tpl.php
- cle7 sites/all/modules/ulmus/eva/eva-display-entity-view.tpl.php
- ecd7 sites/all/modules/ulmus/eva/eva-display-entity-view.tpl.php
- elmsmedia7 sites/all/modules/ulmus/eva/eva-display-entity-view.tpl.php
- harmony7 sites/all/modules/ulmus/eva/eva-display-entity-view.tpl.php
- icor7 sites/all/modules/ulmus/eva/eva-display-entity-view.tpl.php
- meedjum_blog7 sites/all/modules/ulmus/eva/eva-display-entity-view.tpl.php
- mooc7 sites/all/modules/ulmus/eva/eva-display-entity-view.tpl.php
eva-display-entity-view.tpl.php Entity content view template
Variables available:
- $classes_array: An array of classes determined in template_preprocess_views_view(). Default classes are: .view .view-[css_name] .view-id-[view_name] .view-display-id-[display_name] .view-dom-id-[dom_id]
- $classes: A string version of $classes_array for use in the class attribute
- $css_name: A css-safe version of the view name.
- $css_class: The user-specified classes names, if any
- $header: The view header
- $footer: The view footer
- $rows: The results of the view query, if any
- $empty: The empty text to display if the view is empty
- $pager: The pager next/prev links to display, if any
- $exposed: Exposed widget form/info to display
- $feed_icon: Feed icon to display, if any
- $more: A link to view more, if any
1 string reference to the theme hook from eva-display-entity-view.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.
- eva_views_plugins in sites/
all/ modules/ ulmus/ eva/ eva.views.inc - Implements hook_views_plugins().
File
sites/all/modules/ulmus/eva/eva-display-entity-view.tpl.phpView source
- <?php
- /**
- * @file eva-display-entity-view.tpl.php
- * Entity content view template
- *
- * Variables available:
- * - $classes_array: An array of classes determined in
- * template_preprocess_views_view(). Default classes are:
- * .view
- * .view-[css_name]
- * .view-id-[view_name]
- * .view-display-id-[display_name]
- * .view-dom-id-[dom_id]
- * - $classes: A string version of $classes_array for use in the class attribute
- * - $css_name: A css-safe version of the view name.
- * - $css_class: The user-specified classes names, if any
- * - $header: The view header
- * - $footer: The view footer
- * - $rows: The results of the view query, if any
- * - $empty: The empty text to display if the view is empty
- * - $pager: The pager next/prev links to display, if any
- * - $exposed: Exposed widget form/info to display
- * - $feed_icon: Feed icon to display, if any
- * - $more: A link to view more, if any
- *
- * @ingroup views_templates
- */
- ?>
- <div class="<?php print $classes; ?>">
- <?php print render($title_prefix); ?>
- <?php if ($title): ?>
- <h2 class="title"><?php print $title; ?></h2>
- <?php endif; ?>
- <?php print render($title_suffix); ?>
-
- <?php if ($header): ?>
- <div class="view-header">
- <?php print $header; ?>
- </div>
- <?php endif; ?>
-
- <?php if ($attachment_before): ?>
- <div class="attachment attachment-before">
- <?php print $attachment_before; ?>
- </div>
- <?php endif; ?>
-
- <?php if ($rows): ?>
- <div class="view-content">
- <?php print $rows; ?>
- </div>
- <?php elseif ($empty): ?>
- <div class="view-empty">
- <?php print $empty; ?>
- </div>
- <?php endif; ?>
-
- <?php if ($pager): ?>
- <?php print $pager; ?>
- <?php endif; ?>
-
- <?php if ($attachment_after): ?>
- <div class="attachment attachment-after">
- <?php print $attachment_after; ?>
- </div>
- <?php endif; ?>
-
- <?php if ($more): ?>
- <?php print $more; ?>
- <?php endif; ?>
-
- <?php if ($footer): ?>
- <div class="view-footer">
- <?php print $footer; ?>
- </div>
- <?php endif; ?>
-
- <?php if ($feed_icon): ?>
- <div class="feed-icon">
- <?php print $feed_icon; ?>
- </div>
- <?php endif; ?>
-
- </div> <?php /* class view */ ?>
-