xref: /webtrees/app/Module/FamilyBookChartModule.php (revision e65629820189baa4ae743eb866cb88cc852d5956)
1168ff6f3Sric2016<?php
2168ff6f3Sric2016/**
3168ff6f3Sric2016 * webtrees: online genealogy
48fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
5168ff6f3Sric2016 * This program is free software: you can redistribute it and/or modify
6168ff6f3Sric2016 * it under the terms of the GNU General Public License as published by
7168ff6f3Sric2016 * the Free Software Foundation, either version 3 of the License, or
8168ff6f3Sric2016 * (at your option) any later version.
9168ff6f3Sric2016 * This program is distributed in the hope that it will be useful,
10168ff6f3Sric2016 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11168ff6f3Sric2016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12168ff6f3Sric2016 * GNU General Public License for more details.
13168ff6f3Sric2016 * You should have received a copy of the GNU General Public License
14168ff6f3Sric2016 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15168ff6f3Sric2016 */
16e7f56f2aSGreg Roachdeclare(strict_types=1);
17e7f56f2aSGreg Roach
18168ff6f3Sric2016namespace Fisharebest\Webtrees\Module;
19168ff6f3Sric2016
20168ff6f3Sric2016use Fisharebest\Webtrees\I18N;
21168ff6f3Sric2016use Fisharebest\Webtrees\Individual;
22e46b0479SScrutinizer Auto-Fixeruse Fisharebest\Webtrees\Menu;
23168ff6f3Sric2016
24168ff6f3Sric2016/**
25168ff6f3Sric2016 * Class FamilyBookChartModule
26168ff6f3Sric2016 */
2749a243cbSGreg Roachclass FamilyBookChartModule extends AbstractModule implements ModuleInterface, ModuleChartInterface
28c1010edaSGreg Roach{
2949a243cbSGreg Roach    use ModuleChartTrait;
3049a243cbSGreg Roach
31168ff6f3Sric2016    /**
32168ff6f3Sric2016     * How should this module be labelled on tabs, menus, etc.?
33168ff6f3Sric2016     *
34168ff6f3Sric2016     * @return string
35168ff6f3Sric2016     */
3649a243cbSGreg Roach    public function title(): string
37c1010edaSGreg Roach    {
38bbb76c12SGreg Roach        /* I18N: Name of a module/chart */
39bbb76c12SGreg Roach        return I18N::translate('Family book');
40168ff6f3Sric2016    }
41168ff6f3Sric2016
42168ff6f3Sric2016    /**
43168ff6f3Sric2016     * A sentence describing what this module does.
44168ff6f3Sric2016     *
45168ff6f3Sric2016     * @return string
46168ff6f3Sric2016     */
4749a243cbSGreg Roach    public function description(): string
48c1010edaSGreg Roach    {
49bbb76c12SGreg Roach        /* I18N: Description of the “FamilyBookChart” module */
50bbb76c12SGreg Roach        return I18N::translate('A chart of an individual’s ancestors and descendants, as a family book.');
51168ff6f3Sric2016    }
52168ff6f3Sric2016
53168ff6f3Sric2016    /**
544eb71cfaSGreg Roach     * Return a menu item for this chart - for use in individual boxes.
554eb71cfaSGreg Roach     *
5660bc3e3fSGreg Roach     * @param Individual $individual
5760bc3e3fSGreg Roach     *
584eb71cfaSGreg Roach     * @return Menu|null
594eb71cfaSGreg Roach     */
60*e6562982SGreg Roach    public function chartMenuIndividual(Individual $individual): ?Menu
61c1010edaSGreg Roach    {
62*e6562982SGreg Roach        return $this->chartMenu($individual);
63*e6562982SGreg Roach    }
64*e6562982SGreg Roach
65*e6562982SGreg Roach    /**
66*e6562982SGreg Roach     * The title for a specific instance of this chart.
67*e6562982SGreg Roach     *
68*e6562982SGreg Roach     * @param Individual $individual
69*e6562982SGreg Roach     *
70*e6562982SGreg Roach     * @return string
71*e6562982SGreg Roach     */
72*e6562982SGreg Roach    public function chartTitle(Individual $individual): string
73*e6562982SGreg Roach    {
74*e6562982SGreg Roach        /* I18N: %s is an individual’s name */
75*e6562982SGreg Roach        return I18N::translate('Family book of %s', $individual->getFullName());
76*e6562982SGreg Roach    }
77*e6562982SGreg Roach
78*e6562982SGreg Roach    /**
79*e6562982SGreg Roach     * The URL for this chart.
80*e6562982SGreg Roach     *
81*e6562982SGreg Roach     * @param Individual $individual
82*e6562982SGreg Roach     * @param string[]   $parameters
83*e6562982SGreg Roach     *
84*e6562982SGreg Roach     * @return string
85*e6562982SGreg Roach     */
86*e6562982SGreg Roach    public function chartUrl(Individual $individual, array $parameters = []): string
87*e6562982SGreg Roach    {
88*e6562982SGreg Roach        return route('family-book', [
89*e6562982SGreg Roach            'ged'  => $individual->tree()->name(),
90*e6562982SGreg Roach            'xref' => $individual->xref(),
91*e6562982SGreg Roach        ] + $parameters);
92*e6562982SGreg Roach    }
93*e6562982SGreg Roach
94*e6562982SGreg Roach    /**
95*e6562982SGreg Roach     * CSS class for the URL.
96*e6562982SGreg Roach     *
97*e6562982SGreg Roach     * @return string
98*e6562982SGreg Roach     */
99*e6562982SGreg Roach    public function chartUrlClasss(): string
100*e6562982SGreg Roach    {
101*e6562982SGreg Roach        return 'menu-chart-familybook';
102168ff6f3Sric2016    }
103168ff6f3Sric2016}
104