forked from bozana/usageStats
-
Notifications
You must be signed in to change notification settings - Fork 34
/
UsageStatsSettingsForm.inc.php
90 lines (78 loc) · 2.64 KB
/
UsageStatsSettingsForm.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
87
88
89
90
<?php
/**
* @file plugins/generic/usageStats/UsageStatsSettingsForm.inc.php
*
* Copyright (c) 2013-2020 Simon Fraser University
* Copyright (c) 2003-2020 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class UsageStatsSettingsForm
* @ingroup plugins_generic_usageStats
*
* @brief Form for journal managers to modify usage statistics plugin settings.
*/
use PKP\form\Form;
class UsageStatsSettingsForm extends Form {
/** @var $plugin UsageStatsPlugin */
var $plugin;
/**
* Constructor
* @param $plugin UsageStatsPlugin
*/
function __construct($plugin) {
$this->plugin = $plugin;
parent::__construct($plugin->getTemplateResource('usageStatsSettingsForm.tpl'));
$this->addCheck(new \PKP\form\validation\FormValidatorPost($this));
$this->addCheck(new \PKP\form\validation\FormValidatorCSRF($this));
}
/**
* @copydoc Form::initData()
*/
function initData() {
$plugin = $this->plugin;
$request = Application::get()->getRequest();
$context = $request->getContext();
$this->setData('displayStatistics', $plugin->_getPluginSetting($context, 'displayStatistics'));
$this->setData('datasetMaxCount', $plugin->_getPluginSetting($context, 'datasetMaxCount'));
$this->setData('chartType', $plugin->_getPluginSetting($context, 'chartType'));
}
/**
* @copydoc Form::readInputData()
*/
function readInputData() {
$this->readUserVars(array(
'displayStatistics',
'chartType',
'datasetMaxCount'
));
}
/**
* @copydoc Form::fetch()
*/
function fetch($request, $template = null, $display = false) {
$templateMgr = TemplateManager::getManager($request);
$application = Application::get();
$templateMgr->assign(array(
'chartTypes' => array(
'bar' => __('plugins.generic.usageStats.settings.statsDisplayOptions.chartType.bar'),
'line' => __('plugins.generic.usageStats.settings.statsDisplayOptions.chartType.line'),
),
'pluginName' => $this->plugin->getName(),
'applicationName' => $application->getName(),
));
return parent::fetch($request, $template, $display);
}
/**
* @copydoc Form::execute()
*/
function execute(...$functionArgs) {
$plugin = $this->plugin;
$request = Application::get()->getRequest();
$context = $request->getContext();
$contextId = $context ? $context->getId() : \PKP\core\PKPApplication::CONTEXT_ID_NONE;
$plugin->updateSetting($contextId, 'displayStatistics', $this->getData('displayStatistics'), 'bool');
$plugin->updateSetting($contextId, 'chartType', $this->getData('chartType'));
$plugin->updateSetting($contextId, 'datasetMaxCount', $this->getData('datasetMaxCount'));
parent::execute(...$functionArgs);
}
}