BreakpointManager::__construct

public BreakpointManager::__construct(ModuleHandlerInterface $module_handler, ThemeHandlerInterface $theme_handler, CacheBackendInterface $cache_backend, TranslationInterface $string_translation)

Constructs a new BreakpointManager instance.

Parameters

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler.

\Drupal\Core\Extension\ThemeHandlerInterface $theme_handler: The theme handler.

\Drupal\Core\Cache\CacheBackendInterface $cache_backend: The cache backend.

\Drupal\Core\StringTranslation\TranslationInterface $string_translation: The string translation service.

Overrides DefaultPluginManager::__construct

File

core/modules/breakpoint/src/BreakpointManager.php, line 103

Class

BreakpointManager
Defines a breakpoint plugin manager to deal with breakpoints.

Namespace

Drupal\breakpoint

Code

public function __construct(ModuleHandlerInterface $module_handler, ThemeHandlerInterface $theme_handler, CacheBackendInterface $cache_backend, TranslationInterface $string_translation) {
  $this->factory = new ContainerFactory($this);
  $this->moduleHandler = $module_handler;
  $this->themeHandler = $theme_handler;
  $this->setStringTranslation($string_translation);
  $this->alterInfo('breakpoints');
  $this->setCacheBackend($cache_backend, 'breakpoints', array('breakpoints'));
}
doc_Drupal
2016-10-29 08:48:55
Comments
Leave a Comment

Please login to continue.