. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Tree; /** * Trait ModuleFooterTrait - default implementation of ModuleFooterInterface */ trait ModuleFooterTrait { /** @var int The default position for this footer. It can be changed in the control panel. */ protected $footer_order; /** * Users change change the order of footers using the control panel. * * @param int $footer_order * * @return void */ public function setFooterOrder(int $footer_order): void { $this->footer_order = $footer_order; } /** * Users change change the order of footers using the control panel. * * @return int */ public function getFooterOrder(): int { return $this->footer_order ?? $this->defaultFooterOrder(); } /** * The default position for this footer. * * @return int */ public function defaultFooterOrder(): int { return 9999; } /** * A footer, to be added at the bottom of every page. * * @param Tree|null $tree * * @return string */ public function getFooter(?Tree $tree): string { return ''; } }