. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Individual; use Fisharebest\Webtrees\Menu; /** * Class CemeteryReportModule */ class CemeteryReportModule extends AbstractModule implements ModuleReportInterface { use ModuleReportTrait; /** * How should this module be identified in the control panel, etc.? * * @return string */ public function title(): string { // This text also appears in the .XML file - update both together /* I18N: Name of a module/report */ return I18N::translate('Burials'); } /** * A sentence describing what this module does. * * @return string */ public function description(): string { // This text also appears in the .XML file - update both together /* I18N: Description of the “Cemeteries” module */ return I18N::translate('A report of individuals who were buried in a given place.'); } /** * 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', [ 'ged' => $individual->tree()->name(), 'report' => $this->name(), ]), 'menu-report-' . $this->name(), ['rel' => 'nofollow'] ); } }