public function breadcumbs($controllerLink = '', $controller = '', $action = '', $label = '')
 {
     $this->widget('bootstrap.widgets.TbBreadcrumbs', array('homeLink' => Chtml::Link('<i class="fa fa-home"></i>', Yii::app()->getBaseUrl(true)), 'tagName' => 'ul', 'separator' => '<i class="fa fa-angle-double-right"></i>', 'links' => array(ucfirst($controller == '' ? Yii::app()->controller->id : $controller) => array($controllerLink == '' ? 'admin' : $controllerLink), ucfirst($action == '' ? Yii::app()->controller->action->id : $action), $label)));
 }