-
Notifications
You must be signed in to change notification settings - Fork 4
/
ObjectsForReviewSettingsForm.inc.php
86 lines (73 loc) · 2.7 KB
/
ObjectsForReviewSettingsForm.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
<?php
/**
* @file plugins/generic/objectsForReview/ObjectsForReviewSettingsForm.inc.php
*
* Copyright (c) 2014-2021 Simon Fraser University
* Copyright (c) 2003-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class ObjectsForReviewSettingsForm
* @ingroup plugins_generic_objectsForReview
*
* @brief Form for journal managers to modify Objects for Review plugin settings
*/
import('lib.pkp.classes.form.Form');
class ObjectsForReviewSettingsForm extends Form {
/** @var int */
var $_journalId;
/** @var object */
var $_plugin;
/**
* Constructor
* @param $plugin ObjectsForReviewPlugin
* @param $journalId int
*/
function __construct($plugin, $journalId) {
$this->_journalId = $journalId;
$this->_plugin = $plugin;
parent::__construct($plugin->getTemplateResource('settingsForm.tpl'));
$this->addCheck(new FormValidatorPost($this));
$this->addCheck(new FormValidatorCSRF($this));
}
/**
* Initialize form data.
*/
function initData() {
$request = Application::get()->getRequest();
$context = $request->getContext();
$this->_data = array(
'displayAsSubtitle' => $this->_plugin->getSetting($this->_journalId, 'displayAsSubtitle'),
'displayAsList' => $this->_plugin->getSetting($this->_journalId, 'displayAsList'),
'onlyReserved' => $this->_plugin->getSetting($this->_journalId, 'onlyReserved'),
'ofrNotifyEmail' => $this->_plugin->getSetting($this->_journalId, 'ofrNotifyEmail'),
'ofrInstructions' => $context->getSetting('ofrInstructions'),
);
}
/**
* Assign form data to user-submitted data.
*/
function readInputData() {
$this->readUserVars(array('displayAsSubtitle', 'displayAsList', 'onlyReserved', 'ofrNotifyEmail', 'ofrInstructions'));
}
/**
* @copydoc Form::fetch()
*/
function fetch($request, $template = null, $display = false) {
$templateMgr = TemplateManager::getManager($request);
$templateMgr->assign('pluginName', $this->_plugin->getName());
return parent::fetch($request, $template, $display);
}
/**
* Save settings.
*/
function execute(...$functionArgs) {
$request = Application::get()->getRequest();
$context = $request->getContext();
$this->_plugin->updateSetting($this->_journalId, 'displayAsSubtitle', $this->getData('displayAsSubtitle'), 'bool');
$this->_plugin->updateSetting($this->_journalId, 'displayAsList', $this->getData('displayAsList'), 'bool');
$this->_plugin->updateSetting($this->_journalId, 'onlyReserved', $this->getData('onlyReserved'), 'bool');
$this->_plugin->updateSetting($this->_journalId, 'ofrNotifyEmail', $this->getData('ofrNotifyEmail'), 'string');
$context->updateSetting('ofrInstructions', $this->getData('ofrInstructions'), 'object', true);
}
}
?>