我有面包屑,如Home>实例>在我的所有视图页面中执行操作如何从所有面包屑中删除“主页”链接?
$this->breadcrumbs=array( 'Keypairs'=>array('admin'),'Manage',);
这可以通过在CBreadcrumbs小部件初始化中将
原文链接:https://www.f2er.com/php/135949.htmlhomeLink
property设置为false来完成.这通常在布局文件中完成.
在默认的Yii应用程序中,在protected / views / layouts / main.PHP中:
<?PHP if(isset($this->breadcrumbs)):?> <?PHP $this->widget('zii.widgets.CBreadcrumbs',array( 'links'=>$this->breadcrumbs,'homeLink'=>false // add this line )); ?><!-- breadcrumbs --> <?PHP endif?>