-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRQCSettingsForm.inc.php
More file actions
82 lines (71 loc) · 2.28 KB
/
RQCSettingsForm.inc.php
File metadata and controls
82 lines (71 loc) · 2.28 KB
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
<?php
/**
* @file plugins/generic/reviewqualitycollector/RQCSettingsForm.inc.php
*
* Copyright (c) 2014-2017 Simon Fraser University
* Copyright (c) 2018-2019 Lutz Prechelt
* Distributed under the GNU General Public License, Version 3.
*
* @class RQCSettingsForm
* @ingroup plugins_generic_reviewqualitycollector
*
* @brief Form for journal managers to modify RQC plugin settings
*/
import('lib.pkp.classes.form.Form');
class RQCSettingsForm extends Form {
/** @var int */
var $_contextId;
/** @var object */
var $_plugin;
/**
* Constructor
* @param $plugin RQCPlugin
* @param $contextId int the OJS context (the OJS journal)
*/
function __construct($plugin, $contextId) {
$this->_contextId = $contextId;
$this->_plugin = $plugin;
parent::__construct($plugin->getTemplateResource('settingsForm.tpl'));
$this->addCheck(new FormValidatorRegExp($this, 'rqcJournalId', 'required',
'plugins.generic.reviewqualitycollector.settingsform.rqcJournalIDInvalid',
'/^[0-9]+$/'));
$this->addCheck(new FormValidatorRegExp($this, 'rqcJournalKey', 'required',
'plugins.generic.reviewqualitycollector.settingsform.rqcJournalKeyInvalid',
'/^[0-9A-Za-z]+$/'));
$this->addCheck(new FormValidatorPost($this));
$this->addCheck(new FormValidatorCSRF($this));
}
/**
* Initialize form data.
*/
function initData() {
$this->_data = array(
'rqcJournalId' => $this->_plugin->getSetting($this->_contextId, 'rqcJournalId'),
'rqcJournalKey' => $this->_plugin->getSetting($this->_contextId, 'rqcJournalKey'),
);
}
/**
* Assign form data to user-submitted data.
*/
function readInputData() {
$this->readUserVars(array('rqcJournalId', 'rqcJournalKey'));
}
/**
* 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);
}
/**
* Save settings.
*/
function execute() {
$this->_plugin->updateSetting($this->_contextId, 'rqcJournalId', trim($this->getData('rqcJournalId')), 'string');
$this->_plugin->updateSetting($this->_contextId, 'rqcJournalKey', trim($this->getData('rqcJournalKey')), 'string');
return parent::execute();
}
}
?>