php-censor/src/B8Framework/Form/View/FieldSet.phtml
2016-06-23 21:18:41 +06:00

9 lines
223 B
PHTML
Executable file

<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>