forked from ajnyga/forthcoming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForthcomingPluginSettingsForm.inc.php
74 lines (62 loc) · 2.31 KB
/
ForthcomingPluginSettingsForm.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/**
* @file ForthcomingPluginSettingsForm.inc.php
*
* Copyright (c) 2014-2019 Simon Fraser University
* Copyright (c) 2003-2019 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @package plugins.generic.forthcoming
* @class ForthcomingPluginSettingsForm
* ForthcomingPlugin settings class
*/
import('lib.pkp.classes.form.Form');
class ForthcomingPluginSettingsForm extends Form {
/** @var TutorialExamplePlugin */
public $plugin;
public function __construct($plugin) {
parent::__construct($plugin->getTemplateResource('settings.tpl'));
$this->plugin = $plugin;
$this->addCheck(new FormValidatorPost($this));
$this->addCheck(new FormValidatorCSRF($this));
}
public function initData() {
$contextId = Application::get()->getRequest()->getContext()->getId();
$this->setData('forthcomingIssueId', $this->plugin->getSetting($contextId, 'forthcomingIssueId'));
parent::initData();
}
public function readInputData() {
$this->readUserVars(['forthcomingIssueId']);
parent::readInputData();
}
public function fetch($request, $template = null, $display = false) {
$templateMgr = TemplateManager::getManager($request);
$contextId = Application::get()->getRequest()->getContext()->getId();
$params = array(
'contextId' => $contextId,
'orderBy' => 'seq',
'orderDirection' => 'ASC',
'isPublished' => true,
);
$issues = iterator_to_array(Services::get('issue')->getMany($params));
$issuesList = [0 => __('common.none')];
foreach ($issues as $issue) {
$issuesList[$issue->getId()] = $issue->getIssueIdentification();
}
$templateMgr->assign('issues', $issuesList);
$templateMgr->assign('pluginName', $this->plugin->getName());
return parent::fetch($request, $template, $display);
}
public function execute(...$functionArgs) {
$contextId = Application::get()->getRequest()->getContext()->getId();
$this->plugin->updateSetting($contextId, 'forthcomingIssueId', $this->getData('forthcomingIssueId'));
import('classes.notification.NotificationManager');
$notificationMgr = new NotificationManager();
$notificationMgr->createTrivialNotification(
Application::get()->getRequest()->getUser()->getId(),
NOTIFICATION_TYPE_SUCCESS,
['contents' => __('common.changesSaved')]
);
return parent::execute();
}
}