%PDF-1.7 GIF89;
| Server IP : 104.20.45.2 / 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/classes/submission/form/comment/ |
Upload File : |
<?php
/**
* @file classes/submission/form/comment/CopyeditCommentForm.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 CopyeditCommentForm
* @ingroup submission_form
* @see Form
*
* @brief CopyeditComment form.
*/
import('classes.submission.form.comment.CommentForm');
class CopyeditCommentForm extends CommentForm {
/**
* Constructor.
* @param $article object
*/
function CopyeditCommentForm($article, $roleId) {
parent::CommentForm($article, COMMENT_TYPE_COPYEDIT, $roleId, $article->getId());
}
/**
* Display the form.
*/
function display() {
$article = $this->article;
$templateMgr =& TemplateManager::getManager();
$templateMgr->assign('pageTitle', 'submission.comments.copyeditComments');
$templateMgr->assign('commentAction', 'postCopyeditComment');
$templateMgr->assign('commentType', 'copyedit');
$templateMgr->assign('hiddenFormParams',
array(
'articleId' => $article->getId()
)
);
parent::display();
}
/**
* Assign form data to user-submitted data.
*/
function readInputData() {
parent::readInputData();
}
/**
* Add the comment.
*/
function execute() {
parent::execute();
}
/**
* Email the comment.
*/
function email($request) {
$article = $this->article;
$roleDao =& DAORegistry::getDAO('RoleDAO');
$signoffDao =& DAORegistry::getDAO('SignoffDAO');
$userDao =& DAORegistry::getDAO('UserDAO');
$journal =& $request->getJournal();
// Create list of recipients:
$recipients = array();
// Copyedit comments are to be sent to the editor, author, and copyeditor,
// excluding whomever posted the comment.
// Get editors
$editAssignmentDao =& DAORegistry::getDAO('EditAssignmentDAO');
$editAssignments =& $editAssignmentDao->getEditAssignmentsByArticleId($article->getId());
$editAssignments =& $editAssignments->toArray();
$editorAddresses = array();
foreach ($editAssignments as $editAssignment) {
if ($editAssignment->getCanEdit()) $editorAddresses[$editAssignment->getEditorEmail()] = $editAssignment->getEditorFullName();
}
// If no editors are currently assigned, send this message to
// all of the journal's editors.
if (empty($editorAddresses)) {
$editors =& $roleDao->getUsersByRoleId(ROLE_ID_EDITOR, $journal->getId());
while (!$editors->eof()) {
$editor =& $editors->next();
$editorAddresses[$editor->getEmail()] = $editor->getFullName();
}
}
// Get copyeditor
$copySignoff = $signoffDao->getBySymbolic('SIGNOFF_COPYEDITING_INITIAL', ASSOC_TYPE_ARTICLE, $article->getId());
if ($copySignoff != null && $copySignoff->getUserId() > 0) {
$copyeditor =& $userDao->getUser($copySignoff->getUserId());
} else {
$copyeditor = null;
}
// Get author
$author =& $userDao->getUser($article->getUserId());
// Choose who receives this email
if ($this->roleId == ROLE_ID_EDITOR || $this->roleId == ROLE_ID_SECTION_EDITOR) {
// Then add copyeditor and author
if ($copyeditor != null) {
$recipients = array_merge($recipients, array($copyeditor->getEmail() => $copyeditor->getFullName()));
}
$recipients = array_merge($recipients, array($author->getEmail() => $author->getFullName()));
} else if ($this->roleId == ROLE_ID_COPYEDITOR) {
// Then add editors and author
$recipients = array_merge($recipients, $editorAddresses);
if (isset($author)) $recipients = array_merge($recipients, array($author->getEmail() => $author->getFullName()));
} else {
// Then add editors and copyeditor
$recipients = array_merge($recipients, $editorAddresses);
if ($copyeditor != null) {
$recipients = array_merge($recipients, array($copyeditor->getEmail() => $copyeditor->getFullName()));
}
}
parent::email($recipients, $request);
}
}
?>