You are here

views-ui-display-tab-setting.tpl.php in Views (for Drupal 7) 7.3

Template for each row inside the "boxes" on the display query edit screen.

File

theme/views-ui-display-tab-setting.tpl.php
View source
<?php

/**
 * @file
 * Template for each row inside the "boxes" on the display query edit screen.
 */
?>
<div class="views-display-setting <?php

print $classes;
?> <?php

print $zebra;
?> clearfix" <?php

print $attributes;
?>>
  <?php

if ($description) {
  ?>
    <span class="label"><?php

  print $description;
  ?></span>
  <?php

}
?>
  <?php

if ($settings_links) {
  ?>
    <?php

  print $settings_links;
  ?>
  <?php

}
?>
</div>