X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fsystem%2Ftests%2Fmodules%2Ftheme_test%2Ftheme_test.module;fp=web%2Fcore%2Fmodules%2Fsystem%2Ftests%2Fmodules%2Ftheme_test%2Ftheme_test.module;h=cd8aba7da7bcf06a6221263da901f44e79452404;hp=6a701abee915069b845cdfed24610ed43db049c6;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/web/core/modules/system/tests/modules/theme_test/theme_test.module b/web/core/modules/system/tests/modules/theme_test/theme_test.module index 6a701abee..cd8aba7da 100644 --- a/web/core/modules/system/tests/modules/theme_test/theme_test.module +++ b/web/core/modules/system/tests/modules/theme_test/theme_test.module @@ -66,6 +66,10 @@ function theme_test_theme($existing, $type, $theme, $path) { 'bar' => '', ], ]; + $items['theme_test_registered_by_module'] = [ + 'render element' => 'content', + 'base hook' => 'container', + ]; return $items; } @@ -213,3 +217,9 @@ function theme_test_theme_suggestions_node(array $variables) { return $suggestions; } + +/** + * Implements template_preprocess_HOOK() for theme_test_registered_by_module. + */ +function template_preprocess_theme_test_registered_by_module() { +}