public function CssCollectionOptimizer::getAll in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Asset/CssCollectionOptimizer.php \Drupal\Core\Asset\CssCollectionOptimizer::getAll()
Returns all optimized asset collections assets.
Return value
string[] URIs for all optimized asset collection assets.
Overrides AssetCollectionOptimizerInterface::getAll
File
- core/
lib/ Drupal/ Core/ Asset/ CssCollectionOptimizer.php, line 183
Class
- CssCollectionOptimizer
- Optimizes CSS assets.
Namespace
Drupal\Core\AssetCode
public function getAll() {
return $this->state
->get('drupal_css_cache_files');
}