php - Remove 'home' link from breadcrumb -


i have breadcrumbs such home > instance > action in view pages. how can remove 'home' link breadcrumbs?

$this->breadcrumbs=array( 'keypairs'=>array('admin'), 'manage', ); 

this can done setting homelink property false, in cbreadcrumbs widget initialization. done in layout file.

in default yii app, in protected/views/layouts/main.php:

<?php if(isset($this->breadcrumbs)):?>     <?php $this->widget('zii.widgets.cbreadcrumbs', array(         'links'=>$this->breadcrumbs,         'homelink'=>false // add line     )); ?><!-- breadcrumbs --> <?php endif?> 

Comments

Popular posts from this blog

Delphi XE2 Indy10 udp client-server interchange using SendBuffer-ReceiveBuffer -

Qt ActiveX WMI QAxBase::dynamicCallHelper: ItemIndex(int): No such property in -

Enable autocomplete or intellisense in Atom editor for PHP -