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

1234567891011121314151617
  1. <?php
  2. /**
  3. * @file
  4. * Template for each "box" on the display query edit screen.
  5. */
  6. ?>
  7. <div class="<?php print $classes; ?>" <?php print $attributes; ?>>
  8. <?php print $item_help_icon; ?>
  9. <?php if (!empty($actions)) : ?>
  10. <?php print $actions; ?>
  11. <?php endif; ?>
  12. <?php if (!empty($title)) : ?>
  13. <h3><?php print $title; ?></h3>
  14. <?php endif; ?>
  15. <?php print $content; ?>
  16. </div>