ZF-7989: Where does "View" come in in your plugin
Description
http://framework.zend.com/manual/en/…
contains a method
public function getBuild()
{
if (null === $this->_build) {
$this->_build = new Zend_Dojo_BuildLayer(array(
'view' => $view,
'layerName' => 'custom.main',
));
}
return $this->_build;
}
uh.... where does the $view variable get set?
Thanks
Comments
Posted by Satoru Yoshida (satoruyoshida) on 2009-09-30T15:50:21.000+0000
set component and auto reassign
Posted by Robert Basic (robertbasic) on 2009-11-29T07:29:08.000+0000
The method specified in the description is in the example under the link http://framework.zend.com/manual/en/…
The $view should be an instance of Zend_View. Will we add the process of obtaining it in this example?
Posted by Matthew Weier O'Phinney (matthew) on 2009-12-18T13:51:07.000+0000
Example updated to pull view from ViewRenderer.