Welcome Guest, Not a member yet? Register   Sign In
Custom Breadcrumbs
#5

[eluser]xwero[/eluser]
for different controllers it could be something like this
Code:
//controller 1
class Page extends Controller
{
   private $breadcrumb;
  
   function Page()
   {
     $this->breadcrumb[] = $this->config->item('bc_home');
     $this->breadcrumb[] = $this->config->item('bc_page');
   }

   function viewforum()
   {
      $this->breadcrumb[] = $this->forummodel->breadcrumb('forum',$this->uri->segment(2));
      $data['breadcrumb'] = $this->breadcrumb;
   }

   function viewthread()
   {
      $this->breadcrumb[] = $this->forummodel->breadcrumb('thread',$this->uri->segment(2));
      $data['breadcrumb'] = $this->breadcrumb;
   }
}
//controller2
class Page2 extends Controller
{
   private $breadcrumb;
  
   function Page2()
   {
     $this->breadcrumb[] = $this->config->item('bc_home');
     $this->breadcrumb[] = $this->config->item('bc_page2');
   }

   function viewme()
   {
      $this->breadcrumb[] = $this->personmodel->breadcrumb('me',$this->uri->segment(2));
      $data['breadcrumb'] = $this->breadcrumb;
   }

   function viewyou()
   {
      $this->breadcrumb[] = $this->personmodel->breadcrumb('you',$this->uri->segment(2));
      $data['breadcrumb'] = $this->breadcrumb;
   }
}


Messages In This Thread
Custom Breadcrumbs - by El Forum - 11-21-2007, 09:38 AM
Custom Breadcrumbs - by El Forum - 11-21-2007, 10:22 AM
Custom Breadcrumbs - by El Forum - 11-21-2007, 10:26 AM
Custom Breadcrumbs - by El Forum - 11-21-2007, 10:40 AM
Custom Breadcrumbs - by El Forum - 11-21-2007, 10:55 AM
Custom Breadcrumbs - by El Forum - 11-21-2007, 11:07 AM
Custom Breadcrumbs - by El Forum - 11-21-2007, 11:20 AM
Custom Breadcrumbs - by El Forum - 11-21-2007, 11:30 AM
Custom Breadcrumbs - by El Forum - 11-21-2007, 11:48 AM
Custom Breadcrumbs - by El Forum - 11-21-2007, 11:54 AM
Custom Breadcrumbs - by El Forum - 11-23-2007, 08:41 AM
Custom Breadcrumbs - by El Forum - 11-23-2007, 09:06 AM
Custom Breadcrumbs - by El Forum - 11-23-2007, 11:13 AM
Custom Breadcrumbs - by El Forum - 11-23-2007, 11:16 AM



Theme © iAndrew 2016 - Forum software by © MyBB