function ViewsData::__construct
Constructs this ViewsData object.
Parameters
\Drupal\Core\Cache\CacheBackendInterface $cache_backend: The cache backend to use.
\Drupal\Core\Config\ConfigFactoryInterface $config: The configuration factory object to use.
\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler class to use for invoking hooks.
\Drupal\Core\Language\LanguageManagerInterface $language_manager: The language manager.
File
- 
              core/modules/ views/ src/ ViewsData.php, line 102 
Class
- ViewsData
- Class to manage and lazy load cached views data.
Namespace
Drupal\viewsCode
public function __construct(CacheBackendInterface $cache_backend, ConfigFactoryInterface $config, ModuleHandlerInterface $module_handler, LanguageManagerInterface $language_manager) {
  $this->cacheBackend = $cache_backend;
  $this->moduleHandler = $module_handler;
  $this->languageManager = $language_manager;
  $this->langcode = $this->languageManager
    ->getCurrentLanguage()
    ->getId();
  $this->skipCache = $config->get('views.settings')
    ->get('skip_cache');
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
