You are here

TestInlineTemplateFormBlock.php in Drupal 10

File

core/modules/layout_builder/tests/modules/layout_builder_form_block_test/src/Plugin/Block/TestInlineTemplateFormBlock.php
View source
<?php

namespace Drupal\layout_builder_form_block_test\Plugin\Block;

use Drupal\Core\Block\BlockBase;

/**
 * Provides a block containing inline template with <form> tag.
 *
 * For use in Layout Builder tests.
 *
 * @Block(
 *   id = "layout_builder_form_block_test_inline_template_form_block",
 *   admin_label = @Translation("Layout Builder form block test inline template form block"),
 *   category = @Translation("Layout Builder form block test")
 * )
 */
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

Namesort descending Description
TestInlineTemplateFormBlock Provides a block containing inline template with <form> tag.