MockLayoutBlock.php

Definition of Drupal\plugin_test\Plugin\plugin_test\mock_block\MockLayoutBlock.

Namespace

Drupal\plugin_test\Plugin\plugin_test\mock_block

File

drupal/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/MockLayoutBlock.php
View source
<?php

/**
 * @file
 * Definition of Drupal\plugin_test\Plugin\plugin_test\mock_block\MockLayoutBlock.
 */
namespace Drupal\plugin_test\Plugin\plugin_test\mock_block;

use Drupal\Component\Plugin\PluginBase;

/**
 * Mock implementation of a layout block plugin used by Plugin API unit tests.
 *
 * No implementation here as there are no tests for this yet.
 *
 * @see Drupal\plugin_test\Plugin\MockBlockManager
 * @see Drupal\plugin_test\Plugin\plugin_test\mock_block\MockUserLoginBlock
 * @see Drupal\plugin_test\Plugin\plugin_test\mock_block\MockMenuBlock
 */
class MockLayoutBlock extends PluginBase {

}

Classes

Namesort descending Description
MockLayoutBlock Mock implementation of a layout block plugin used by Plugin API unit tests.