/**
  * @return array
  */
 protected function getArrOutputNaviEntries()
 {
     $arrReturn = parent::getArrOutputNaviEntries();
     if (isset($arrReturn[count($arrReturn) - 2])) {
         unset($arrReturn[count($arrReturn) - 2]);
     }
     return $arrReturn;
 }
 /**
  * Generates a path-navigation
  *
  * @return array
  */
 protected function getArrOutputNaviEntries()
 {
     $arrEntries = class_admin_controller::getArrOutputNaviEntries();
     $arrPath = $this->getPathArray();
     array_shift($arrPath);
     foreach ($arrPath as $strOneSystemid) {
         $objPoint = class_objectfactory::getInstance()->getObject($strOneSystemid);
         $arrEntries[] = class_link::getLinkAdmin($this->getArrModule("modul"), "openFolder", "&systemid=" . $strOneSystemid, $objPoint->getStrDisplayName());
     }
     return $arrEntries;
 }
 /**
  * Creates a pathnavigation through all folders till the current page / folder
  *
  * @return array
  */
 protected function getArrOutputNaviEntries()
 {
     $arrPathLinks = parent::getArrOutputNaviEntries();
     foreach ($this->getArrReports() as $objOneReport) {
         if ($this->getActionForReport($objOneReport) == $this->getParam("action")) {
             $arrPathLinks[] = getLinkAdmin($this->getArrModule("modul"), $this->getActionForReport($objOneReport), "", $objOneReport->getTitle());
         }
     }
     return $arrPathLinks;
 }