class TestPluginForm in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Plugin/DefaultPluginManagerTest.php \Drupal\Tests\Core\Plugin\TestPluginForm
Hierarchy
- class \Drupal\Tests\Core\Plugin\TestPluginForm implements PluginFormInterface
Expanded class hierarchy of TestPluginForm
File
- core/
tests/ Drupal/ Tests/ Core/ Plugin/ DefaultPluginManagerTest.php, line 514
Namespace
Drupal\Tests\Core\PluginView source
class TestPluginForm implements PluginFormInterface {
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
return [];
}
/**
* {@inheritdoc}
*/
public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
TestPluginForm:: |
public | function |
Form constructor. Overrides PluginFormInterface:: |
|
TestPluginForm:: |
public | function |
Form submission handler. Overrides PluginFormInterface:: |
|
TestPluginForm:: |
public | function |
Form validation handler. Overrides PluginFormInterface:: |