|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/afglcweb/ny/sites/all/modules/cck/modules/fieldgroup/ |
Upload File : |
<?php
// $Id: fieldgroup-simple.tpl.php,v 1.1.2.1 2009/02/28 23:56:17 yched Exp $
/**
* @file fieldgroup-simple.tpl.php
* Default theme implementation to display the a 'simple-styled' fieldgroup.
*
* Available variables:
* - $group_name - The group name
* - $group_name_css - The css-compatible group name.
* - $label - The group label
* - $description - The group description
* - $content - The group content
*
* @see template_preprocess_fieldgroup_simple()
*/
?>
<?php if ($content) : ?>
<div class="fieldgroup <?php print $group_name_css; ?>">
<?php if ($label): ?>
<h2><?php print $label; ?></h2>
<?php if ($description): ?>
<div class="description"><?php print $description; ?></div>
<?php endif; ?>
<?php endif; ?>
<div class="content"><?php print $content; ?></div>
</div>
<?php endif; ?>