| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 // $Id: box.tpl.php,v 1.2 2008/09/14 11:56:34 johnalbin Exp $ 3 4 /** 5 * @file box.tpl.php 6 * 7 * Theme implementation to display a box. 8 * 9 * Available variables: 10 * - $title: Box title. 11 * - $content: Box content. 12 * 13 * @see template_preprocess() 14 */ 15 ?> 16 <div class="box"><div class="box-inner"> 17 18 <?php if ($title): ?> 19 <h2 class="title"><?php print $title; ?></h2> 20 <?php endif; ?> 21 22 <div class="content"> 23 <?php print $content; ?> 24 </div> 25 26 </div></div> <!-- /box-inner, /box -->
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 |