source: sipes/modules_contrib/views/theme/views-ui-edit-view.tpl.php @ a8b1f3f

stableversion-3.0
Last change on this file since a8b1f3f was 177a560, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio de modulos contribuidos de drupal

  • Propiedad mode establecida a 100644
File size: 1.5 KB
Línea 
1<?php
2/**
3 * @file views-ui-edit-view.tpl.php
4 * Template for the primary view editing window.
5 */
6?>
7<div class="views-edit-view">
8  <?php if ($locked): ?>
9    <div class="view-locked">
10       <?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)); ?>
11    </div>
12  <?php endif; ?>
13  <div class="views-basic-info clear-block<?php if (!empty($view->changed)) { print " changed"; }?>">
14    <?php if (!is_numeric($view->vid)): ?>
15      <div class="view-changed view-new"><?php print t('New view'); ?></div>
16    <?php else: ?>
17      <div class="view-changed"><?php print t('Changed view'); ?></div>
18    <?php endif; ?>
19    <div class="views-quick-links">
20      <?php print $quick_links ?>
21    </div>
22    <?php print t('View %name, displaying items of type <strong>@base</strong>.',
23        array('%name' => $view->name, '@base' => $base_table)); ?>
24  </div>
25
26  <?php print $tabs; ?>
27
28  <div id="views-ajax-form">
29    <div id="views-ajax-title">
30      <?php // This is initially empty ?>
31    </div>
32    <div id="views-ajax-pad">
33      <?php /* This is sent in because it is also sent out through settings and
34      needs to be consistent. */ ?>
35      <?php print $message; ?>
36    </div>
37  </div>
38
39  <?php print $save_button ?>
40
41  <h2><?php print t('Live preview'); ?></h2>
42  <div id='views-live-preview'>
43    <?php print $preview ?>
44  </div>
45</div>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.