. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\I18N; /** * The xenea theme. */ class XeneaTheme extends AbstractModule implements ModuleThemeInterface { use ModuleThemeTrait; /** * Where are our CSS, JS and other assets? */ public const ASSET_DIR = 'themes/xenea/css-2.0.0/'; protected const PERSON_BOX_CLASSES = [ 'M' => 'person_box', 'F' => 'person_boxF', 'U' => 'person_boxNN', ]; /** * How should this module be labelled on tabs, menus, etc.? * * @return string */ public function title(): string { /* I18N: Name of a theme. */ return I18N::translate('xenea'); } /** * Misecellaneous dimensions, fonts, styles, etc. * * @param string $parameter_name * * @return string|int|float */ public function parameter($parameter_name) { $parameters = [ 'chart-background-f' => 'e9daf1', 'chart-background-m' => 'b1cff0', 'chart-background-u' => 'eeeeee', 'chart-box-x' => 260, 'chart-box-y' => 85, 'chart-font-color' => '000000', 'chart-spacing-x' => 5, 'chart-spacing-y' => 10, 'compact-chart-box-x' => 240, 'compact-chart-box-y' => 50, 'distribution-chart-high-values' => '84beff', 'distribution-chart-low-values' => 'c3dfff', 'distribution-chart-no-values' => 'ffffff', 'distribution-chart-x' => 440, 'distribution-chart-y' => 220, 'line-width' => 1.5, 'shadow-blur' => 0, 'shadow-color' => '', 'shadow-offset-x' => 0, 'shadow-offset-y' => 0, 'stats-small-chart-x' => 440, 'stats-small-chart-y' => 125, 'stats-large-chart-x' => 900, 'image-dline' => 'themes/xenea/css-2.0.0/images/dline.png', 'image-dline2' => 'themes/xenea/css-2.0.0/images/dline2.png', 'image-hline' => 'themes/xenea/css-2.0.0/images/hline.png', 'image-spacer' => 'themes/xenea/css-2.0.0/images/spacer.png', 'image-vline' => 'themes/xenea/css-2.0.0/images/vline.png', 'image-minus' => 'themes/xenea/css-2.0.0/images/minus.png', 'image-plus' => 'themes/xenea/css-2.0.0/images/plus.png', ]; return $parameters[$parameter_name]; } /** * A list of CSS files to include for this page. * * @return string[] */ public function stylesheets(): array { return [ 'themes/_common/css-2.0.0/style.css', 'themes/xenea/css-2.0.0/style.css' ]; } }