uikit-8.x-3.x-dev/STARTERKIT/theme-settings.php
STARTERKIT/theme-settings.php
<?php
use Drupal\Core\Form\FormStateInterface;
/**
* @file
* Provides theme settings for STARTERKIT.
*/
/**
* Implements hook_form_system_theme_settings_alter().
*/
function STARTERKIT_form_system_theme_settings_alter(&$form, FormStateInterface $form_state, $form_id = NULL) {
// General "alters" use a form id. Settings should not be set here. The only
// thing useful about this is if you need to alter the form for the running
// theme and *not* the theme setting.
// @see http://drupal.org/node/943212
if (isset($form_id)) {
return;
}
}
