diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2020-09-15 12:27:22 +0100 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2020-09-15 17:19:19 +0100 |
| commit | 9f667ff2169dfca16c3d1c0ebb87d36da533186b (patch) | |
| tree | 4ee2de59159a24570061ac765fdcd1ba04db4527 /app/Http/RequestHandlers/ModulesReportsAction.php | |
| parent | f4cd70d3c67f9b003fe3267c63591501d8a38156 (diff) | |
| download | webtrees-9f667ff2169dfca16c3d1c0ebb87d36da533186b.tar.gz webtrees-9f667ff2169dfca16c3d1c0ebb87d36da533186b.tar.bz2 webtrees-9f667ff2169dfca16c3d1c0ebb87d36da533186b.zip | |
Replace controller-actions with request-handlers
Diffstat (limited to 'app/Http/RequestHandlers/ModulesReportsAction.php')
| -rw-r--r-- | app/Http/RequestHandlers/ModulesReportsAction.php | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/app/Http/RequestHandlers/ModulesReportsAction.php b/app/Http/RequestHandlers/ModulesReportsAction.php new file mode 100644 index 0000000000..6c716d6366 --- /dev/null +++ b/app/Http/RequestHandlers/ModulesReportsAction.php @@ -0,0 +1,50 @@ +<?php + +/** + * webtrees: online genealogy + * Copyright (C) 20 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +declare(strict_types=1); + +namespace Fisharebest\Webtrees\Http\RequestHandlers; + +use Fisharebest\Webtrees\FlashMessages; +use Fisharebest\Webtrees\I18N; +use Fisharebest\Webtrees\Module\ModuleReportInterface; +use Psr\Http\Message\ResponseInterface; +use Psr\Http\Message\ServerRequestInterface; + +use function redirect; +use function route; + +/** + * Update a list of modules. + */ +class ModulesReportsAction extends AbstractModuleComponentAction +{ + /** + * @param ServerRequestInterface $request + * + * @return ResponseInterface + */ + public function handle(ServerRequestInterface $request): ResponseInterface + { + $this->updateStatus(ModuleReportInterface::class, $request); + $this->updateAccessLevel(ModuleReportInterface::class, $request); + + FlashMessages::addMessage(I18N::translate('The website preferences have been updated.'), 'success'); + + return redirect(route(ControlPanel::class)); + } +} |
