Projet

Général

Profil

Paste
Télécharger (1,48 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / views / theme / views-ui-edit-view.tpl.php @ 5d12d676

1
<?php
2

    
3
/**
4
 * @file
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>.',
12
        array('!user' => $locked, '!age' => $lock_age, '!break' => $break)); ?>
13
    </div>
14
  <?php endif; ?>
15
  <div class="views-basic-info clearfix<?php if (!empty($view->changed)): ?> changed<?php endif; ?>">
16
    <?php if (!is_numeric($view->vid)): ?>
17
      <div class="view-changed view-new"><?php print t('New view'); ?></div>
18
    <?php else: ?>
19
      <div class="view-changed"><?php print t('Changed view'); ?></div>
20
    <?php endif; ?>
21
    <div class="views-quick-links">
22
      <?php print $quick_links ?>
23
    </div>
24
    <?php print t('View %name, displaying items of type <strong>@base</strong>.',
25
        array('%name' => $view->name, '@base' => $base_table)); ?>
26
  </div>
27

    
28
  <?php print $tabs; ?>
29

    
30
  <div id="views-ajax-form">
31
    <div id="views-ajax-title">
32
      <?php
33
// This is initially empty. ?>
34
    </div>
35
    <div id="views-ajax-pad">
36
      <?php /* This is sent in because it is also sent out through settings and
37
      needs to be consistent. */ ?>
38
      <?php print $message; ?>
39
    </div>
40
  </div>
41

    
42
  <?php print $save_button ?>
43

    
44
  <h2><?php print t('Live preview'); ?></h2>
45
  <div id='views-live-preview'>
46
    <?php print $preview ?>
47
  </div>
48
</div>