mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-02-12 06:56:24 +00:00
![phpnut](/assets/img/avatar_default.png)
git-svn-id: https://svn.cakephp.org/repo/trunk/cake@856 3807eeeb-6ff5-0310-8944-8be069107fe0
11 lines
No EOL
230 B
Text
11 lines
No EOL
230 B
Text
<?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' )
|
|
?> |