我有一個類的父繼承了一些嵌套的意見,並希望刪除一個孩子出來吧...... 作爲例子,父代碼:是否可以在Zend Framework 2中刪除嵌套視圖?
Class Father
{
public function IndexAction()
{
...
$view = new ViewModel();
$view->addChild($viewToNest);
return $view;
}
}
和擴展的例子:
Class Son extends Father
{
//This is supposed to override
public function IndexAction()
{
$view = parent::IndexAction();
#Is there anything like this?
$view->removeChild();
return $view;
}
}
有人知道嗎?
您能分享您的代碼 –
對不起,剛添加=) –