summaryrefslogtreecommitdiff
path: root/sites/all/modules/views/theme/views-ui-display-tab-bucket.tpl.php
blob: 6d51a1d4f63bb729f12c0f12cb4dfb74e7b09d73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

/**
 * @file
 * Template for each "box" on the display query edit screen.
 */
?>
<div class="<?php print $classes; ?>" <?php print $attributes; ?>>
  <?php print $item_help_icon; ?>
  <?php if(!empty($actions)) : ?>
    <?php print $actions; ?>
  <?php endif; ?>
  <?php if (!empty($title)) : ?>
    <h3><?php print $title; ?></h3>
  <?php endif; ?>
  <?php print $content; ?>
</div>