예제 #1
0
 /**
  * Get the html title (check for crud reserve word)
  * @return string
  */
 protected function getTitle()
 {
     $navigation = array_reverse($this->urlParentNavs);
     $this->title = strlen($this->title) > 5 ? $this->title . ' - ' : '';
     foreach ($navigation as $key => $nav) {
         $this->title .= $nav['html_title'] . ($key + 1 < count($navigation) ? ' - ' : '');
     }
     return parent::getTitle();
 }