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

This package is not auto-updated.

Last update: 2022-02-01 12:24:36 UTC


README

Build Status

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();
}