protected 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\Asset
Code
1 2 3 4 5 6 7 | protected function getCid() { if (!isset( $this ->cid)) { $this ->cid = 'library_info:' . $this ->themeManager->getActiveTheme()->getName(); } return $this ->cid; } |
Please login to continue.