You are here

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

Overrides StylesGroupPluginBase::buildConfigurationForm

File

src/Plugin/BootstrapStyles/StylesGroup/Typography.php, line 27

Class

Typography
Class Typography.

Namespace

Drupal\bootstrap_styles\Plugin\BootstrapStyles\StylesGroup

Code

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