Server : Apache/2.4.41 (Ubuntu) System : Linux journalup 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /var/www/html/classes/submission/reviewer/ |
<?php /** * @file classes/submission/reviewer/ReviewerSubmission.inc.php * * Copyright (c) 2014-2020 Simon Fraser University * Copyright (c) 2003-2020 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @class ReviewerSubmission * @ingroup submission * @see ReviewerSubmissionDAO * * @brief ReviewerSubmission class. */ import('classes.submission.Submission'); class ReviewerSubmission extends Submission { /** @var array SubmissionFile reviewer file revisions of this submission */ var $reviewerFileRevisions; /** @var array SubmissionComments peer review comments of this submission */ var $peerReviewComments; /** @var array the editor decisions of this submission */ var $editorDecisions; /** * Get/Set Methods. */ /** * Get the competing interests for this submission. * @return string */ public function getCompetingInterests() { return $this->getData('competingInterests'); } /** * Set the competing interests statement. * @param $competingInterests string */ public function setCompetingInterests($competingInterests) { $this->setData('competingInterests', $competingInterests); } /** * Get ID of review assignment. * @return int */ public function getReviewId() { return $this->getData('reviewId'); } /** * Set ID of review assignment * @param $reviewId int */ public function setReviewId($reviewId) { $this->setData('reviewId', $reviewId); } /** * Get ID of reviewer. * @return int */ public function getReviewerId() { return $this->getData('reviewerId'); } /** * Set ID of reviewer. * @param $reviewerId int */ public function setReviewerId($reviewerId) { $this->setData('reviewerId', $reviewerId); } /** * Get full name of reviewer. * @return string */ public function getReviewerFullName() { return $this->getData('reviewerFullName'); } /** * Set full name of reviewer. * @param $reviewerFullName string */ public function setReviewerFullName($reviewerFullName) { $this->setData('reviewerFullName', $reviewerFullName); } /** * Get editor decisions. * @return array */ public function getDecisions() { return $this->editorDecisions; } /** * Set editor decisions. * @param $editorDecisions array * @param $round int */ public function setDecisions($editorDecisions) { return $this->editorDecisions = $editorDecisions; } /** * Get reviewer recommendation. * @return string */ public function getRecommendation() { return $this->getData('recommendation'); } /** * Set reviewer recommendation. * @param $recommendation string */ public function setRecommendation($recommendation) { $this->setData('recommendation', $recommendation); } /** * Get the reviewer's assigned date. * @return string */ public function getDateAssigned() { return $this->getData('dateAssigned'); } /** * Set the reviewer's assigned date. * @param $dateAssigned string */ public function setDateAssigned($dateAssigned) { $this->setData('dateAssigned', $dateAssigned); } /** * Get the reviewer's notified date. * @return string */ public function getDateNotified() { return $this->getData('dateNotified'); } /** * Set the reviewer's notified date. * @param $dateNotified string */ public function setDateNotified($dateNotified) { $this->setData('dateNotified', $dateNotified); } /** * Get the reviewer's confirmed date. * @return string */ public function getDateConfirmed() { return $this->getData('dateConfirmed'); } /** * Set the reviewer's confirmed date. * @param $dateConfirmed string */ public function setDateConfirmed($dateConfirmed) { $this->setData('dateConfirmed', $dateConfirmed); } /** * Get the reviewer's completed date. * @return string */ public function getDateCompleted() { return $this->getData('dateCompleted'); } /** * Set the reviewer's completed date. * @param $dateCompleted string */ public function setDateCompleted($dateCompleted) { $this->setData('dateCompleted', $dateCompleted); } /** * Get the reviewer's acknowledged date. * @return string */ public function getDateAcknowledged() { return $this->getData('dateAcknowledged'); } /** * Set the reviewer's acknowledged date. * @param $dateAcknowledged string */ public function setDateAcknowledged($dateAcknowledged) { $this->setData('dateAcknowledged', $dateAcknowledged); } /** * Get the reviewer's due date. * @return string */ public function getDateDue() { return $this->getData('dateDue'); } /** * Set the reviewer's due date. * @param $dateDue string */ public function setDateDue($dateDue) { $this->setData('dateDue', $dateDue); } /** * Get the reviewer's response due date. * @return string */ public function getDateResponseDue() { return $this->getData('dateResponseDue'); } /** * Set the reviewer's response due date. * @param $dateResponseDue string */ public function setDateResponseDue($dateResponseDue) { $this->setData('dateResponseDue', $dateResponseDue); } /** * Get the declined value. * @return boolean */ public function getDeclined() { return $this->getData('declined'); } /** * Set the reviewer's declined value. * @param $declined boolean */ public function setDeclined($declined) { $this->setData('declined', $declined); } /** * Get the cancelled value. * @return boolean */ public function getCancelled() { return $this->getData('cancelled'); } /** * Set the reviewer's cancelled value. * @param $cancelled boolean */ public function setCancelled($cancelled) { $this->setData('cancelled', $cancelled); } /** * Get quality. * @return int|null */ public function getQuality() { return $this->getData('quality'); } /** * Set quality. * @param $quality int|null */ public function setQuality($quality) { $this->setData('quality', $quality); } /** * Get stageId. * @return int */ public function getStageId() { return $this->getData('stageId'); } /** * Set stageId. * @param $stageId int */ public function setStageId($stageId) { $this->setData('stageId', $stageId); } /** * Get the method of the review (open, blind, or double-blind). * @return int */ public function getReviewMethod() { return $this->getData('reviewMethod'); } /** * Set the type of review. * @param $method int */ public function setReviewMethod($method) { $this->setData('reviewMethod', $method); } /** * Get round. * @return int */ public function getRound() { return $this->getData('round'); } /** * Set round. * @param $round int */ public function setRound($round) { $this->setData('round', $round); } /** * Get step. * @return int */ public function getStep() { return $this->getData('step'); } /** * Set status. * @param $status int */ public function setStep($step) { $this->setData('step', $step); } }