protected function BlockForm::getPluginForm in Drupal 9
Same name and namespace in other branches
- 8 core/modules/block/src/BlockForm.php \Drupal\block\BlockForm::getPluginForm()
 - 10 core/modules/block/src/BlockForm.php \Drupal\block\BlockForm::getPluginForm()
 
Retrieves the plugin form for a given block and operation.
Parameters
\Drupal\Core\Block\BlockPluginInterface $block: The block plugin.
Return value
\Drupal\Core\Plugin\PluginFormInterface The plugin form for the block.
1 method overrides BlockForm::getPluginForm()
- BlockEntitySettingTrayForm::getPluginForm in core/
modules/ settings_tray/ src/ Block/ BlockEntitySettingTrayForm.php  - Retrieves the plugin form for a given block and operation.
 
File
- core/
modules/ block/ src/ BlockForm.php, line 437  
Class
- BlockForm
 - Provides form for block instance forms.
 
Namespace
Drupal\blockCode
protected function getPluginForm(BlockPluginInterface $block) {
  if ($block instanceof PluginWithFormsInterface) {
    return $this->pluginFormFactory
      ->createInstance($block, 'configure');
  }
  return $block;
}