views-ui-display-tab-bucket.tpl.php

Template for each "box" on the display query edit screen.

File

drupal/core/modules/views/views_ui/theme/views-ui-display-tab-bucket.tpl.php
View source
<?php

/**
 * @file
 * Template for each "box" on the display query edit screen.
 */
?>
<div <?php

print $attributes;
?>>
  <?php

if (!empty($title)) {
  ?>
    <h3><?php

  print $title;
  ?></h3>
  <?php

}
?>
  <?php

print $content;
?>
  <?php

if (!empty($actions)) {
  ?>
    <?php

  print $actions;
  ?>
  <?php

}
?>
</div>