theme-settings.php

Same filename in this branch
  1. 11.x core/modules/system/tests/themes/test_theme_settings/theme-settings.php
Same filename and directory in other branches
  1. 7.x themes/garland/theme-settings.php
  2. 7.x modules/simpletest/tests/themes/test_theme/theme-settings.php
  3. 9 core/themes/olivero/theme-settings.php
  4. 9 core/modules/system/tests/themes/test_theme_settings/theme-settings.php
  5. 8.9.x core/modules/system/tests/themes/test_theme_settings/theme-settings.php
  6. 10 core/themes/olivero/theme-settings.php
  7. 10 core/modules/system/tests/themes/test_theme_settings/theme-settings.php

Functions to support Olivero theme settings.

File

core/themes/olivero/theme-settings.php

View source
<?php


/**
 * @file
 * Functions to support Olivero theme settings.
 */
use Drupal\Core\Form\FormStateInterface;

/**
 * Implements hook_form_FORM_ID_alter() for system_theme_settings.
 */
function olivero_form_system_theme_settings_alter(&$form, FormStateInterface $form_state) {
    $form['#attached']['library'][] = 'olivero/color-picker';
    $color_config = [
        'colors' => [
            'base_primary_color' => 'Primary base color',
        ],
        'schemes' => [
            'default' => [
                'label' => 'Blue Lagoon',
                'colors' => [
                    'base_primary_color' => '#1b9ae4',
                ],
            ],
            'firehouse' => [
                'label' => 'Firehouse',
                'colors' => [
                    'base_primary_color' => '#a30f0f',
                ],
            ],
            'ice' => [
                'label' => 'Ice',
                'colors' => [
                    'base_primary_color' => '#57919e',
                ],
            ],
            'plum' => [
                'label' => 'Plum',
                'colors' => [
                    'base_primary_color' => '#7a4587',
                ],
            ],
            'slate' => [
                'label' => 'Slate',
                'colors' => [
                    'base_primary_color' => '#47625b',
                ],
            ],
        ],
    ];
    $form['#attached']['drupalSettings']['olivero']['colorSchemes'] = $color_config['schemes'];
    $form['olivero_settings']['olivero_utilities'] = [
        '#type' => 'fieldset',
        '#title' => t('Olivero Utilities'),
    ];
    $form['olivero_settings']['olivero_utilities']['mobile_menu_all_widths'] = [
        '#type' => 'checkbox',
        '#title' => t('Enable mobile menu at all widths'),
        '#config_target' => 'olivero.settings:mobile_menu_all_widths',
        '#description' => t('Enables the mobile menu toggle at all widths.'),
    ];
    $form['olivero_settings']['olivero_utilities']['site_branding_bg_color'] = [
        '#type' => 'select',
        '#title' => t('Header site branding background color'),
        '#options' => [
            'default' => t('Primary Branding Color'),
            'gray' => t('Gray'),
            'white' => t('White'),
        ],
        '#config_target' => 'olivero.settings:site_branding_bg_color',
    ];
    $form['olivero_settings']['olivero_utilities']['olivero_color_scheme'] = [
        '#type' => 'fieldset',
        '#title' => t('Olivero Color Scheme Settings'),
    ];
    $form['olivero_settings']['olivero_utilities']['olivero_color_scheme']['description'] = [
        '#type' => 'html_tag',
        '#tag' => 'p',
        '#value' => t('These settings adjust the look and feel of the Olivero theme. Changing the color below will change the base hue, saturation, and lightness values the Olivero theme uses to determine its internal colors.'),
    ];
    $form['olivero_settings']['olivero_utilities']['olivero_color_scheme']['color_scheme'] = [
        '#type' => 'select',
        '#title' => t('Olivero Color Scheme'),
        '#empty_option' => t('Custom'),
        '#empty_value' => '',
        '#options' => [
            'default' => t('Blue Lagoon (Default)'),
            'firehouse' => t('Firehouse'),
            'ice' => t('Ice'),
            'plum' => t('Plum'),
            'slate' => t('Slate'),
        ],
        '#input' => FALSE,
        '#wrapper_attributes' => [
            'style' => 'display:none;',
        ],
    ];
    foreach ($color_config['colors'] as $key => $title) {
        $form['olivero_settings']['olivero_utilities']['olivero_color_scheme'][$key] = [
            '#type' => 'textfield',
            '#maxlength' => 7,
            '#size' => 10,
            '#title' => t($title),
            '#description' => t('Enter color in hexadecimal format (#abc123).') . '<br/>' . t('Derivatives will be formed from this color.'),
            '#config_target' => "olivero.settings:{$key}",
            '#attributes' => [
                // Regex copied from Color::validateHex()
'pattern' => '^[#]?([0-9a-fA-F]{3}){1,2}$',
            ],
            '#wrapper_attributes' => [
                'data-drupal-selector' => 'olivero-color-picker',
            ],
        ];
    }
}

Functions

Title Deprecated Summary
olivero_form_system_theme_settings_alter Implements hook_form_FORM_ID_alter() for system_theme_settings.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.