| Server IP : 195.134.90.114 / Your IP : 216.73.217.31 Web Server : Apache/2.4.58 System : Linux nepub 6.8.0-88-generic #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/public_html/lib/pkp/controllers/grid/files/review/form/ |
Upload File : |
<?php
/**
* @file controllers/grid/files/review/form/ManageReviewFilesForm.inc.php
*
* Copyright (c) 2014-2021 Simon Fraser University
* Copyright (c) 2003-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class ManageReviewFilesForm
* @ingroup controllers_grid_files_review_form
*
* @brief Form for add or removing files from a review
*/
import('lib.pkp.controllers.grid.files.form.ManageSubmissionFilesForm');
class ManageReviewFilesForm extends ManageSubmissionFilesForm {
/** @var int **/
var $_stageId;
/** @var int **/
var $_reviewRoundId;
/**
* Constructor.
*/
function __construct($submissionId, $stageId, $reviewRoundId) {
parent::__construct($submissionId, 'controllers/grid/files/review/manageReviewFiles.tpl');
$this->_stageId = (int)$stageId;
$this->_reviewRoundId = (int)$reviewRoundId;
}
//
// Getters / Setters
//
/**
* Get the review stage id
* @return int
*/
function getStageId() {
return $this->_stageId;
}
/**
* Get the round
* @return int
*/
function getReviewRoundId() {
return $this->_reviewRoundId;
}
/**
* @return ReviewRound
*/
function getReviewRound() {
$reviewRoundDao = DAORegistry::getDAO('ReviewRoundDAO'); /* @var $reviewRoundDao ReviewRoundDAO */
return $reviewRoundDao->getById($this->getReviewRoundId());
}
//
// Overridden template methods
//
/**
* @copydoc ManageSubmissionFilesForm::initData
*/
function initData() {
$this->setData('stageId', $this->getStageId());
$this->setData('reviewRoundId', $this->getReviewRoundId());
$reviewRound = $this->getReviewRound();
$this->setData('round', $reviewRound->getRound());
parent::initData();
}
/**
* Save review round files
* @stageSubmissionFiles array The files that belongs to a file stage
* that is currently being used by a grid inside this form.
* @param $fileStage int SUBMISSION_FILE_...
*/
function execute($stageSubmissionFiles = null, $fileStage = null, ...$functionArgs) {
parent::execute(
$stageSubmissionFiles,
$this->getReviewRound()->getStageId() == WORKFLOW_STAGE_ID_INTERNAL_REVIEW ? SUBMISSION_FILE_INTERNAL_REVIEW_FILE : SUBMISSION_FILE_REVIEW_FILE
);
}
/**
* @copydoc ManageSubmissionFilesForm::importFile()
*/
protected function importFile($submissionFile, $fileStage) {
$newSubmissionFile = parent::importFile($submissionFile, $fileStage);
$submissionFileDao = DAORegistry::getDAO('SubmissionFileDAO'); /* @var $submissionFileDao SubmissionFileDAO */
$submissionFileDao->assignRevisionToReviewRound($newSubmissionFile->getId(), $this->getReviewRound());
return $newSubmissionFile;
}
}