Community Documentation

box.tpl.php

  1. drupal
    1. 4.7 box.tpl.php
    2. 4.7 box.tpl.php
    3. 4.7 box.tpl.php
    4. 5 box.tpl.php
    5. 5 box.tpl.php
    6. 5 box.tpl.php
    7. 6 box.tpl.php
    8. 6 box.tpl.php
    9. 6 box.tpl.php

box.tpl.php

Theme implementation to display a box.

Available variables:

  • $title: Box title.
  • $content: Box content.

See also

template_preprocess()

View source
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

/**
 * @file box.tpl.php
 *
 * Theme implementation to display a box.
 *
 * Available variables:
 * - $title: Box title.
 * - $content: Box content.
 *
 * @see template_preprocess()
 */
?>
<div class="box">

<?php if ($title): ?>
  <h2><?php print $title ?></h2>
<?php endif; ?>

  <div class="content"><?php print $content ?></div>
</div>
Login or register to post comments