xref: /webtrees/app/Http/RequestHandlers/SitePreferencesPage.php (revision c4943cff72f95a28fbb9404e3c20b169ff098e5c)
1c7aa856bSGreg Roach<?php
2c7aa856bSGreg Roach
3c7aa856bSGreg Roach/**
4c7aa856bSGreg Roach * webtrees: online genealogy
589f7189bSGreg Roach * Copyright (C) 2021 webtrees development team
6c7aa856bSGreg Roach * This program is free software: you can redistribute it and/or modify
7c7aa856bSGreg Roach * it under the terms of the GNU General Public License as published by
8c7aa856bSGreg Roach * the Free Software Foundation, either version 3 of the License, or
9c7aa856bSGreg Roach * (at your option) any later version.
10c7aa856bSGreg Roach * This program is distributed in the hope that it will be useful,
11c7aa856bSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12c7aa856bSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13c7aa856bSGreg Roach * GNU General Public License for more details.
14c7aa856bSGreg Roach * You should have received a copy of the GNU General Public License
1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16c7aa856bSGreg Roach */
17c7aa856bSGreg Roach
18c7aa856bSGreg Roachdeclare(strict_types=1);
19c7aa856bSGreg Roach
20c7aa856bSGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers;
21c7aa856bSGreg Roach
22c7aa856bSGreg Roachuse Fisharebest\Webtrees\Http\ViewResponseTrait;
23c7aa856bSGreg Roachuse Fisharebest\Webtrees\I18N;
24c7aa856bSGreg Roachuse Fisharebest\Webtrees\Module\ModuleThemeInterface;
25c7aa856bSGreg Roachuse Fisharebest\Webtrees\Services\ModuleService;
26c7aa856bSGreg Roachuse Psr\Http\Message\ResponseInterface;
27c7aa856bSGreg Roachuse Psr\Http\Message\ServerRequestInterface;
28c7aa856bSGreg Roachuse Psr\Http\Server\RequestHandlerInterface;
29c7aa856bSGreg Roach
30c7aa856bSGreg Roach/**
31c7aa856bSGreg Roach * Edit the site preferences.
32c7aa856bSGreg Roach */
33c7aa856bSGreg Roachclass SitePreferencesPage implements RequestHandlerInterface
34c7aa856bSGreg Roach{
35c7aa856bSGreg Roach    use ViewResponseTrait;
36c7aa856bSGreg Roach
37*c4943cffSGreg Roach    private ModuleService $module_service;
38c7aa856bSGreg Roach
39c7aa856bSGreg Roach    /**
40c7aa856bSGreg Roach     * AdminSiteController constructor.
41c7aa856bSGreg Roach     *
42c7aa856bSGreg Roach     * @param ModuleService $module_service
43c7aa856bSGreg Roach     */
44c7aa856bSGreg Roach    public function __construct(ModuleService $module_service)
45c7aa856bSGreg Roach    {
46c7aa856bSGreg Roach        $this->module_service = $module_service;
47c7aa856bSGreg Roach    }
48c7aa856bSGreg Roach
49c7aa856bSGreg Roach    /**
50c7aa856bSGreg Roach     * @param ServerRequestInterface $request
51c7aa856bSGreg Roach     *
52c7aa856bSGreg Roach     * @return ResponseInterface
53c7aa856bSGreg Roach     */
54c7aa856bSGreg Roach    public function handle(ServerRequestInterface $request): ResponseInterface
55c7aa856bSGreg Roach    {
56c7aa856bSGreg Roach        $this->layout = 'layouts/administration';
57c7aa856bSGreg Roach
58c7aa856bSGreg Roach        $all_themes = $this->module_service
5971cfb8d6SGreg Roach            ->findByInterface(ModuleThemeInterface::class, true, true)
60c7aa856bSGreg Roach            ->map($this->module_service->titleMapper());
61c7aa856bSGreg Roach
62c7aa856bSGreg Roach        $max_execution_time = (int) get_cfg_var('max_execution_time');
63c7aa856bSGreg Roach
64c7aa856bSGreg Roach        $title = I18N::translate('Website preferences');
65c7aa856bSGreg Roach
66c7aa856bSGreg Roach        return $this->viewResponse('admin/site-preferences', [
67c7aa856bSGreg Roach            'all_themes'         => $all_themes,
68c7aa856bSGreg Roach            'max_execution_time' => $max_execution_time,
69c7aa856bSGreg Roach            'title'              => $title,
70c7aa856bSGreg Roach        ]);
71c7aa856bSGreg Roach    }
72c7aa856bSGreg Roach}
73