root / htmltest / sites / all / modules / views / theme / views-ui-display-tab-bucket.tpl.php @ a5572547
1 |
<?php
|
---|---|
2 |
|
3 |
/**
|
4 |
* @file
|
5 |
* Template for each "box" on the display query edit screen.
|
6 |
*/
|
7 |
?>
|
8 |
<div class="<?php print $classes; ?>" <?php print $attributes; ?>> |
9 |
<?php print $item_help_icon; ?> |
10 |
<?php if(!empty($actions)) : ?> |
11 |
<?php print $actions; ?> |
12 |
<?php endif; ?> |
13 |
<?php if (!empty($title)) : ?> |
14 |
<h3><?php print $title; ?></h3> |
15 |
<?php endif; ?> |
16 |
<?php print $content; ?> |
17 |
</div>
|