Some useful utility classes, plugins and view helpers.
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.
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();
}