Beispiel #1
0
 /**
  * Get the breadcrumb HTML view
  * 
  * @return string HTML 
  */
 protected function _toHtml()
 {
     if (is_array($this->_crumbs)) {
         reset($this->_crumbs);
         $this->_crumbs[key($this->_crumbs)]['first'] = true;
         end($this->_crumbs);
         $this->_crumbs[key($this->_crumbs)]['last'] = true;
     }
     $this->assign('crumbs', $this->_crumbs);
     return parent::_toHtml();
 }
Beispiel #2
0
 /**
  * Prepare html output
  *
  * @return string
  */
 protected function _toHtml()
 {
     return parent::_toHtml();
 }