forked from RBoelter/citations
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCitationsSettingsForm.inc.php
75 lines (67 loc) · 3.26 KB
/
CitationsSettingsForm.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
<?php
import('lib.pkp.classes.form.Form');
class CitationsSettingsForm extends Form
{
public $plugin;
public function __construct($plugin)
{
parent::__construct($plugin->getTemplateResource('settings.tpl'));
$this->plugin = $plugin;
$this->addCheck(new FormValidatorPost($this));
$this->addCheck(new FormValidatorCSRF($this));
}
public function initData()
{
$contextId = Application::get()->getRequest()->getContext()->getId();
$data = $this->plugin->getSetting($contextId, 'settings');
if ($data != null && $data != '') {
$data = json_decode($data, true);
$this->setData('citationsProvider', $data['provider']);
$this->setData('citationsShowList', $data['showList']);
$this->setData('citationsShowGoogle', $data['showGoogle']);
$this->setData('citationsShowPmc', $data['showPmc']);
$this->setData('citationsShowTotal', $data['showTotal']);
$this->setData('citationsMaxHeight', $data['maxHeight']);
$this->setData('citationsScopusSaved', ($data['scopusKey'] && $data['scopusKey'] != '') ? 'key-saved' : '');
$this->setData('citationsCrossrefUserSaved', ($data['crossrefUser'] && $data['crossrefUser'] != '') ? 'key-saved' : '');
$this->setData('citationsCrossrefPwdSaved', ($data['crossrefPwd'] && $data['crossrefPwd'] != '') ? 'key-saved' : '');
}
parent::initData();
}
public function readInputData()
{
$this->readUserVars(['citationsProvider', 'citationsShowList', 'citationsShowTotal', 'citationsScopusKey', 'citationsCrossrefUser', 'citationsCrossrefPwd', 'citationsMaxHeight', 'citationsShowGoogle', 'citationsShowPmc']);
parent::readInputData();
}
public function fetch($request, $template = null, $display = false)
{
$templateMgr = TemplateManager::getManager($request);
$templateMgr->assign('pluginName', $this->plugin->getName());
return parent::fetch($request, $template, $display);
}
public function execute(...$args)
{
$contextId = Application::get()->getRequest()->getContext()->getId();
$settings = json_decode($this->plugin->getSetting($contextId, 'settings'), true);
$data = [
"provider" => $this->getData('citationsProvider'),
"showList" => $this->getData('citationsShowList'),
"showGoogle" => $this->getData('citationsShowGoogle'),
"showPmc" => $this->getData('citationsShowPmc'),
"showTotal" => $this->getData('citationsShowTotal'),
"scopusKey" => ($this->getData('citationsScopusKey') && $this->getData('citationsScopusKey') != '' ? $this->getData('citationsScopusKey') : $settings['scopusKey']),
"crossrefUser" => ($this->getData('citationsCrossrefUser') && $this->getData('citationsCrossrefUser') != '' ? $this->getData('citationsCrossrefUser') : $settings['crossrefUser']),
"crossrefPwd" => ($this->getData('citationsCrossrefPwd') && $this->getData('citationsCrossrefPwd') != '' ? $this->getData('citationsCrossrefPwd') : $settings['crossrefPwd']),
"maxHeight" => $this->getData('citationsMaxHeight')
];
$this->plugin->updateSetting($contextId, 'settings', json_encode($data));
import('classes.notification.NotificationManager');
$notificationMgr = new NotificationManager();
$notificationMgr->createTrivialNotification(
Application::get()->getRequest()->getUser()->getId(),
NOTIFICATION_TYPE_SUCCESS,
['contents' => __('common.changesSaved')]
);
return parent::execute();
}
}