You are here

function block_style_plugins_form_block_form_alter in Block Style Plugins 8.2

Same name and namespace in other branches
  1. 8 block_style_plugins.module \block_style_plugins_form_block_form_alter()

Implements hook_form_FORM_ID_alter().

For the ID form_block.

File

./block_style_plugins.module, line 42
Contains block_style_plugins.module.

Code

function block_style_plugins_form_block_form_alter(&$form, FormStateInterface $form_state, $form_id) {
  \Drupal::classResolver(BlockFormAlter::class)
    ->alterForm($form, $form_state);
}