TestInlineTemplateFormBlock.php
Same filename in other branches
- 9 core/modules/layout_builder/tests/modules/layout_builder_form_block_test/src/Plugin/Block/TestInlineTemplateFormBlock.php
- 8.9.x core/modules/layout_builder/tests/modules/layout_builder_form_block_test/src/Plugin/Block/TestInlineTemplateFormBlock.php
- 10 core/modules/layout_builder/tests/modules/layout_builder_form_block_test/src/Plugin/Block/TestInlineTemplateFormBlock.php
Namespace
Drupal\layout_builder_form_block_test\Plugin\BlockFile
-
core/
modules/ layout_builder/ tests/ modules/ layout_builder_form_block_test/ src/ Plugin/ Block/ TestInlineTemplateFormBlock.php
View source
<?php
declare (strict_types=1);
namespace Drupal\layout_builder_form_block_test\Plugin\Block;
use Drupal\Core\Block\Attribute\Block;
use Drupal\Core\Block\BlockBase;
use Drupal\Core\StringTranslation\TranslatableMarkup;
/**
* Provides a block containing inline template with <form> tag.
*
* For use in Layout Builder tests.
*/
class TestInlineTemplateFormBlock extends BlockBase {
/**
* {@inheritdoc}
*/
public function build() {
$build['form'] = [
'#type' => 'inline_template',
'#template' => '<form method="POST"><label>{{ "Keywords"|t }}<input name="keyword" type="text" required /></label><input name="submit" type="submit" value="{{ "Submit"|t }}" /></form>',
];
return $build;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
TestInlineTemplateFormBlock | Provides a block containing inline template with <form> tag. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.