cakephp2-php8/libs/controllers/templates/scaffolds/new.thtml

11 lines
230 B
Text
Raw Normal View History

<?php
uses('helpers/form');
$form = new FormHelper();
echo $html->formTag('/'.Inflector::underscore($this->name).'/create');
echo $form->generateFields( $html, $fieldNames );
echo $form->generateSubmitDiv( $html, 'Add' )
?>