| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Old Sites/Civilgeo/ojs/classes/author/form/submit/ |
Upload File : |
<?php
/**
* @file classes/author/form/submit/AuthorSubmitStep4Form.inc.php
*
* Copyright (c) 2003-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @class AuthorSubmitStep4Form
* @ingroup author_form_submit
*
* @brief Form for Step 4 of author article submission.
*/
// $Id$
import('classes.author.form.submit.AuthorSubmitForm');
class AuthorSubmitStep4Form extends AuthorSubmitForm {
/**
* Constructor.
*/
function AuthorSubmitStep4Form(&$article, &$journal) {
parent::AuthorSubmitForm($article, 4, $journal);
}
/**
* Display the form.
*/
function display() {
$templateMgr =& TemplateManager::getManager();
// Get supplementary files for this article
$suppFileDao =& DAORegistry::getDAO('SuppFileDAO');
$templateMgr->assign_by_ref('suppFiles', $suppFileDao->getSuppFilesByArticle($this->articleId));
parent::display();
}
/**
* Save changes to article.
*/
function execute() {
$articleDao =& DAORegistry::getDAO('ArticleDAO');
// Update article
$article =& $this->article;
if ($article->getSubmissionProgress() <= $this->step) {
$article->stampStatusModified();
$article->setSubmissionProgress($this->step + 1);
}
$articleDao->updateArticle($article);
return $this->articleId;
}
}
?>