Download the PHP package ameos/ameos_form without Composer
On this page you can find all versions of the php package ameos/ameos_form. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download ameos/ameos_form
More information about ameos/ameos_form
Files in ameos/ameos_form
Download ameos/ameos_form
More information about ameos/ameos_form
Files in ameos/ameos_form
Vendor ameos
Package ameos_form
Short Description This extension provides a form api for TYPO3 extension based on extbase and fluid with validation, list, search form, etc.
License GPL-3.0-or-later
Homepage https://github.com/ameos/ameos_form
Package ameos_form
Short Description This extension provides a form api for TYPO3 extension based on extbase and fluid with validation, list, search form, etc.
License GPL-3.0-or-later
Homepage https://github.com/ameos/ameos_form
Please rate this library. Is it a good library?
Informations about the package ameos_form
Ameos Form (ameos_form)
Form api for extbase and TYPO3
Example
$mymodel = $this->myModelRepository->findByUid($modelIdentifier);
$form = \Ameos\AmeosForm\Form\Factory::make('tx_myplugin', $mymodel);
$form->add('name', 'text')->addConstraint('name', 'required', 'Name is mandatory');
$form->add('email', 'email')->addConstraint('email', 'email', 'Email is not valid');
$form->add('submit', 'submit', array('label' => 'Send'));
if($form->isSubmitted()) {
$form->bindRequest($this->request);
if($form->isValid()) {
$this->myModelRepository->add($mymodel);
$this->addFlashMessage('New record created');
$this->redirect('index')
}
}
$this->view->assign('form', $form);
Documentation
You can find all the documentation on the typo3 extension repository
All versions of ameos_form with dependencies
PHP Build Version
Package Version
Requires
typo3/cms-core Version
^12
typo3/cms-fluid Version ^12
typo3/cms-extbase Version ^12
php Version >=8.0.0
typo3/cms-fluid Version ^12
typo3/cms-extbase Version ^12
php Version >=8.0.0
The package ameos/ameos_form contains the following files
Loading the files please wait ....