summaryrefslogtreecommitdiff
path: root/app/Http/RequestHandlers/TreePageDefaultEdit.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Http/RequestHandlers/TreePageDefaultEdit.php')
-rw-r--r--app/Http/RequestHandlers/TreePageDefaultEdit.php83
1 files changed, 83 insertions, 0 deletions
diff --git a/app/Http/RequestHandlers/TreePageDefaultEdit.php b/app/Http/RequestHandlers/TreePageDefaultEdit.php
new file mode 100644
index 0000000000..2c28d1f69b
--- /dev/null
+++ b/app/Http/RequestHandlers/TreePageDefaultEdit.php
@@ -0,0 +1,83 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2019 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\Http\ViewResponseTrait;
+use Fisharebest\Webtrees\I18N;
+use Fisharebest\Webtrees\Module\ModuleBlockInterface;
+use Fisharebest\Webtrees\Services\HomePageService;
+use Psr\Http\Message\ResponseInterface;
+use Psr\Http\Message\ServerRequestInterface;
+use Psr\Http\Server\RequestHandlerInterface;
+
+use function route;
+
+/**
+ * Controller for the user/tree's home page.
+ */
+class TreePageDefaultEdit implements RequestHandlerInterface
+{
+ use ViewResponseTrait;
+
+ /** @var HomePageService */
+ private $home_page_service;
+
+ /**
+ * HomePageController constructor.
+ *
+ * @param HomePageService $home_page_service
+ */
+ public function __construct(HomePageService $home_page_service)
+ {
+ $this->home_page_service = $home_page_service;
+ }
+
+ /**
+ * Show a form to edit the default blocks for new trees.
+ *
+ * @param ServerRequestInterface $request
+ *
+ * @return ResponseInterface
+ */
+ public function handle(ServerRequestInterface $request): ResponseInterface
+ {
+ $this->layout = 'layouts/administration';
+
+ $this->home_page_service->checkDefaultTreeBlocksExist();
+
+ $main_blocks = $this->home_page_service->treeBlocks(-1, ModuleBlockInterface::MAIN_BLOCKS);
+ $side_blocks = $this->home_page_service->treeBlocks(-1, ModuleBlockInterface::SIDE_BLOCKS);
+
+ $all_blocks = $this->home_page_service->availableTreeBlocks();
+ $title = I18N::translate('Set the default blocks for new family trees');
+ $url_cancel = route(ControlPanel::class);
+ $url_save = route(TreePageDefaultUpdate::class);
+
+ return $this->viewResponse('edit-blocks-page', [
+ 'all_blocks' => $all_blocks,
+ 'can_reset' => false,
+ 'main_blocks' => $main_blocks,
+ 'side_blocks' => $side_blocks,
+ 'title' => $title,
+ 'url_cancel' => $url_cancel,
+ 'url_save' => $url_save,
+ ]);
+ }
+}