鏈接我有面包屑如在我所有的視圖頁面Home > Instance > Action
。我如何從所有面包屑中刪除「主頁」鏈接?刪除「家」從麪包屑
$this->breadcrumbs=array(
'Keypairs'=>array('admin'),
'Manage',
);
鏈接我有面包屑如在我所有的視圖頁面Home > Instance > Action
。我如何從所有面包屑中刪除「主頁」鏈接?刪除「家」從麪包屑
$this->breadcrumbs=array(
'Keypairs'=>array('admin'),
'Manage',
);
這可以通過設置homeLink
property到false
,在你CBreadcrumbs控件初始化完成。這通常在佈局文件中完成。
在默認的Yii應用,在保護/視圖/佈局/ 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?>
代碼再次感謝你@ bool.dev,你岩石:-)保持聯繫。 –
我歡迎你,很高興再次幫助:) –
我認爲你必須定製'breadcrumbs'功能。 –
你也可以進入GII的代碼,並刪除未來污物發電機 –