convert and move remaining core hook implementations
3 unresolved threads
3 unresolved threads
Closes #3494908
Merge request reports
Activity
added 15 commits
-
573421e1...79304e95 - 14 commits from branch
project:11.x
- 969c2e06 - convert and move remaining core hook implementations
-
573421e1...79304e95 - 14 commits from branch
1 <?php 2 3 namespace Drupal\big_pipe\Hook; 4 5 use Drupal\Core\Hook\Attribute\Hook; 6 7 /** 8 * Theme suggestions for big_pipe. 9 */ 10 class BigPipeThemeSuggestionHook { changed this line in version 6 of the diff
- Resolved by nicxvan
added 26 commits
Toggle commit list92 92 /** 93 93 * Implements hook_modules_installed(). 94 94 * 95 * @see block_themes_installed() 95 * @see modulesInstalled() - Comment on lines -95 to +95
92 92 /** 93 93 * Implements hook_modules_installed(). 94 94 * 95 * @see block_themes_installed() 95 * @see modulesInstalled() 96 96 */ 97 97 #[Hook('modules_installed')] 98 98 public function modulesInstalled($modules): void { 99 // block_themes_installed() does not call block_theme_initialize() during site 99 // modulesInstalled() does not call block_theme_initialize() during site
Please register or sign in to reply