You are here

public function UltimenuSkin::__construct in Ultimenu 8.2

Constructs a Ultimenu object.

Overrides UltimenuBase::__construct

File

src/UltimenuSkin.php, line 72

Class

UltimenuSkin
Provides Ultimenu skins utility methods.

Namespace

Drupal\ultimenu

Code

public function __construct(ConfigFactoryInterface $config_factory, EntityTypeManagerInterface $entity_type_manager, BlockManagerInterface $block_manager, ThemeHandlerInterface $theme_handler, FileSystemInterface $file_system, CacheBackendInterface $cache_backend) {
  parent::__construct($config_factory, $entity_type_manager, $block_manager);
  $this->themeHandler = $theme_handler;
  $this->fileSystem = $file_system;
  $this->cacheBackend = $cache_backend;
}