EmptyBlockForm.php
Same filename in other branches
Namespace
Drupal\block_test\PluginFormFile
-
core/
modules/ block/ tests/ modules/ block_test/ src/ PluginForm/ EmptyBlockForm.php
View source
<?php
namespace Drupal\block_test\PluginForm;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Plugin\PluginFormBase;
/**
* Provides a form for a block that is empty.
*/
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.
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
EmptyBlockForm | Provides a form for a block that is empty. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.