You are here

function theme_common_test_empty in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/tests/modules/common_test/common_test.module \theme_common_test_empty()

Always returns an empty string.

1 string reference to 'theme_common_test_empty'
common_test_theme in core/modules/system/tests/modules/common_test/common_test.module
Implements hook_theme().
1 theme call to theme_common_test_empty()
RendererTest::providerTestRenderBasic in core/tests/Drupal/Tests/Core/Render/RendererTest.php
Provides a list of render arrays to test basic rendering.

File

core/modules/system/tests/modules/common_test/common_test.module, line 141
Helper module for the Common tests.

Code

function theme_common_test_empty($variables) {
  return '';
}