| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
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>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |