class EmptyBlockForm
Provides a form for a block that is empty.
Hierarchy
- class \Drupal\Core\Plugin\PluginFormBase implements \Drupal\Core\Plugin\PluginFormInterface, \Drupal\Component\Plugin\PluginAwareInterface
- class \Drupal\block_test\PluginForm\EmptyBlockForm extends \Drupal\Core\Plugin\PluginFormBase
 
 
Expanded class hierarchy of EmptyBlockForm
2 files declare their use of EmptyBlockForm
- MultipleBlockFormTest.php in core/
tests/ Drupal/ KernelTests/ Core/ Block/ MultipleBlockFormTest.php  - TestMultipleFormsBlock.php in core/
modules/ block/ tests/ modules/ block_test/ src/ Plugin/ Block/ TestMultipleFormsBlock.php  
File
- 
              core/
modules/ block/ tests/ modules/ block_test/ src/ PluginForm/ EmptyBlockForm.php, line 11  
Namespace
Drupal\block_test\PluginFormView source
class EmptyBlockForm extends PluginFormBase {
  
  /**
   * {@inheritdoc}
   */
  public $plugin;
  
  /**
   * {@inheritdoc}
   */
  public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
    return $form;
  }
  
  /**
   * {@inheritdoc}
   */
  public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
    // Intentionally empty.
  }
}
Members
| Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides | 
|---|---|---|---|---|---|
| EmptyBlockForm::$plugin | public | property | The plugin this form is for. | Overrides PluginFormBase::$plugin | |
| EmptyBlockForm::buildConfigurationForm | public | function | Form constructor. | Overrides PluginFormInterface::buildConfigurationForm | |
| EmptyBlockForm::submitConfigurationForm | public | function | Form submission handler. | Overrides PluginFormInterface::submitConfigurationForm | |
| PluginFormBase::setPlugin | public | function | Sets the plugin for this object. | Overrides PluginAwareInterface::setPlugin | 1 | 
| PluginFormBase::validateConfigurationForm | public | function | Form validation handler. | Overrides PluginFormInterface::validateConfigurationForm | 2 | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.