views-ui-edit-view.tpl.php

  1. 3.x theme/views-ui-edit-view.tpl.php
  2. 2.x theme/views-ui-edit-view.tpl.php

views-ui-edit-view.tpl.php Template for the primary view editing window.

1 theme call to views-ui-edit-view.tpl.php
views_ui_edit_page in includes/admin.inc
The main view edit page

File

theme/views-ui-edit-view.tpl.php
View source
  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. <?php print $tabs; ?>
  26. <div id="views-ajax-form">
  27. <div id="views-ajax-title">
  28. <?php // This is initially empty ?>
  29. </div>
  30. <div id="views-ajax-pad">
  31. <?php /* This is sent in because it is also sent out through settings and
  32. needs to be consistent. */ ?>
  33. <?php print $message; ?>
  34. </div>
  35. </div>
  36. <?php print $save_button ?>
  37. <h2><?php print t('Live preview'); ?></h2>
  38. <div id='views-live-preview'>
  39. <?php print $preview ?>
  40. </div>
  41. </div>