. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Individual; use Fisharebest\Webtrees\Menu; /** * Class FanChartModule */ class FanChartModule extends AbstractModule implements ModuleInterface, ModuleChartInterface { use ModuleChartTrait; /** * How should this module be labelled on tabs, menus, etc.? * * @return string */ public function title(): string { /* I18N: Name of a module/chart */ return I18N::translate('Fan chart'); } /** * A sentence describing what this module does. * * @return string */ public function description(): string { /* I18N: Description of the “Fan Chart” module */ return I18N::translate('A fan chart of an individual’s ancestors.'); } /** * Return a menu item for this chart. * * We can only do this if the GD2 library is installed with TrueType support. * * @param Individual $individual * * @return Menu|null */ public function getChartMenu(Individual $individual): ?Menu { if (function_exists('imagettftext')) { return new Menu( $this->title(), route('fan', [ 'xref' => $individual->xref(), 'ged' => $individual->tree()->name(), ]), 'menu-chart-fanchart', ['rel' => 'nofollow'] ); } return null; } /** * Return a menu item for this chart - for use in individual boxes. * * @param Individual $individual * * @return Menu|null */ public function getBoxChartMenu(Individual $individual): ?Menu { return $this->getChartMenu($individual); } }