-
Notifications
You must be signed in to change notification settings - Fork 1
/
views-ui-list-views.tpl.php
46 lines (46 loc) · 1.44 KB
/
views-ui-list-views.tpl.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/**
* @file
*
* Displays the list of views on the administration screen.
*/
?>
<p><?php print $help; ?></p>
<?php print $widgets; ?>
<?php foreach ($views as $view): ?>
<table class="views-entry <?php print $view->classes; ?>">
<tbody>
<tr>
<td class="view-name">
<?php print $help_type_icon; ?>
<?php print t('<em>@type</em> @base view: <strong>@view</strong>', array('@type' => $view->type, '@view' => $view->name, '@base' => $view->base)); ?>
<?php if (!empty($view->tag)): ?>
(<?php print $view->tag; ?>)
<?php endif; ?>
</td>
<td class="view-ops"><?php print $view->ops ?></td>
</tr>
<tr>
<td>
<?php if ($view->title): ?>
<?php print t('Title: @title', array('@title' => $view->title)); ?> <br />
<?php endif; ?>
<?php if ($view->path): ?>
<?php print t('Path: !path', array('!path' => $view->path)); ?> <br />
<?php endif; ?>
<?php if ($view->displays): ?>
<em><?php print $view->displays; ?> </em><br />
<?php endif; ?>
</td>
<td colspan="2" class="description">
<?php print $view->description; ?>
</td>
</tr>
<tr>
<td colspan="2" class="views_analytics">
<?php print views_analytics_theme_view_analytics($view); ?>
</td>
</tr>
</tbody>
</table>
<?php endforeach; ?>