56 lines
1.7 KiB
PHP
56 lines
1.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @file controllers/grid/files/review/AuthorReviewRevisionsGridHandler.php
|
|
*
|
|
* Copyright (c) 2014-2021 Simon Fraser University
|
|
* Copyright (c) 2000-2021 John Willinsky
|
|
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
|
*
|
|
* @class AuthorReviewRevisionsGridHandler
|
|
*
|
|
* @ingroup controllers_grid_files_review
|
|
*
|
|
* @brief Display to authors the file revisions that they have uploaded.
|
|
*/
|
|
|
|
namespace PKP\controllers\grid\files\review;
|
|
|
|
use APP\core\Application;
|
|
use PKP\controllers\grid\files\fileList\FileListGridHandler;
|
|
use PKP\controllers\grid\files\FilesGridCapabilities;
|
|
use PKP\security\Role;
|
|
use PKP\submissionFile\SubmissionFile;
|
|
|
|
class AuthorReviewRevisionsGridHandler extends FileListGridHandler
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$stageId = (int) Application::get()->getRequest()->getUserVar('stageId');
|
|
$fileStage = $stageId === WORKFLOW_STAGE_ID_INTERNAL_REVIEW ? SubmissionFile::SUBMISSION_FILE_INTERNAL_REVIEW_REVISION : SubmissionFile::SUBMISSION_FILE_REVIEW_REVISION;
|
|
parent::__construct(
|
|
new ReviewGridDataProvider($fileStage),
|
|
null,
|
|
FilesGridCapabilities::FILE_GRID_ADD | FilesGridCapabilities::FILE_GRID_EDIT | FilesGridCapabilities::FILE_GRID_DELETE
|
|
);
|
|
|
|
$this->addRoleAssignment(
|
|
[Role::ROLE_ID_AUTHOR],
|
|
['fetchGrid', 'fetchRow']
|
|
);
|
|
|
|
$this->setTitle('editor.submission.revisions');
|
|
}
|
|
|
|
/**
|
|
* @copydoc GridHandler::getJSHandler()
|
|
*/
|
|
public function getJSHandler()
|
|
{
|
|
return '$.pkp.controllers.grid.files.review.AuthorReviewRevisionsGridHandler';
|
|
}
|
|
}
|