-
Notifications
You must be signed in to change notification settings - Fork 6
/
TwitterBlockPluginSettingsForm.inc.php
91 lines (82 loc) · 3.39 KB
/
TwitterBlockPluginSettingsForm.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
import('lib.pkp.classes.form.Form');
class TwitterBlockPluginSettingsForm extends Form
{
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));
}
/**
* Load settings already saved in the database
*
* Settings are stored by context, so that each journal or press
* can have different settings.
*/
public function initData()
{
$request = Application::get()->getRequest();
$context = $request->getContext();
$contextId = ($context && $context->getId()) ? $context->getId() : CONTEXT_SITE;
$this->setData('tweetTitle', $this->plugin->getSetting($contextId, 'tweetTitle'));
$this->setData('tweetUrl', $this->plugin->getSetting($contextId, 'tweetUrl'));
$this->setData('tweetColor', $this->plugin->getSetting($contextId, 'tweetColor'));
$this->setData('tweetOptions', $this->plugin->getSetting($contextId, 'tweetOptions'));
$this->setData('tweetHeight', $this->plugin->getSetting($contextId, 'tweetHeight'));
$this->setData('tweetDataLimit', $this->plugin->getSetting($contextId, 'tweetDataLimit'));
parent::initData();
}
/**
* Load data that was submitted with the form
*/
public function readInputData()
{
$this->readUserVars(['tweetTitle', 'tweetUrl', 'tweetColor', 'tweetOptions', 'tweetHeight', 'tweetDataLimit']);
parent::readInputData();
}
/**
* Fetch any additional data needed for your form.
*
* Data assigned to the form using $this->setData() during the
* initData() or readInputData() methods will be passed to the
* template.
* @param $request
* @param null $template
* @param bool $display
* @return string|null
*/
public function fetch($request, $template = null, $display = false)
{
$templateMgr = TemplateManager::getManager($request);
$templateMgr->assign('pluginName', $this->plugin->getName());
return parent::fetch($request, $template, $display);
}
/**
* Save the settings
* @param mixed ...$functionArgs
* @return mixed|null
*/
public function execute(...$functionArgs)
{
$request = Application::get()->getRequest();
$context = $request->getContext();
$contextId = ($context && $context->getId()) ? $context->getId() : CONTEXT_SITE;
$this->plugin->updateSetting($contextId, 'tweetTitle', $this->getData('tweetTitle'));
$this->plugin->updateSetting($contextId, 'tweetUrl', $this->getData('tweetUrl'));
$this->plugin->updateSetting($contextId, 'tweetColor', $this->getData('tweetColor'));
$this->plugin->updateSetting($contextId, 'tweetOptions', $this->getData('tweetOptions'));
$this->plugin->updateSetting($contextId, 'tweetHeight', $this->getData('tweetHeight'));
$this->plugin->updateSetting($contextId, 'tweetDataLimit', $this->getData('tweetDataLimit'));
import('classes.notification.NotificationManager');
$notificationMgr = new NotificationManager();
$notificationMgr->createTrivialNotification(
$request->getUser()->getId(),
NOTIFICATION_TYPE_SUCCESS,
['contents' => __('common.changesSaved')]
);
return parent::execute();
}
}