59 lines
1.7 KiB
PHP
59 lines
1.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @file classes/mail/mailables/ReviewCompleteNotifyEditors.php
|
|
*
|
|
* Copyright (c) 2014-2022 Simon Fraser University
|
|
* Copyright (c) 2000-2022 John Willinsky
|
|
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
|
*
|
|
* @class ReviewCompleteNotifyEditors
|
|
*
|
|
* @brief Email is automatically sent to the assigned editors when the reviewer completes the review
|
|
*/
|
|
|
|
namespace PKP\mail\mailables;
|
|
|
|
use APP\submission\Submission;
|
|
use PKP\context\Context;
|
|
use PKP\mail\Mailable;
|
|
use PKP\mail\traits\Configurable;
|
|
use PKP\mail\traits\Recipient;
|
|
use PKP\mail\traits\Unsubscribe;
|
|
use PKP\security\Role;
|
|
use PKP\submission\reviewAssignment\ReviewAssignment;
|
|
|
|
class ReviewCompleteNotifyEditors extends Mailable
|
|
{
|
|
use Configurable;
|
|
use Recipient;
|
|
use Unsubscribe;
|
|
|
|
public const REVIEWER_FILES = 'reviewerFiles';
|
|
|
|
protected static ?string $name = 'mailable.reviewCompleteNotifyEditors.name';
|
|
protected static ?string $description = 'mailable.reviewCompleteNotifyEditors.description';
|
|
protected static ?string $emailTemplateKey = 'REVIEW_COMPLETE';
|
|
protected static array $groupIds = [self::GROUP_REVIEW];
|
|
protected static array $fromRoleIds = [Role::ROLE_ID_REVIEWER];
|
|
protected static array $toRoleIds = [Role::ROLE_ID_SUB_EDITOR];
|
|
|
|
protected Context $context;
|
|
|
|
public function __construct(
|
|
Context $context,
|
|
Submission $submission,
|
|
ReviewAssignment $reviewAssignment
|
|
) {
|
|
parent::__construct(func_get_args());
|
|
|
|
$this->context = $context;
|
|
}
|
|
|
|
protected function addFooter(string $locale): self
|
|
{
|
|
$this->setupUnsubscribeFooter($locale, $this->context, 'emails.footer.unsubscribe.automated');
|
|
return $this;
|
|
}
|
|
}
|