You are here

public function Shadow::buildConfigurationForm in Bootstrap Styles 1.0.x

Overrides StylesGroupPluginBase::buildConfigurationForm

File

src/Plugin/BootstrapStyles/StylesGroup/Shadow.php, line 25

Class

Shadow
Class Shadow.

Namespace

Drupal\bootstrap_styles\Plugin\BootstrapStyles\StylesGroup

Code

public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
  $form['shadow'] = [
    '#type' => 'details',
    '#title' => $this
      ->t('Shadow'),
    '#open' => FALSE,
  ];
  return $form;
}