. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; use Fisharebest\Webtrees\I18N; /** * Class IndividualFamiliesReportModule */ class IndividualFamiliesReportModule extends AbstractModule implements ModuleReportInterface { use ModuleReportTrait; /** @var int The default access level for this module. It can be changed in the control panel. */ protected int $access_level = Auth::PRIV_USER; /** * 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('Related families'); } /** * 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 “Related families” */ return I18N::translate('A report of the families that are closely related to an individual.'); } }