comparison eva-display-entity-view.tpl.php @ 0:65b7937bab7b

intertial
author dwinter
date Fri, 20 Jun 2014 09:39:25 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:65b7937bab7b
1 <?php
2 /**
3 * @file eva-display-entity-view.tpl.php
4 * Entity content view template
5 *
6 * Variables available:
7 * - $classes_array: An array of classes determined in
8 * template_preprocess_views_view(). Default classes are:
9 * .view
10 * .view-[css_name]
11 * .view-id-[view_name]
12 * .view-display-id-[display_name]
13 * .view-dom-id-[dom_id]
14 * - $classes: A string version of $classes_array for use in the class attribute
15 * - $css_name: A css-safe version of the view name.
16 * - $css_class: The user-specified classes names, if any
17 * - $header: The view header
18 * - $footer: The view footer
19 * - $rows: The results of the view query, if any
20 * - $empty: The empty text to display if the view is empty
21 * - $pager: The pager next/prev links to display, if any
22 * - $exposed: Exposed widget form/info to display
23 * - $feed_icon: Feed icon to display, if any
24 * - $more: A link to view more, if any
25 *
26 * @ingroup views_templates
27 */
28 ?>
29 <div class="<?php print $classes; ?>">
30 <?php print render($title_prefix); ?>
31 <?php if ($title): ?>
32 <h2 class="title"><?php print $title; ?></h2>
33 <?php endif; ?>
34 <?php print render($title_suffix); ?>
35
36 <?php if ($header): ?>
37 <div class="view-header">
38 <?php print $header; ?>
39 </div>
40 <?php endif; ?>
41 <?php if ($pager): ?>
42 <?php print $pager; ?>
43 <?php endif; ?>
44
45 <?php if ($attachment_before): ?>
46 <div class="attachment attachment-before">
47 <?php print $attachment_before; ?>
48 </div>
49 <?php endif; ?>
50
51 <?php if ($rows): ?>
52 <div class="view-content">
53 <?php print $rows; ?>
54 </div>
55 <?php elseif ($empty): ?>
56 <div class="view-empty">
57 <?php print $empty; ?>
58 </div>
59 <?php endif; ?>
60
61 <?php if ($pager): ?>
62 <?php print $pager; ?>
63 <?php endif; ?>
64
65 <?php if ($attachment_after): ?>
66 <div class="attachment attachment-after">
67 <?php print $attachment_after; ?>
68 </div>
69 <?php endif; ?>
70
71 <?php if ($more): ?>
72 <?php print $more; ?>
73 <?php endif; ?>
74
75 <?php if ($footer): ?>
76 <div class="view-footer">
77 <?php print $footer; ?>
78 </div>
79 <?php endif; ?>
80
81 <?php if ($feed_icon): ?>
82 <div class="feed-icon">
83 <?php print $feed_icon; ?>
84 </div>
85 <?php endif; ?>
86
87 </div> <?php /* class view */ ?>