You are here

theme_legacy_test.inc in Drupal 8

Include file for testing legacy theme functions.

File

core/modules/system/tests/modules/theme_legacy_test/theme_legacy_test.inc
View source
<?php

/**
 * @file
 * Include file for testing legacy theme functions.
 */

/**
 * Returns HTML for the 'theme_test' theme hook used by tests.
 */
function theme_theme_test($variables) {
  return 'Theme hook implementor=theme_theme_test(). Foo=' . $variables['foo'];
}

Functions

Namesort descending Description
theme_theme_test Returns HTML for the 'theme_test' theme hook used by tests.