Home > Instance > Action
すべてのビュー ページなどにブレッドクラムがあります。すべてのブレッドクラムから「ホーム」リンクを削除するにはどうすればよいですか?
$this->breadcrumbs=array(
'Keypairs'=>array('admin'),
'Manage',
);
Home > Instance > Action
すべてのビュー ページなどにブレッドクラムがあります。すべてのブレッドクラムから「ホーム」リンクを削除するにはどうすればよいですか?
$this->breadcrumbs=array(
'Keypairs'=>array('admin'),
'Manage',
);
これは、CBreadcrumbs ウィジェットの初期化でhomeLink
プロパティをに設定することで実行できます。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?>