TestHtmlBlock.php

Same filename and directory in other branches
  1. 8.9.x core/modules/block/tests/modules/block_test/src/Plugin/Block/TestHtmlBlock.php
  2. 10 core/modules/block/tests/modules/block_test/src/Plugin/Block/TestHtmlBlock.php
  3. 11.x core/modules/block/tests/modules/block_test/src/Plugin/Block/TestHtmlBlock.php

Namespace

Drupal\block_test\Plugin\Block

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

Title Deprecated Summary
TestHtmlBlock Provides a block to test HTML.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.