|
We've just created an experiment form action helper which loads form classes inside a module or application and we need people to try it out and give feedback. <?php
class FooController extends Zend_Controller_Action
{
public indexAction()
{
$formHelper = $this->getHelper('Form');
// Loads forms/Bar.php
$form = $formHelper->create('Bar');
}
}
Docs are here: Form action helper docs
 |