TestFormBlock.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\block_test\Plugin\BlockFile
core/modules/block/tests/modules/block_test/src/Plugin/Block/TestFormBlock.phpView source
<?php
namespace Drupal\block_test\Plugin\Block;
use Drupal\Core\Block\BlockBase;
/**
* Provides a block to test caching.
*
* @Block(
* id = "test_form_in_block",
* admin_label = @Translation("Test form block caching")
* )
*/
class TestFormBlock extends BlockBase {
/**
* {@inheritdoc}
*/
public function build() {
return \Drupal::formBuilder()
->getForm('Drupal\\block_test\\Form\\TestForm');
}
}
Classes
Name | Description |
---|---|
TestFormBlock | Provides a block to test caching. |