sclinternet / scl-zf-utilities
This package is abandoned and no longer maintained.
No replacement package was suggested.
A useful set of classes and interfaces for developing Zend Framework 2 applications
dev-master
2013-11-11 11:17 UTC
Requires
- php: >=5.4
- sclinternet/scl-zf-generic-mapper: *
- zendframework/zendframework: 2.*@stable
Requires (Dev)
- doctrine/doctrine-orm-module: dev-master
- phpmd/phpmd: 1.4.0
- phpunit/phpunit: 3.7.*
- satooshi/php-coveralls: dev-master
- squizlabs/php_codesniffer: 1.*
This package is not auto-updated.
Last update: 2022-02-01 12:24:36 UTC
README
Some useful utility classes, plugins and view helpers.
WARNING
This is currently a very volitile module, a lot of stuff gets added and later moved to their own modules so if you decide to use this module in it's current state be prepared for things to change.
Controller plugins
formSubmitted
This is a quick way to check if a form has been posted and the content is valid.
To use it in your controller simple do
if ($this->formSubmitted($myForm)) { doWhatNeedsToBeDone(); }