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