View Single Post
  #3 (permalink)  
Old 09-05-2008, 05:51 PM
SirAdrian's Avatar
SirAdrian SirAdrian is offline
Member
 
Join Date: Apr 2008
Posts: 83
Default

I'm doing mine somewhat manually. At the end of each controller action I have [php]$this->view->layout()->breadcrumbs = array(
sprintf('/%s', $this->slug) => $this->view->league['title'],
sprintf('/%s/standings', $this->slug) => 'Standings'
);[/php]

And in my layout script I do some basic processing, and implode the results to get a nice list of parent pages.
Reply With Quote