Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / system / tests / modules / theme_test / theme_test.module
index 6a701abee915069b845cdfed24610ed43db049c6..cd8aba7da7bcf06a6221263da901f44e79452404 100644 (file)
@@ -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() {
+}