getJournal(); $issueDao = DAORegistry::getDAO('IssueDAO'); return $issueDao->getIssues($journal->getId(), $this->getGridRangeInfo($request, $this->getId())); } /** * @copydoc GridHandler::initFeatures() */ function initFeatures($request, $args) { import('lib.pkp.classes.controllers.grid.feature.selectableItems.SelectableItemsFeature'); import('lib.pkp.classes.controllers.grid.feature.PagingFeature'); return array(new SelectableItemsFeature(), new PagingFeature()); } /** * Get the row handler - override the parent row handler. We do not need grid row actions. * @return GridRow */ protected function getRowInstance() { return new GridRow(); } } ?>