Last active
August 9, 2021 14:13
-
-
Save grizzm0/c5ff73d8a8df7a4387fd to your computer and use it in GitHub Desktop.
Best practice form/input-filter setup for ZF3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Application\Entity; | |
/** | |
* Class Foo | |
* | |
* @package Application\Entity | |
*/ | |
class Foo | |
{ | |
/** | |
* @var int | |
*/ | |
protected $id; | |
/** | |
* @var string | |
*/ | |
protected $email; | |
/** | |
* @return int | |
*/ | |
public function getId() | |
{ | |
return $this->id; | |
} | |
/** | |
* @return string | |
*/ | |
public function getEmail() | |
{ | |
return $this->email; | |
} | |
/** | |
* @param string $email | |
*/ | |
public function setEmail($email) | |
{ | |
$this->email = $email; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Application\Form; | |
use Zend\Form\Element\Email; | |
use Zend\Form\Form; | |
/** | |
* Class FooForm | |
* | |
* @package Application\Form | |
*/ | |
class FooForm extends Form | |
{ | |
const EMAIL = 'email'; | |
/** | |
* {@inheritdoc} | |
*/ | |
public function init() | |
{ | |
$this->add([ | |
'name' => self::EMAIL, | |
'type' => Email::class, | |
'options' => [ | |
'label' => self::EMAIL, | |
], | |
]); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Application\Factory\Form; | |
use Application\Entity\Foo; | |
use Application\Form\FooForm; | |
use Application\InputFilter\FooInputFilter; | |
use Interop\Container\ContainerInterface; | |
use Zend\Stdlib\Hydrator\ClassMethods; | |
/** | |
* Class FooFormFactory | |
* | |
* @package Application\Factory\Form | |
*/ | |
class FooFormFactory | |
{ | |
/** | |
* {@inheritdoc} | |
*/ | |
public function __invoke(ContainerInterface $container) | |
{ | |
$form = new FooForm('foo'); | |
$form->setHydrator($container->get('HydratorManager')->get(ClassMethods::class)); | |
$form->setInputFilter($container->get('InputFilterManager')->get(FooInputFilter::class)); | |
$form->setObject(new Foo()); | |
return $form; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Application\InputFilter; | |
use Application\Form\FooForm; | |
use Zend\Filter\StringToLower; | |
use Zend\Filter\StringTrim; | |
use Zend\InputFilter\InputFilter; | |
use Zend\Validator\EmailAddress; | |
/** | |
* Class FooInputFilter | |
* | |
* @package Application\InputFilter | |
*/ | |
class FooInputFilter extends InputFilter | |
{ | |
/** | |
* {@inheritdoc} | |
*/ | |
public function init() | |
{ | |
$this->add([ | |
'name' => FooForm::EMAIL, | |
'required' => true, | |
'filters' => [ | |
['name' => StringToLower::class], | |
['name' => StringTrim::class], | |
], | |
'validators' => [ | |
['name' => EmailAddress::class], | |
], | |
]); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Application\Factory\Form\FooFormFactory; | |
use Application\Form\FooForm; | |
use Application\InputFilter\FooInputFilter; | |
return [ | |
'form_elements' => [ | |
'factories' => [ | |
FooForm::class => FooFormFactory::class, | |
], | |
], | |
'input_filters' => [ | |
'factories' => [ | |
FooInputFilter::class => Zend\ServiceManager\Factory\InvokableFactory::class, | |
], | |
], | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does this work without the Hydrator and is this also recommended for data that is not confidential? Also im interested in the answer for @bitwombats question.
:)