From 3ec3ce5c20d99a136e4d79ed36c55ad8ab06a01c Mon Sep 17 00:00:00 2001 From: quietone <quietone@2572884.no-reply.drupal.org> Date: Thu, 5 Sep 2024 20:35:05 +1200 Subject: [PATCH] Back to dev. --- core/lib/Drupal/Core/Render/theme.api.php | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/core/lib/Drupal/Core/Render/theme.api.php b/core/lib/Drupal/Core/Render/theme.api.php index a67c53299b4e..e547fac7bf9e 100644 --- a/core/lib/Drupal/Core/Render/theme.api.php +++ b/core/lib/Drupal/Core/Render/theme.api.php @@ -1251,29 +1251,13 @@ function hook_page_bottom(array &$page_bottom) { function hook_theme($existing, $type, $theme, $path) { return [ 'my_module_display' => [ - 'variables' => [ - 'my_modules' => NULL, - 'topics' => NULL, - 'parents' => NULL, - 'tid' => NULL, - 'sortby' => NULL, - 'my_module_per_page' => NULL, - ], + 'variables' => ['my_modules' => NULL, 'topics' => NULL, 'parents' => NULL, 'tid' => NULL, 'sortby' => NULL, 'my_module_per_page' => NULL], ], 'my_module_list' => [ - 'variables' => [ - 'my_modules' => NULL, - 'parents' => NULL, - 'tid' => NULL, - ], + 'variables' => ['my_modules' => NULL, 'parents' => NULL, 'tid' => NULL], ], 'my_module_icon' => [ - 'variables' => [ - 'new_posts' => NULL, - 'num_posts' => 0, - 'comment_mode' => 0, - 'sticky' => 0, - ], + 'variables' => ['new_posts' => NULL, 'num_posts' => 0, 'comment_mode' => 0, 'sticky' => 0], ], 'status_report' => [ 'render element' => 'requirements', -- GitLab