. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Individual; use Fisharebest\Webtrees\Menu; /** * Class PedigreeReportModule */ class PedigreeReportModule extends AbstractModule implements ModuleInterface, ModuleReportInterface { use ModuleReportTrait; /** {@inheritdoc} */ public function title(): string { // This text also appears in the .XML file - update both together /* I18N: Name of a report */ return I18N::translate('Pedigree'); } /** {@inheritdoc} */ public function description(): string { // This text also appears in the .XML file - update both together /* I18N: Description of the “Pedigree” module */ return I18N::translate('A report of an individual’s ancestors, formatted as a tree.'); } /** * Return a menu item for this report. * * @param Individual $individual * * @return Menu */ public function getReportMenu(Individual $individual): Menu { return new Menu( $this->title(), route('report-setup', [ 'xref' => $individual->xref(), 'ged' => $individual->tree()->name(), 'report' => $this->getName(), ]), 'menu-report-' . $this->getName(), ['rel' => 'nofollow'] ); } }