48 lines
1.4 KiB
PHP
48 lines
1.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @file classes/mail/mailables/ReviewConfirm.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 ReviewConfirm
|
|
*
|
|
* @ingroup mail_mailables
|
|
*
|
|
* @brief Email is sent automatically by a reviewer after accepting review request
|
|
*/
|
|
|
|
namespace PKP\mail\mailables;
|
|
|
|
use PKP\context\Context;
|
|
use PKP\mail\Mailable;
|
|
use PKP\mail\traits\Configurable;
|
|
use PKP\mail\traits\Recipient;
|
|
use PKP\mail\traits\Sender;
|
|
use PKP\security\Role;
|
|
use PKP\submission\PKPSubmission;
|
|
use PKP\submission\reviewAssignment\ReviewAssignment;
|
|
|
|
class ReviewConfirm extends Mailable
|
|
{
|
|
use Sender;
|
|
use Recipient;
|
|
use Configurable;
|
|
|
|
protected static ?string $name = 'mailable.reviewConfirm.name';
|
|
protected static ?string $description = 'mailable.reviewConfirm.description';
|
|
protected static ?string $emailTemplateKey = 'REVIEW_CONFIRM';
|
|
protected static bool $supportsTemplates = true;
|
|
protected static array $groupIds = [self::GROUP_REVIEW];
|
|
protected static bool $canDisable = true;
|
|
protected static array $fromRoleIds = [Role::ROLE_ID_REVIEWER];
|
|
protected static array $toRoleIds = [Role::ROLE_ID_SUB_EDITOR];
|
|
|
|
public function __construct(PKPSubmission $submission, ReviewAssignment $reviewAssignment, Context $context)
|
|
{
|
|
parent::__construct(func_get_args());
|
|
}
|
|
}
|