php-censor/src/B8Framework/Form/View/FieldSet.phtml
2017-01-14 16:12:53 +07:00

10 lines
251 B
PHTML

<fieldset class="row <?php print $css; ?>">
<?php if ($label): ?>
<legend><?php print $label; ?></legend>
<?php endif; ?>
<?php foreach ($children as $field): ?>
<?php print $field; ?>
<?php endforeach; ?>
</fieldset>