function LibraryDiscoveryCollector::getCid
Gets the cache ID.
Return value
string
Overrides CacheCollector::getCid
File
- 
              core/
lib/ Drupal/ Core/ Asset/ LibraryDiscoveryCollector.php, line 54  
Class
- LibraryDiscoveryCollector
 - A CacheCollector implementation for building library extension info.
 
Namespace
Drupal\Core\AssetCode
protected function getCid() {
  if (!isset($this->cid)) {
    $this->cid = 'library_info:' . $this->themeManager
      ->getActiveTheme()
      ->getName();
  }
  return $this->cid;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.