php-censor/src/B8Framework/Form/View/Form.phtml

6 lines
219 B
PHTML
Raw Normal View History

2016-04-12 19:31:39 +02:00
<form id="<?php print $id; ?>" class="<?php print $css; ?>" action="<?php print $action; ?>" method="<?php print $method; ?>">
<?php foreach($children as $field): ?>
<?php print $field; ?>
<?php endforeach; ?>
</form>