-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAkismetSettingsForm.php
74 lines (63 loc) · 2.17 KB
/
AkismetSettingsForm.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
<?php
/**
* @file plugins/generic/akismet/AkismetSettingsForm.inc.php
*
* Copyright (c) University of Pittsburgh
* Distributed under the GNU GPL v2 or later. For full terms see the LICENSE file.
*
* @class AkismetSettingsForm
* @ingroup plugins_generic_akismet
*
* @brief Form for site admins to modify Akismet plugin settings
*/
namespace APP\plugins\generic\akismet;
use PKP\form\Form;
use PKP\form\validation\FormValidator;
use PKP\form\validation\FormValidatorPost;
use PKP\core\PKPApplication;
use APP\template\TemplateManager;
class AkismetSettingsForm extends Form {
/** @var $plugin object */
var $_plugin;
/**
* Constructor
* @param $plugin object
*/
function __construct($plugin) {
$this->_plugin = $plugin;
parent::__construct(method_exists($plugin, 'getTemplateResource') ? $plugin->getTemplateResource('settingsForm.tpl') : $plugin->getTemplatePath() . 'settingsForm.tpl');
$this->addCheck(new FormValidator($this, 'akismetKey', FormValidator::FORM_VALIDATOR_REQUIRED_VALUE, 'plugins.generic.akismet.manager.settings.akismetKeyRequired'));
$this->addCheck(new FormValidatorPost($this));
}
/**
* Initialize form data.
*/
function initData() {
$plugin = $this->_plugin;
$this->setData('akismetKey', $plugin->getSetting(PKPApplication::CONTEXT_SITE, 'akismetKey'));
$this->setData('akismetPrivacyNotice', $plugin->getSetting(PKPApplication::CONTEXT_SITE, 'akismetPrivacyNotice'));
}
/**
* Assign form data to user-submitted data.
*/
function readInputData() {
$this->readUserVars(array('akismetKey', 'akismetPrivacyNotice'));
}
/**
* Save settings.
*/
function execute(...$functionArgs) {
$plugin = $this->_plugin;
$plugin->updateSetting(PKPApplication::CONTEXT_SITE, 'akismetKey', $this->getData('akismetKey'), 'string');
$plugin->updateSetting(PKPApplication::CONTEXT_SITE, 'akismetPrivacyNotice', $this->getData('akismetPrivacyNotice'), 'bool');
}
/**
* Fetch the form.
* @copydoc Form::fetch()
*/
function fetch($request, $template = NULL, $display = false) {
$templateMgr = TemplateManager::getManager($request);
$templateMgr->assign('pluginName', $this->_plugin->getName());
return parent::fetch($request);
}
}