You are here

TestHtmlBlock.php in Drupal 10

File

core/modules/block/tests/modules/block_test/src/Plugin/Block/TestHtmlBlock.php
View source
<?php

namespace Drupal\block_test\Plugin\Block;

use Drupal\Core\Block\BlockBase;

/**
 * Provides a block to test HTML.
 *
 * @Block(
 *   id = "test_html",
 *   admin_label = @Translation("Test HTML block")
 * )
 */
class TestHtmlBlock extends BlockBase {

  /**
   * {@inheritdoc}
   */
  public function build() {
    return [
      '#attributes' => \Drupal::state()
        ->get('block_test.attributes'),
      '#children' => \Drupal::state()
        ->get('block_test.content'),
    ];
  }

}

Classes

Namesort descending Description
TestHtmlBlock Provides a block to test HTML.