You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
965 B
32 lines
965 B
<?php |
|
|
|
/** |
|
* @file |
|
* Functions to support theming in the SASS Starterkit subtheme. |
|
*/ |
|
|
|
use Drupal\Core\Form\FormStateInterface; |
|
|
|
/** |
|
* Implements hook_form_system_theme_settings_alter() for settings form. |
|
* |
|
* Replace Barrio setting options with subtheme ones. |
|
*/ |
|
function biosafety_form_system_theme_settings_alter(&$form, FormStateInterface $form_state) { |
|
$form['components']['navbar']['bootstrap_barrio_navbar_top_background']['#options'] = array( |
|
'bg-primary' => t('Primary'), |
|
'bg-secondary' => t('Secondary'), |
|
'bg-light' => t('Light'), |
|
'bg-dark' => t('Dark'), |
|
'bg-white' => t('White'), |
|
'bg-transparent' => t('Transparent'), |
|
); |
|
$form['components']['navbar']['bootstrap_barrio_navbar_background']['#options'] = array( |
|
'bg-primary' => t('Primary'), |
|
'bg-secondary' => t('Secondary'), |
|
'bg-light' => t('Light'), |
|
'bg-dark' => t('Dark'), |
|
'bg-white' => t('White'), |
|
'bg-transparent' => t('Transparent'), |
|
); |
|
} |