Files
OSJ/lib/pkp/classes/mail/mailables/DecisionBackFromProductionNotifyAuthor.php
CHIEFSOFT\ameye df3a033196 first commit
2024-06-08 17:09:23 -04:00

46 lines
1.5 KiB
PHP

<?php
/**
* @file classes/mail/mailables/DecisionBackFromProductionNotifyAuthor.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 DecisionBackFromProductionNotifyAuthor
*
* @brief Email sent to the author(s) when the following decision is made:
* Decision::BACK_FROM_PRODUCTION
*/
namespace PKP\mail\mailables;
use APP\decision\Decision;
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\Sender;
use PKP\security\Role;
class DecisionBackFromProductionNotifyAuthor extends Mailable
{
use Configurable;
use Recipient;
use Sender;
protected static ?string $name = 'mailable.decision.backToCopyediting.notifyAuthor.name';
protected static ?string $description = 'mailable.decision.backToCopyediting.notifyAuthor.description';
protected static ?string $emailTemplateKey = 'EDITOR_DECISION_BACK_FROM_PRODUCTION';
protected static bool $supportsTemplates = true;
protected static array $groupIds = [self::GROUP_PRODUCTION];
protected static array $fromRoleIds = [Role::ROLE_ID_SUB_EDITOR];
protected static array $toRoleIds = [Role::ROLE_ID_AUTHOR];
public function __construct(Context $context, Submission $submission, Decision $decision)
{
parent::__construct(func_get_args());
}
}