Issue #2118743: Twig debug output does not display all suggestions when an array of theme hooks is passed to #theme
4 open threads
Merge request reports
Activity
added 876 commits
-
9d8f6ab0...54f3e98a - 875 commits from branch
project:11.x
- f5f26d9a - Merge remote-tracking branch 'origin/11.x' into 2118743-twig-debug-output-11.x
-
9d8f6ab0...54f3e98a - 875 commits from branch
added 34 commits
-
9d8b246f...6db12006 - 33 commits from branch
project:11.x
- e701c315 - Merge branch '11.x' into 2118743-twig-debug-output-11.x
-
9d8b246f...6db12006 - 33 commits from branch
added 2 commits
added 2 commits
added 1 commit
- 8af785d9 - Update twig.engine - for invalid suggestions 2.
added 1 commit
- 34bca9a7 - Update twig.engine - for invalid suggestions - fix CS.
added 122 commits
-
86a9802d...661f5453 - 103 commits from branch
project:11.x
- 661f5453...28c6f407 - 9 earlier commits
- 7ad6d9e0 - Refactor for #2953921 refactor 3.
- e4716036 - Revert theme_testmodule routes - missing/deleted.
- 6bd2c68e - Make sure we have unique template suggestions..
- 13c9a68c - Some Fix/CleanUp Tests 2.
- 278fc720 - Update twig.engine - for invalid suggestions.
- 1afea961 - Some Fix/CleanUp Tests 2.
- 527eafdf - Fix PHP CS 1.
- 0fe9418b - Update twig.engine - for invalid suggestions 2.
- 7814caf4 - Update twig.engine - for invalid suggestions - fix CS.
- ac2f8cc6 - Some Fix/CleanUp Tests 3.
Toggle commit list-
86a9802d...661f5453 - 103 commits from branch
added 9 commits
-
ac2f8cc6...4b9ffa3c - 8 commits from branch
project:11.x
- 12218007 - Merge branch '11.x' into 2118743-twig-debug-output-11.x
-
ac2f8cc6...4b9ffa3c - 8 commits from branch
added 2 commits
added 148 commits
-
5e1c4da1...a31d15a8 - 147 commits from branch
project:11.x
- fc631baf - Merge branch '11.x' into 2118743-twig-debug-output-11.x
-
5e1c4da1...a31d15a8 - 147 commits from branch
added 86 commits
-
c1fe7a2a...a1699fe0 - 85 commits from branch
project:11.x
- 19619561 - Merge branch '11.x' into 2118743-twig-debug-output-11.x
-
c1fe7a2a...a1699fe0 - 85 commits from branch
added 237 commits
-
19619561...67f56fc2 - 236 commits from branch
project:11.x
- 59c27090 - Merge branch drupal:11.x into 2118743-twig-debug-output-11.x
-
19619561...67f56fc2 - 236 commits from branch
added 1 commit
- 5de3548f - Revert "Inject loogger service into ThemeManager."
added 206 commits
-
5de3548f...4a4a78b5 - 205 commits from branch
project:11.x
- a0d28ec9 - Merge branch drupal:11.x into 2118743-twig-debug-output-11.x
-
5de3548f...4a4a78b5 - 205 commits from branch
added 1139 commits
-
a0d28ec9...dcb0e065 - 1138 commits from branch
project:11.x
- 2794251f - Merge branch '11.x' into 2118743-twig-debug-output-11.x
-
a0d28ec9...dcb0e065 - 1138 commits from branch
added 456 commits
-
23419684...bedda6ac - 455 commits from branch
project:11.x
- e2652d87 - Merge branch '11.x' into 2118743-twig-debug-output-11.x
-
23419684...bedda6ac - 455 commits from branch
added 1 commit
- 03f1e0d3 - It seems the "render element" element key does not always exist
added 269 commits
-
03f1e0d3...42209999 - 268 commits from branch
project:11.x
- 76196e73 - Merge branch '11.x' into 2118743-twig-debug-output-11.x
-
03f1e0d3...42209999 - 268 commits from branch
8 declare(strict_types=1); 9 10 /** 11 * Implements hook_theme(). 12 */ 13 function theme_suggestions_base1_test_theme($existing, $type, $theme, $path): array { 14 $items['theme_suggestions_base4_test_alternate__from_hook_theme_suggestions_hook_alter'] = [ 15 'variables' => [], 16 ]; 17 return $items; 18 } 19 20 /** 21 * Implements hook_theme_suggestions_HOOK(). 22 */ 23 function theme_suggestions_base1_test_theme_suggestions_theme_test_base1(array $variables): array { 18 } 19 20 /** 21 * Implements hook_theme_suggestions_HOOK(). 22 */ 23 function theme_suggestions_base1_test_theme_suggestions_theme_test_base1(array $variables): array { 24 return [ 25 'theme_test_base1__from_hook_theme_suggestions_hook', 26 'theme_test_base1__from_hook_theme_suggestions_hook_too', 27 ]; 28 } 29 30 /** 31 * Implements hook_theme_suggestions_HOOK_alter(). 32 */ 33 function theme_suggestions_base1_test_theme_suggestions_theme_test_base1_alter(array &$suggestions, array $variables, $hook): void { 1 <?php 2 3 /** 4 * @file 5 * Support module for testing theme suggestions. 6 */ 7 8 declare(strict_types=1); 9 10 /** 11 * Implements hook_theme_suggestions_HOOK_alter(). 12 */ 13 function theme_suggestions_base2_ignored_test_theme_suggestions_theme_test_base1_alter(array &$suggestions, array $variables, $hook): void {
Please register or sign in to reply