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

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

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


Revision 1.10 - (show annotations) (download) (as text)
Tue Apr 7 23:05:29 2009 UTC (7 months, 2 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--3-0-ALPHA1, HEAD
Branch point for: DRUPAL-6--2, DRUPAL-6--3, DRUPAL-7--3
Changes since 1.9: +2 -2 lines
File MIME type: text/x-php
#406680 by Büke Beyond: Missing clear-block caused problems in IE for Views UI.
1 <?php
2 // $Id: views-ui-edit-view.tpl.php,v 1.9 2008/10/08 00:14:01 merlinofchaos Exp $
3 /**
4 * @file views-ui-edit-view.tpl.php
5 * Template for the primary view editing window.
6 */
7 ?>
8 <div class="views-edit-view">
9 <?php if ($locked): ?>
10 <div class="view-locked">
11 <?php print t('This view is being edited by user !user, and is therefore locked from editing by others. This lock is !age old. Click here to <a href="!break">break this lock</a>.', array('!user' => $locked, '!age' => $lock_age, '!break' => $break)); ?>
12 </div>
13 <?php endif; ?>
14 <div class="views-basic-info clear-block<?php if (!empty($view->changed)) { print " changed"; }?>">
15 <?php if (!is_numeric($view->vid)): ?>
16 <div class="view-changed view-new"><?php print t('New view'); ?></div>
17 <?php else: ?>
18 <div class="view-changed"><?php print t('Changed view'); ?></div>
19 <?php endif; ?>
20 <div class="views-quick-links">
21 <?php print $quick_links ?>
22 </div>
23 <?php print t('View %name, displaying items of type <strong>@base</strong>.',
24 array('%name' => $view->name, '@base' => $base_table)); ?>
25 </div>
26
27 <?php print $tabs; ?>
28
29 <div id="views-ajax-form">
30 <div id="views-ajax-title">
31 <?php // This is initially empty ?>
32 </div>
33 <div id="views-ajax-pad">
34 <?php /* This is sent in because it is also sent out through settings and
35 needs to be consistent. */ ?>
36 <?php print $message; ?>
37 </div>
38 </div>
39
40 <?php print $save_button ?>
41
42 <h2><?php print t('Live preview'); ?></h2>
43 <div id='views-live-preview'>
44 <?php print $preview ?>
45 </div>
46 </div>

  ViewVC Help
Powered by ViewVC 1.1.2