. */ namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Theme; use Fisharebest\Webtrees\View; /** * Class ThemeSelectModule */ class ThemeSelectModule extends AbstractModule implements ModuleBlockInterface { /** {@inheritdoc} */ public function getTitle() { return /* I18N: Name of a module */ I18N::translate('Theme change'); } /** {@inheritdoc} */ public function getDescription() { return /* I18N: Description of the “Theme change” module */ I18N::translate('An alternative way to select a new theme.'); } /** * Generate the HTML content of this block. * * @param int $block_id * @param bool $template * @param string[] $cfg * * @return string */ public function getBlock($block_id, $template = true, $cfg = []): string { $menu = Theme::theme()->menuThemes(); if ($menu) { $content = ''; if ($template) { return View::make('blocks/template', [ 'block' => str_replace('_', '-', $this->getName()), 'id' => $block_id, 'config_url' => '', 'title' => $this->getTitle(), 'content' => $content, ]); } else { return $content; } } else { return ''; } } /** {@inheritdoc} */ public function loadAjax(): bool { return false; } /** {@inheritdoc} */ public function isUserBlock(): bool { return true; } /** {@inheritdoc} */ public function isGedcomBlock(): bool { return true; } /** * An HTML form to edit block settings * * @param int $block_id * * @return void */ public function configureBlock($block_id) { } }