15afbc57aSGreg Roach<?php 25afbc57aSGreg Roach 35afbc57aSGreg Roach/** 45afbc57aSGreg Roach * webtrees: online genealogy 55afbc57aSGreg Roach * Copyright (C) 2019 webtrees development team 65afbc57aSGreg Roach * This program is free software: you can redistribute it and/or modify 75afbc57aSGreg Roach * it under the terms of the GNU General Public License as published by 85afbc57aSGreg Roach * the Free Software Foundation, either version 3 of the License, or 95afbc57aSGreg Roach * (at your option) any later version. 105afbc57aSGreg Roach * This program is distributed in the hope that it will be useful, 115afbc57aSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 125afbc57aSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 135afbc57aSGreg Roach * GNU General Public License for more details. 145afbc57aSGreg Roach * You should have received a copy of the GNU General Public License 155afbc57aSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 165afbc57aSGreg Roach */ 17*fcfa147eSGreg Roach 185afbc57aSGreg Roachdeclare(strict_types=1); 195afbc57aSGreg Roach 205afbc57aSGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers; 215afbc57aSGreg Roach 225afbc57aSGreg Roachuse Fisharebest\Webtrees\Http\Controllers\AbstractBaseController; 235afbc57aSGreg Roachuse Fisharebest\Webtrees\I18N; 245afbc57aSGreg Roachuse Fisharebest\Webtrees\Services\TreeService; 255afbc57aSGreg Roachuse Psr\Http\Message\ResponseInterface; 265afbc57aSGreg Roachuse Psr\Http\Message\ServerRequestInterface; 275afbc57aSGreg Roach 285afbc57aSGreg Roach/** 295afbc57aSGreg Roach * Show a form to create a new tree. 305afbc57aSGreg Roach */ 315afbc57aSGreg Roachclass CreateTreePage extends AbstractBaseController 325afbc57aSGreg Roach{ 335afbc57aSGreg Roach /** @var TreeService */ 345afbc57aSGreg Roach private $tree_service; 355afbc57aSGreg Roach 365afbc57aSGreg Roach /** 375afbc57aSGreg Roach * CreateTreePage constructor. 385afbc57aSGreg Roach * 395afbc57aSGreg Roach * @param TreeService $tree_service 405afbc57aSGreg Roach */ 415afbc57aSGreg Roach public function __construct(TreeService $tree_service) 425afbc57aSGreg Roach { 435afbc57aSGreg Roach $this->tree_service = $tree_service; 445afbc57aSGreg Roach } 455afbc57aSGreg Roach 465afbc57aSGreg Roach /** 475afbc57aSGreg Roach * @param ServerRequestInterface $request 485afbc57aSGreg Roach * 495afbc57aSGreg Roach * @return ResponseInterface 505afbc57aSGreg Roach */ 515afbc57aSGreg Roach public function handle(ServerRequestInterface $request): ResponseInterface 525afbc57aSGreg Roach { 535afbc57aSGreg Roach $this->layout = 'layouts/administration'; 545afbc57aSGreg Roach 555afbc57aSGreg Roach $title = I18N::translate('Create a family tree'); 565afbc57aSGreg Roach $tree_name = $request->getQueryParams()['name'] ?? $this->tree_service->uniqueTreeName(); 575afbc57aSGreg Roach $tree_title = $request->getQueryParams()['title'] ?? I18N::translate('My family tree'); 585afbc57aSGreg Roach 595afbc57aSGreg Roach return $this->viewResponse('admin/trees-create', [ 605afbc57aSGreg Roach 'title' => $title, 615afbc57aSGreg Roach 'tree_name' => $tree_name, 625afbc57aSGreg Roach 'tree_title' => $tree_title, 635afbc57aSGreg Roach ]); 645afbc57aSGreg Roach } 655afbc57aSGreg Roach} 66