Example #1
0
 /**
  * Return the breadcrumb trail for the current page
  *
  * @return array
  */
 public function getBreadcrumbs()
 {
     if (!is_array($this->_breadcrumb)) {
         $this->_breadcrumb = array();
         Context::populateBreadcrumbs();
     }
     return $this->_breadcrumb;
 }