xref: /webtrees/app/Module/AhnentafelReportModule.php (revision e7f56f2af615447ab1a7646851f88b465ace9e04)
18c2e8227SGreg Roach<?php
28c2e8227SGreg Roach/**
38c2e8227SGreg Roach * webtrees: online genealogy
41062a142SGreg Roach * Copyright (C) 2018 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 */
16*e7f56f2aSGreg Roachdeclare(strict_types=1);
17*e7f56f2aSGreg Roach
1876692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module;
1976692c8bSGreg Roach
200e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth;
210e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N;
220e62c4b8SGreg Roachuse Fisharebest\Webtrees\Menu;
23dc809433SGreg Roachuse Fisharebest\Webtrees\Tree;
248c2e8227SGreg Roach
258c2e8227SGreg Roach/**
268c2e8227SGreg Roach * Class AhnentafelReportModule
278c2e8227SGreg Roach */
28c1010edaSGreg Roachclass AhnentafelReportModule extends AbstractModule implements ModuleReportInterface
29c1010edaSGreg Roach{
3076692c8bSGreg Roach    /**
3176692c8bSGreg Roach     * How should this module be labelled on tabs, menus, etc.?
3276692c8bSGreg Roach     *
3376692c8bSGreg Roach     * @return string
3476692c8bSGreg Roach     */
358f53f488SRico Sonntag    public function getTitle(): string
36c1010edaSGreg Roach    {
378c2e8227SGreg Roach        // This text also appears in the .XML file - update both together
38bbb76c12SGreg Roach        /* I18N: Name of a module/report */
39bbb76c12SGreg Roach        return I18N::translate('Ancestors');
408c2e8227SGreg Roach    }
418c2e8227SGreg Roach
4276692c8bSGreg Roach    /**
4376692c8bSGreg Roach     * A sentence describing what this module does.
4476692c8bSGreg Roach     *
4576692c8bSGreg Roach     * @return string
4676692c8bSGreg Roach     */
478f53f488SRico Sonntag    public function getDescription(): string
48c1010edaSGreg Roach    {
498c2e8227SGreg Roach        // This text also appears in the .XML file - update both together
50bbb76c12SGreg Roach        /* I18N: Description of the “Ancestors” module */
51bbb76c12SGreg Roach        return I18N::translate('A report of an individual’s ancestors, in a narrative style.');
528c2e8227SGreg Roach    }
538c2e8227SGreg Roach
5476692c8bSGreg Roach    /**
5576692c8bSGreg Roach     * What is the default access level for this module?
5676692c8bSGreg Roach     *
5776692c8bSGreg Roach     * Some modules are aimed at admins or managers, and are not generally shown to users.
5876692c8bSGreg Roach     *
5976692c8bSGreg Roach     * @return int
6076692c8bSGreg Roach     */
618f53f488SRico Sonntag    public function defaultAccessLevel(): int
62c1010edaSGreg Roach    {
634b9ff166SGreg Roach        return Auth::PRIV_PRIVATE;
648c2e8227SGreg Roach    }
658c2e8227SGreg Roach
6676692c8bSGreg Roach    /**
670ee13198SGreg Roach     * Return a menu item for this report.
6876692c8bSGreg Roach     *
69dc809433SGreg Roach     * @param Tree $tree
70dc809433SGreg Roach     *
710ee13198SGreg Roach     * @return Menu
7276692c8bSGreg Roach     */
73c1010edaSGreg Roach    public function getReportMenu(Tree $tree): Menu
74c1010edaSGreg Roach    {
750ee13198SGreg Roach        return new Menu(
768c2e8227SGreg Roach            $this->getTitle(),
77c1010edaSGreg Roach            route('report-setup', ['ged'    => $tree->getName(),
78c1010edaSGreg Roach                                   'report' => $this->getName(),
79c1010edaSGreg Roach            ]),
800ee13198SGreg Roach            'menu-report-' . $this->getName(),
8113abd6f3SGreg Roach            ['rel' => 'nofollow']
828c2e8227SGreg Roach        );
838c2e8227SGreg Roach    }
848c2e8227SGreg Roach}
85