Considering this subclass of Zend_Form
class Form_Mine extends Zend_Form
{
public function init()
{
//form
}
Then in
Class MineController extends Zend_controller_Action
{
public function formAction()
{
$form = new Form_Mine();
}
}
How does the controller know of 'Form_Mine's existence in order to be instantiated?
I understand that through the Zend_Form's constructor the function init() is called setting up the form however through what chain or routing does the controller get access to 'Form_Mine'?