This repository has been archived by the owner on Jul 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettingsForm.inc.php
executable file
·80 lines (62 loc) · 1.9 KB
/
SettingsForm.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
<?php
/**
* @file plugins/generic/identificationCodes/SettingsForm.inc.php
*
* Copyright (c) 2015 Language Science Press
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @class SettingsForm
*/
import('lib.pkp.classes.form.Form');
class SettingsForm extends Form {
/** @var int Associated context ID */
private $_contextId;
/** @var WebFeedPlugin Web feed plugin */
private $_plugin;
/**
* Constructor
* @param $plugin WebFeedPlugin Web feed plugin
* @param $contextId int Context ID
*/
function SettingsForm($plugin, $contextId) {
$this->_contextId = $contextId;
$this->_plugin = $plugin;
parent::Form($plugin->getTemplatePath() . 'settingsForm.tpl');
$this->addCheck(new FormValidatorPost($this));
}
/**
* Initialize form data.
*/
function initData() {
$contextId = $this->_contextId;
$plugin = $this->_plugin;
$this->setData('langsci_identification_codes', $plugin->getSetting($contextId, 'langsci_identification_codes'));
}
/**
* Assign form data to user-submitted data.
*/
function readInputData() {
$this->readUserVars(array('langsci_identification_codes'));
// check that recent items value is a positive integer
//if ((int) $this->getData('recentItems') <= 0) $this->setData('recentItems', '');
$this->addCheck(new FormValidator($this, 'langsci_identification_codes', 'required', 'plugins.generic.identificationCodes.settings.itemRequired'));
}
/**
* Fetch the form.
* @copydoc Form::fetch()
*/
function fetch($request) {
$templateMgr = TemplateManager::getManager($request);
$templateMgr->assign('pluginName', $this->_plugin->getName());
return parent::fetch($request);
}
/**
* Save settings.
*/
function execute() {
$plugin = $this->_plugin;
$contextId = $this->_contextId;
$plugin->updateSetting($contextId, 'langsci_identification_codes', $this->getData('langsci_identification_codes'));
}
}
?>