public ThemeCacheContext::__construct(ThemeManagerInterface $theme_manager)
Constructs a new ThemeCacheContext service.
Parameters
\Drupal\Core\Theme\ThemeManagerInterface $theme_manager: The theme manager.
File
- core/lib/Drupal/Core/Cache/Context/ThemeCacheContext.php, line 28
Class
- ThemeCacheContext
- Defines the ThemeCacheContext service, for "per theme" caching.
Namespace
Drupal\Core\Cache\Context
Code
public function __construct(ThemeManagerInterface $theme_manager) { $this->themeManager = $theme_manager; }
Please login to continue.