Beispiel #1
0
 public function getBreadcrumbLinks()
 {
     $breadcrumb = parent::getBreadcrumbLinks();
     foreach ($this->category->getAllParents() as $category) {
         if ($category->id_parent != 0 && !$category->is_root_category) {
             $breadcrumb['links'][] = $this->getCategoryPath($category);
         }
     }
     $breadcrumb['links'][] = $this->getCategoryPath($this->category);
     return $breadcrumb;
 }