-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFidusWriterSettingsForm.inc.php
75 lines (62 loc) · 1.77 KB
/
FidusWriterSettingsForm.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
<?php
/**
* @file plugins/generic/fidusWriter/SettingsForm.inc.php
*
* Based on code of:
* Copyright (c) 2013 Simon Fraser University Library
* Copyright (c) 2003-2013 John Willinsky
* Distributed under the GNU GPL v2. For full terms see
* https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html .
*
* @class SettingsForm
* @ingroup plugins_generic_fidusWriter
*
* @brief Form for journal managers to modify FidusWriter plugin settings
*/
import('lib.pkp.classes.form.Form');
class FidusWriterSettingsForm extends Form {
/** @var $plugin object */
private $_plugin;
/**
* Constructor
* @param $plugin object
* @param $journalId int
*/
function __construct($plugin) {
$this->_plugin = $plugin;
parent::__construct($plugin->getTemplatePath() . 'settingsForm.tpl');
$this->addCheck(new FormValidatorPost($this));
$this->addCheck(new FormValidatorCSRF($this));
}
/**
* Initialize form data.
*/
function initData() {
$plugin = $this->_plugin;
$this->setData('apiKey', $plugin->getSetting(CONTEXT_ID_NONE, 'apiKey'));
}
/**
* Assign form data to user-submitted data.
*/
function readInputData() {
$this->readUserVars(array('apiKey',));
$this->addCheck(new FormValidator($this, 'apiKey', 'required', 'plugins.generic.fidusWriter.manager.settings.apiKeyRequired'));
}
/**
* Save settings.
*/
function execute($object = NULL) {
$plugin = $this->_plugin;
$plugin->updateSetting(CONTEXT_ID_NONE, 'apiKey', trim($this->getData('apiKey'),"\"\';"), 'string');
}
/**
* 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);
}
}
?>