-
Notifications
You must be signed in to change notification settings - Fork 8
/
AuthorRequirementsSettingsForm.php
101 lines (85 loc) · 2.82 KB
/
AuthorRequirementsSettingsForm.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
91
92
93
94
95
96
97
98
99
100
101
<?php
/**
* @file plugins/generic/authorRequirements/AuthorRequirementsSettingsForm.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 AuthorRequirementsSettingsForm
* @ingroup plugins_generic_authorRequirements
*
* @brief Form for managers to modify Author Requirements plugin settings
*/
namespace APP\plugins\generic\authorRequirements;
use APP\template\TemplateManager;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Schema;
use PKP\form\Form;
use PKP\form\validation\FormValidatorCSRF;
use PKP\form\validation\FormValidatorPost;
class AuthorRequirementsSettingsForm extends Form
{
private int $_contextId;
private AuthorRequirementsPlugin $_plugin;
function __construct(AuthorRequirementsPlugin $plugin, int $contextId)
{
$this->_contextId = $contextId;
$this->_plugin = $plugin;
parent::__construct($plugin->getTemplateResource('settingsForm.tpl'));
$this->addCheck(new FormValidatorPost($this));
$this->addCheck(new FormValidatorCSRF($this));
}
/**
* Initialize form data
*/
public function initData()
{
$contextId = $this->_contextId;
$plugin = $this->_plugin;
$this->setData('emailOptional', $plugin->getSetting($contextId, 'emailOptional'));
parent::initData();
}
/**
* Assign form data to user-submitted data
*/
public function readInputData()
{
$this->readUserVars(array('emailOptional'));
parent::readInputData();
}
/**
* Fetch the form.
* @copydoc Form::fetch()
*/
public 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.
*/
public function execute(...$functionArgs)
{
$plugin = $this->_plugin;
$contextId = $this->_contextId;
$isEmailOptional = $this->getData('emailOptional');
if ($isEmailOptional) {
Schema::table('authors', function (Blueprint $table) {
$table->string('email', 90)->nullable()->change();
});
} else {
DB::table('authors')
->whereNull('email')
->update(['email' => '']);
Schema::table('authors', function (Blueprint $table) {
$table->string('email', 90)->change();
});
}
$plugin->updateSetting($contextId, 'emailOptional', $isEmailOptional, 'bool');
return parent::execute(...$functionArgs);
}
}