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.
|