51 lines
1.2 KiB
PHP
51 lines
1.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @file controllers/api/task/SendReminderLinkAction.php
|
|
*
|
|
* Copyright (c) 2014-2021 Simon Fraser University
|
|
* Copyright (c) 2003-2021 John Willinsky
|
|
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
|
*
|
|
* @class SendReminderLinkAction
|
|
*
|
|
* @ingroup controllers_api_task
|
|
*
|
|
* @brief An action to open up a modal to send a reminder to users assigned to a task.
|
|
*/
|
|
|
|
namespace PKP\controllers\api\task;
|
|
|
|
use APP\core\Request;
|
|
use PKP\linkAction\LinkAction;
|
|
use PKP\linkAction\request\AjaxModal;
|
|
|
|
class SendReminderLinkAction extends LinkAction
|
|
{
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param Request $request
|
|
* @param array $actionArgs The action arguments.
|
|
*/
|
|
public function __construct($request, $modalTitle, $actionArgs)
|
|
{
|
|
// Instantiate the send review modal.
|
|
$router = $request->getRouter();
|
|
|
|
$ajaxModal = new AjaxModal(
|
|
$router->url($request, null, null, 'editReminder', null, $actionArgs),
|
|
__($modalTitle),
|
|
'review_reminder'
|
|
);
|
|
|
|
// Configure the link action.
|
|
parent::__construct(
|
|
'sendReminder',
|
|
$ajaxModal,
|
|
__('editor.review.sendReminder'),
|
|
'overdue'
|
|
);
|
|
}
|
|
}
|