| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * @file box.tpl.php 5 * 6 * Theme implementation to display a box. 7 * 8 * Available variables: 9 * - $title: Box title. 10 * - $content: Box content. 11 * 12 * @see template_preprocess() 13 */ 14 ?> 15 <div class="box"> 16 17 <?php if ($title): ?> 18 <h2><?php print $title ?></h2> 19 <?php endif; ?> 20 21 <div class="content"><?php print $content ?></div> 22 </div>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |