xref: /webtrees/app/Module/FamilyNavigatorModule.php (revision 8f53f488f13e53e44dc48778e8f51ec9f91352dd)
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 */
1676692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module;
1776692c8bSGreg Roach
180e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N;
190e62c4b8SGreg Roachuse Fisharebest\Webtrees\Individual;
208c2e8227SGreg Roach
218c2e8227SGreg Roach/**
228c2e8227SGreg Roach * Class FamilyNavigatorModule
238c2e8227SGreg Roach */
24c1010edaSGreg Roachclass FamilyNavigatorModule extends AbstractModule implements ModuleSidebarInterface
25c1010edaSGreg Roach{
268c2e8227SGreg Roach    /** {@inheritdoc} */
27*8f53f488SRico Sonntag    public function getTitle(): string
28c1010edaSGreg Roach    {
29bbb76c12SGreg Roach        /* I18N: Name of a module/sidebar */
30bbb76c12SGreg Roach        return I18N::translate('Family navigator');
318c2e8227SGreg Roach    }
328c2e8227SGreg Roach
338c2e8227SGreg Roach    /** {@inheritdoc} */
34*8f53f488SRico Sonntag    public function getDescription(): string
35c1010edaSGreg Roach    {
36bbb76c12SGreg Roach        /* I18N: Description of the “Family navigator” module */
37bbb76c12SGreg Roach        return I18N::translate('A sidebar showing an individual’s close families and relatives.');
388c2e8227SGreg Roach    }
398c2e8227SGreg Roach
408c2e8227SGreg Roach    /** {@inheritdoc} */
41*8f53f488SRico Sonntag    public function defaultSidebarOrder(): int
42c1010edaSGreg Roach    {
438c2e8227SGreg Roach        return 20;
448c2e8227SGreg Roach    }
458c2e8227SGreg Roach
468c2e8227SGreg Roach    /** {@inheritdoc} */
47*8f53f488SRico Sonntag    public function hasSidebarContent(Individual $individual): bool
48c1010edaSGreg Roach    {
4938a9583bSGreg Roach        return true;
508c2e8227SGreg Roach    }
518c2e8227SGreg Roach
5276692c8bSGreg Roach    /**
5376692c8bSGreg Roach     * Load this sidebar synchronously.
5476692c8bSGreg Roach     *
55225e381fSGreg Roach     * @param Individual $individual
56225e381fSGreg Roach     *
5776692c8bSGreg Roach     * @return string
5876692c8bSGreg Roach     */
59*8f53f488SRico Sonntag    public function getSidebarContent(Individual $individual): string
60c1010edaSGreg Roach    {
61a8cd57e1SGreg Roach        return view('modules/family_nav/sidebar', ['individual' => $individual]);
628c2e8227SGreg Roach    }
638c2e8227SGreg Roach}
64