philsturgeon / codeigniter-template

Template library for CodeIgniter which supports modules, themes, partial views, etc.
411 stars 178 forks source link

Set Breadcrumb #3

Open dbpolito opened 13 years ago

dbpolito commented 13 years ago

I had a problem for rename a existing breadcrumb, so we can do it easier with this.

    public function set_breadcrumb($name, $uri = '', $index = NULL)
{
    if(is_null($index)) {
        $this->_breadcrumbs[] = array('name' => $name, 'uri' => $uri );
    } else {
        $this->_breadcrumbs[$index] = array('name' => $name, 'uri' => $uri );
    }
    return $this;
}