xref: /webtrees/app/Module/BirthReportModule.php (revision 961ec7555e8fa1828ea16f2a1fd6a74f140ce707)
18c2e8227SGreg Roach<?php
28c2e8227SGreg Roach/**
38c2e8227SGreg Roach * webtrees: online genealogy
48fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
58c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify
68c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by
78c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or
88c2e8227SGreg Roach * (at your option) any later version.
98c2e8227SGreg Roach * This program is distributed in the hope that it will be useful,
108c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
118c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
128c2e8227SGreg Roach * GNU General Public License for more details.
138c2e8227SGreg Roach * You should have received a copy of the GNU General Public License
148c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
158c2e8227SGreg Roach */
16e7f56f2aSGreg Roachdeclare(strict_types=1);
17e7f56f2aSGreg Roach
1876692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module;
1976692c8bSGreg Roach
200e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N;
212c2c92e6SGreg Roachuse Fisharebest\Webtrees\Individual;
220e62c4b8SGreg Roachuse Fisharebest\Webtrees\Menu;
238c2e8227SGreg Roach
248c2e8227SGreg Roach/**
258c2e8227SGreg Roach * Class BirthReportModule
268c2e8227SGreg Roach */
2749a243cbSGreg Roachclass BirthReportModule extends AbstractModule implements ModuleInterface, ModuleReportInterface
28c1010edaSGreg Roach{
2949a243cbSGreg Roach    use ModuleReportTrait;
3049a243cbSGreg Roach
31*961ec755SGreg Roach    /**
32*961ec755SGreg Roach     * How should this module be labelled on tabs, menus, etc.?
33*961ec755SGreg Roach     *
34*961ec755SGreg Roach     * @return string
35*961ec755SGreg Roach     */
3649a243cbSGreg Roach    public function title(): string
37c1010edaSGreg Roach    {
388c2e8227SGreg Roach        // This text also appears in the .XML file - update both together
39bbb76c12SGreg Roach        /* I18N: Name of a module/report */
40bbb76c12SGreg Roach        return I18N::translate('Births');
418c2e8227SGreg Roach    }
428c2e8227SGreg Roach
43*961ec755SGreg Roach    /**
44*961ec755SGreg Roach     * A sentence describing what this module does.
45*961ec755SGreg Roach     *
46*961ec755SGreg Roach     * @return string
47*961ec755SGreg Roach     */
4849a243cbSGreg Roach    public function description(): string
49c1010edaSGreg Roach    {
508c2e8227SGreg Roach        // This text also appears in the .XML file - update both together
51bbb76c12SGreg Roach        /* I18N: Description of the “Births” module */
52bbb76c12SGreg Roach        return I18N::translate('A report of individuals who were born in a given time or place.');
538c2e8227SGreg Roach    }
548c2e8227SGreg Roach
550ee13198SGreg Roach    /**
560ee13198SGreg Roach     * Return a menu item for this report.
570ee13198SGreg Roach     *
582c2c92e6SGreg Roach     * @param Individual $individual
59dc809433SGreg Roach     *
600ee13198SGreg Roach     * @return Menu
610ee13198SGreg Roach     */
622c2c92e6SGreg Roach    public function getReportMenu(Individual $individual): Menu
63c1010edaSGreg Roach    {
640ee13198SGreg Roach        return new Menu(
6549a243cbSGreg Roach            $this->title(),
662c2c92e6SGreg Roach            route('report-setup', [
672c2c92e6SGreg Roach                'ged'    => $individual->tree()->name(),
68c1010edaSGreg Roach                'report' => $this->getName(),
69c1010edaSGreg Roach            ]),
700ee13198SGreg Roach            'menu-report-' . $this->getName(),
7113abd6f3SGreg Roach            ['rel' => 'nofollow']
728c2e8227SGreg Roach        );
738c2e8227SGreg Roach    }
748c2e8227SGreg Roach}
75