You are here

block_style_plugins_test.module in Block Style Plugins 8

The Block Style Plugins Test module.

File

tests/modules/block_style_plugins_test/block_style_plugins_test.module
View source
<?php

/**
 * @file
 * The Block Style Plugins Test module.
 */

/**
 * Implements hook_theme().
 */
function block_style_plugins_test_theme() {
  return [
    'block__test_custom' => [
      'variables' => [
        'test_var' => NULL,
      ],
    ],
  ];
}

Functions

Namesort descending Description
block_style_plugins_test_theme Implements hook_theme().