xref: /webtrees/app/Module/ListsMenuModule.php (revision 43f2f523bcb6d4090564d23802872c0679ede6bc)
146295629SGreg Roach<?php
23976b470SGreg Roach
346295629SGreg Roach/**
446295629SGreg Roach * webtrees: online genealogy
589f7189bSGreg Roach * Copyright (C) 2021 webtrees development team
646295629SGreg Roach * This program is free software: you can redistribute it and/or modify
746295629SGreg Roach * it under the terms of the GNU General Public License as published by
846295629SGreg Roach * the Free Software Foundation, either version 3 of the License, or
946295629SGreg Roach * (at your option) any later version.
1046295629SGreg Roach * This program is distributed in the hope that it will be useful,
1146295629SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
1246295629SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1346295629SGreg Roach * GNU General Public License for more details.
1446295629SGreg 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/>.
1646295629SGreg Roach */
17fcfa147eSGreg Roach
1846295629SGreg Roachdeclare(strict_types=1);
1946295629SGreg Roach
2046295629SGreg Roachnamespace Fisharebest\Webtrees\Module;
2146295629SGreg Roach
2267992b6aSRichard Cisseeuse Fisharebest\Webtrees\Auth;
2346295629SGreg Roachuse Fisharebest\Webtrees\I18N;
2446295629SGreg Roachuse Fisharebest\Webtrees\Menu;
2567992b6aSRichard Cisseeuse Fisharebest\Webtrees\Services\ModuleService;
2646295629SGreg Roachuse Fisharebest\Webtrees\Tree;
2746295629SGreg Roach
2846295629SGreg Roach/**
2946295629SGreg Roach * Class ListsMenuModule - provide a menu option for the lists
3046295629SGreg Roach */
3137eb8894SGreg Roachclass ListsMenuModule extends AbstractModule implements ModuleMenuInterface
3246295629SGreg Roach{
3346295629SGreg Roach    use ModuleMenuTrait;
3446295629SGreg Roach
35*43f2f523SGreg Roach    private ModuleService $module_service;
3667992b6aSRichard Cissee
3767992b6aSRichard Cissee    /**
3867992b6aSRichard Cissee     * ListsMenuModule constructor.
3967992b6aSRichard Cissee     *
4067992b6aSRichard Cissee     * @param ModuleService $module_service
4167992b6aSRichard Cissee     */
4267992b6aSRichard Cissee    public function __construct(ModuleService $module_service)
4367992b6aSRichard Cissee    {
4467992b6aSRichard Cissee        $this->module_service = $module_service;
4567992b6aSRichard Cissee    }
4667992b6aSRichard Cissee
4767992b6aSRichard Cissee    /**
480cfd6963SGreg Roach     * How should this module be identified in the control panel, etc.?
49961ec755SGreg Roach     *
50961ec755SGreg Roach     * @return string
51961ec755SGreg Roach     */
5246295629SGreg Roach    public function title(): string
5346295629SGreg Roach    {
5446295629SGreg Roach        /* I18N: Name of a module */
5546295629SGreg Roach        return I18N::translate('Lists');
5646295629SGreg Roach    }
5746295629SGreg Roach
58961ec755SGreg Roach    /**
59961ec755SGreg Roach     * A sentence describing what this module does.
60961ec755SGreg Roach     *
61961ec755SGreg Roach     * @return string
62961ec755SGreg Roach     */
6346295629SGreg Roach    public function description(): string
6446295629SGreg Roach    {
659e0868cbSGreg Roach        /* I18N: Description of the “Lists” module */
6646295629SGreg Roach        return I18N::translate('The lists menu.');
6746295629SGreg Roach    }
6846295629SGreg Roach
6946295629SGreg Roach    /**
7046295629SGreg Roach     * The default position for this menu.  It can be changed in the control panel.
7146295629SGreg Roach     *
7246295629SGreg Roach     * @return int
7346295629SGreg Roach     */
7446295629SGreg Roach    public function defaultMenuOrder(): int
7546295629SGreg Roach    {
76353b36abSGreg Roach        return 3;
7746295629SGreg Roach    }
7846295629SGreg Roach
7946295629SGreg Roach    /**
8046295629SGreg Roach     * A menu, to be added to the main application menu.
8146295629SGreg Roach     *
8246295629SGreg Roach     * @param Tree $tree
8346295629SGreg Roach     *
8446295629SGreg Roach     * @return Menu|null
8546295629SGreg Roach     */
8646295629SGreg Roach    public function getMenu(Tree $tree): ?Menu
8746295629SGreg Roach    {
8887cca37cSGreg Roach        $submenus = $this->module_service->findByComponent(ModuleListInterface::class, $tree, Auth::user())
890b5fd0a6SGreg Roach            ->map(static function (ModuleListInterface $module) use ($tree): ?Menu {
9067992b6aSRichard Cissee                return $module->listMenu($tree);
9167992b6aSRichard Cissee            })
9287cca37cSGreg Roach            ->filter()
930b93976aSGreg Roach            ->sort(static function (Menu $x, Menu $y): int {
9487cca37cSGreg Roach                return $x->getLabel() <=> $y->getLabel();
9567992b6aSRichard Cissee            });
9646295629SGreg Roach
9787cca37cSGreg Roach        if ($submenus->isEmpty()) {
9867992b6aSRichard Cissee            return null;
9946295629SGreg Roach        }
10046295629SGreg Roach
10187cca37cSGreg Roach        return new Menu(I18N::translate('Lists'), '#', 'menu-list', [], $submenus->all());
10246295629SGreg Roach    }
10346295629SGreg Roach}
104