我在子视图中有一个痕迹,但它没有显示任何页面。 当我在根视图中显示它时,一切正常
控制器:
public function categoriesAction()
{
$view = new ViewModel();
$heading = new ViewModel(array(
'headTitle' => 'Categorieën'
));
$heading->setTemplate('templates/head');
$view->addChild($heading, 'header')
->addChild($storecontent, 'content');
return $view;
}
模板/ head.phtml
<?php echo $this->navigation()->breadcrumbs()->setPartial('Application/partials/breadcrumbs'); ?>
当我将上述代码放在根视图中时,它正在工作。但是我想要它在头脑中,所以我可以在更多的行动中使用它。