/[drupal]/contributions/modules/views/theme/views-ui-list-views.tpl.php
ViewVC logotype

Contents of /contributions/modules/views/theme/views-ui-list-views.tpl.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.6 - (show annotations) (download) (as text)
Tue Oct 28 18:11:43 2008 UTC (12 months, 3 weeks ago) by merlinofchaos
Branch: MAIN
CVS Tags: DRUPAL-6--2-7, DRUPAL-6--2-6, DRUPAL-6--2-5, DRUPAL-6--2-4, DRUPAL-6--2-3, DRUPAL-6--2-2, DRUPAL-6--3-0-ALPHA1, HEAD
Branch point for: DRUPAL-6--2, DRUPAL-6--3, DRUPAL-7--3
Changes since 1.5: +2 -2 lines
File MIME type: text/x-php
#324378: Minor usability improvements to the list page.
1 <?php
2 // $Id: views-ui-list-views.tpl.php,v 1.5 2008/05/08 05:29:30 merlinofchaos Exp $
3 /**
4 * @file
5 *
6 * Displays the list of views on the administration screen.
7 */
8 ?>
9 <p><?php print $help; ?></p>
10 <?php print $widgets; ?>
11 <?php foreach ($views as $view): ?>
12 <table class="views-entry <?php print $view->classes; ?>">
13 <tbody>
14 <tr>
15 <td class="view-name">
16 <?php print $help_type_icon; ?>
17 <?php print t('<em>@type</em> @base view: <strong>@view</strong>', array('@type' => $view->type, '@view' => $view->name, '@base' => $view->base)); ?>
18 <?php if (!empty($view->tag)): ?>
19 &nbsp;(<?php print $view->tag; ?>)
20 <?php endif; ?>
21 </td>
22 <td class="view-ops"><?php print $view->ops ?></td>
23 </tr>
24 <tr>
25 <td>
26 <?php if ($view->title): ?>
27 <?php print t('Title: @title', array('@title' => $view->title)); ?> <br />
28 <?php endif; ?>
29 <?php if ($view->path): ?>
30 <?php print t('Path: !path', array('!path' => $view->path)); ?> <br />
31 <?php endif; ?>
32 <?php if ($view->displays): ?>
33 <em><?php print $view->displays; ?> </em><br />
34 <?php endif; ?>
35 </td>
36 <td colspan="2" class="description">
37 <?php print $view->description; ?>
38 </td>
39 </tr>
40 </tbody>
41 </table>
42 <?php endforeach; ?>

  ViewVC Help
Powered by ViewVC 1.1.2