-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBacklinkTrackerSettingsForm.inc.php
More file actions
89 lines (75 loc) · 3.11 KB
/
BacklinkTrackerSettingsForm.inc.php
File metadata and controls
89 lines (75 loc) · 3.11 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
84
85
86
87
88
89
<?php
/**
* @file plugins/generic/backlinkTracker/BacklinkTrackerSettingsForm.inc.php
*
* Copyright (c) 2024
* Distributed under the GNU GPL v3.
*
* @class BacklinkTrackerSettingsForm
* @ingroup plugins_generic_backlinkTracker
*
* @brief Form for journal managers to setup backlink tracking
*/
import('lib.pkp.classes.form.Form');
class BacklinkTrackerSettingsForm extends Form {
/** @var int Context ID */
var $_contextId;
/** @var BacklinkTrackerPlugin Plugin */
var $_plugin;
/**
* Constructor
* @param $plugin BacklinkTrackerPlugin
* @param $contextId int Context ID
*/
function __construct($plugin, $contextId) {
$this->_contextId = $contextId;
$this->_plugin = $plugin;
parent::__construct($plugin->getTemplateResource('settingsForm.tpl'));
$this->addCheck(new \PKP\form\validation\FormValidatorPost($this));
$this->addCheck(new \PKP\form\validation\FormValidatorCSRF($this));
}
/**
* Initialize form data
*/
function initData() {
$this->_data = array(
'repoGalleyLabel' => $this->_plugin->getSetting($this->_contextId, 'repoGalleyLabel') ?: 'REPO',
'blockedDomains' => $this->_plugin->getSetting($this->_contextId, 'blockedDomains') ?: '',
'useSiteWideData' => $this->_plugin->getSetting($this->_contextId, 'useSiteWideData') ?: false,
'backlinkDataStatus' => $this->_plugin->getEffectiveSetting($this->_contextId, 'backlinkDataStatus'),
'backlinkDataCount' => $this->_plugin->getEffectiveSetting($this->_contextId, 'backlinkDataCount') ?: 0,
'backlinkDataDate' => $this->_plugin->getEffectiveSetting($this->_contextId, 'backlinkDataDate'),
'redirectMappingCount' => $this->_plugin->getEffectiveSetting($this->_contextId, 'redirectMappingCount') ?: 0,
'redirectMappingDate' => $this->_plugin->getEffectiveSetting($this->_contextId, 'redirectMappingDate'),
);
}
/**
* Assign form data to user-submitted data
*/
function readInputData() {
$this->readUserVars(array(
'repoGalleyLabel',
'blockedDomains',
'useSiteWideData',
));
}
/**
* Fetch the form
*/
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) {
$this->_plugin->updateSetting($this->_contextId, 'repoGalleyLabel', trim($this->getData('repoGalleyLabel')), 'string');
$this->_plugin->updateSetting($this->_contextId, 'blockedDomains', trim($this->getData('blockedDomains')), 'string');
// Handle checkbox: getData returns null if unchecked
$useSiteWideData = $this->getData('useSiteWideData');
$this->_plugin->updateSetting($this->_contextId, 'useSiteWideData', ($useSiteWideData ? true : false), 'bool');
parent::execute(...$functionArgs);
}
}