-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGtmSetupSettingsForm.php
More file actions
83 lines (69 loc) · 2.49 KB
/
Copy pathGtmSetupSettingsForm.php
File metadata and controls
83 lines (69 loc) · 2.49 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
83
<?php
/**
* @file plugins/generic/gtmSetup/GtmSetupSettingsForm.php
*
* Copyright (c) 2014-2023 Simon Fraser University
* Copyright (c) 2003-2023 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class GtmSetupSettingsForm
* @brief Form for journal managers to modify GTM Setup plugin settings
*/
namespace APP\plugins\generic\gtmSetup;
use PKP\form\Form;
class GtmSetupSettingsForm extends Form {
/** @var int Context ID */
public $_contextId;
/** @var GtmSetupPlugin Plugin */
public $_plugin;
/**
* Constructor
* @param $plugin GtmSetupPlugin
* @param $contextId int
*/
public function __construct($plugin, $contextId) {
$this->_plugin = $plugin;
$this->_contextId = $contextId;
parent::__construct($plugin->getTemplateResource('settings.tpl'));
$this->addCheck(new \PKP\form\validation\FormValidatorPost($this));
$this->addCheck(new \PKP\form\validation\FormValidatorCSRF($this));
}
/**
* @copydoc Form::initData()
*/
public function initData() {
$this->_data = [
'gtmId' => $this->_plugin->getSetting($this->_contextId, 'gtmId'),
'trackRegistration' => (bool) $this->_plugin->getSetting($this->_contextId, 'trackRegistration'),
'trackBackend' => (bool) $this->_plugin->getSetting($this->_contextId, 'trackBackend'),
'trackPaymentSuccess' => (bool) $this->_plugin->getSetting($this->_contextId, 'trackPaymentSuccess'),
];
}
/**
* @copydoc Form::readInputData()
*/
public function readInputData() {
$this->readUserVars(['gtmId', 'trackRegistration', 'trackBackend', 'trackPaymentSuccess']);
}
/**
* @copydoc Form::fetch()
*
* @param null|mixed $template
*/
public function fetch($request, $template = null, $display = false) {
$templateMgr = \APP\template\TemplateManager::getManager($request);
$templateMgr->assign('pluginName', $this->_plugin->getName());
return parent::fetch($request, $template, $display);
}
/**
* @copydoc Form::execute()
*/
public function execute(...$functionArgs) {
$gtmId = trim($this->getData('gtmId'));
$this->_plugin->updateSetting($this->_contextId, 'gtmId', $gtmId);
$this->_plugin->updateSetting($this->_contextId, 'trackRegistration', (bool) $this->getData('trackRegistration'));
$this->_plugin->updateSetting($this->_contextId, 'trackBackend', (bool) $this->getData('trackBackend'));
$this->_plugin->updateSetting($this->_contextId, 'trackPaymentSuccess', (bool) $this->getData('trackPaymentSuccess'));
parent::execute(...$functionArgs);
}
}