
This extension is a wrapper for the XBreadcrumb JQuery plugin. It is compatible with the core CBreadcrumbs widget, so no change is needed if you want to turn your old breadcrumbs into super cool extended ones.
Check out the demo !
tested with Yii 1.1.3 (but I see no reason why it would not work for previous Yii versions)
To turn your default breadcrumbs into super cool extended breadcrumbs, just replace the reference to 'zii.widgets.CBreadcrumbs' by 'application.extensions.exbreadcrumbs.ExBreadcrumbs', which should be located in your main layout (protected/views/layout/main.php).
$this->widget('application.extensions.exbreadcrumbs.EXBreadcrumbs', array( 'links'=>$this->breadcrumbs, ));
But (hopefully) there's more :
Below is an example where the crumb1 has a dropdown menu containing 2 links. The link associated with crumb2 is defined as a classical Yii url array and at last, the yii crumb url is a simple string.
$this->widget('application.extensions.exbreadcrumbs.EXBreadcrumbs', array( 'links'=>array( 'crumb1' => array('controller/route1','param1'=>'value1', 'menu'=>array( 'menu1'=> array('controller/routeMenu1','paramM1' => 'valueM1'), 'menu2'=> array('controller/routeMenu2','paramM2' => 'valueM2'), ) ), 'crumb2' => array('controller/route2','param2'=>'value2'), 'yii' => 'http://www.yiiframework.com/', 'end' ), ));
version 1.0.0.1
version 1.0.0.0
Total 9 comments
In Css
in my testdrive change to
Very nice.
very helpful
Hi!
It would be super nice to have a itemCssClass option just like the CMenu widget.
@trejder : you're right, thanks for pointing me this ... I'll update the extension as soon as possible
@peterjkambey : I'll take your modification into account too ...
Hi there,
Yes, this extension looks very good! :] But also yes - I DO see reason, why it should not work in previous versions of Yii! :]
In EXBreadcrumbs.php's line 175 (and I think that only there) you're using method chaining, available since version 1.1.5. So, users of earlier versions can't use your extension, if they don't make a simple change to your code. I.e. changing:
(line 174 of EXBreadcrumbs.php) to:
You should consider changing this by yourself in next release of extension, because this simple change will open it for users of earlier versions of Yii.
And of course there is problem reported by peterjkambey two days ago, that your extension (or rather jQuery code behind it) interferes with jQuery menu or any other menu systems related on it.
to
<?php $this->widget('application.extensions.exbreadcrumbs.EXBreadcrumbs', array( 'links'=>$this->breadcrumbs, )); ?>wonderful Extension...
thank you, but i have some trouble with jquerymenu about stacking position.. where should i put z-index option on your CSS so it still below jquerymenu CSS?
thx..
Updated: ooopppssss... its done :-D just change xbreadcrumbs.css and .xbreadcrumbs { position: relative; z-index: 1; }
works perfectly, thanks!
Leave a comment
Please login to leave your comment.