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

6 lines
219 B
PHTML
Executable file

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