. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Individual; use Illuminate\Support\Collection; /** * Interface ModuleSidebarInterface - Classes and libraries for module system */ interface ModuleSidebarInterface extends ModuleInterface { /** * The text that appears on the sidebar's title. * * @return string */ public function sidebarTitle(): string; /** * Users change change the order of sidebars using the control panel. * * @param int $sidebar_order * * @return void */ public function setSidebarOrder(int $sidebar_order): void; /** * Users change change the order of sidebars using the control panel. * * @return int */ public function getSidebarOrder(): int; /** * The default position for this sidebar. It can be changed in the control panel. * * @return int */ public function defaultSidebarOrder(): int; /** * Sidebar content. * * @param Individual $individual * * @return string */ public function getSidebarContent(Individual $individual): string; /** * Does this sidebar have anything to display for this individual? * * @param Individual $individual * * @return bool */ public function hasSidebarContent(Individual $individual): bool; /** * This module handles the following facts - so don't show them on the "Facts and events" tab. * * @return Collection|string[] */ public function supportedFacts(): Collection; }