fieldset.tpl.php 405 B

12345678
  1. <fieldset <?php if (!empty($attributes)) print drupal_attributes($attributes) ?>>
  2. <?php if (!empty($title)): ?>
  3. <legend><span class='<?php print $hook ?>-title fieldset-legend'><?php print $title ?></span></legend>
  4. <?php endif; ?>
  5. <?php if (!empty($content)): ?>
  6. <div class='<?php print $hook ?>-content fieldset-wrapper clearfix'><?php print $content ?></div>
  7. <?php endif; ?>
  8. </fieldset>