_restAlias; if (!$committeeId) { $this->_do404(); } $data = \App\Committee\Admin\Obj::getInstance()->setPrimaryKey($committeeId)->getData(); if (empty($data)) { $this->_do404(); } $this->_getDataObj()->setCommitteeId($committeeId); $header = '"' . $this->_getDataObj()->getCommitteeData($this->_getDataObj()->getCommitteeId())->toArray()['title'] . '" ' . $this->_doc->getHeader(); $this->_doc->setHeader($header); return parent::exec(); } protected function _getDefaultLinks() { $links = parent::_getDefaultLinks(); $links[] = array( 'title' => 'Back to Committees List', 'url' => \App\Committee\Admin\View::getBackUrl() ); return $links; } }