public function AssetManager::getNames

Returns an array of asset names.

Return value

array An array of asset names

1 call to AssetManager::getNames()
LazyAssetManager::getNames in drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Factory/LazyAssetManager.php
Returns an array of asset names.
1 method overrides AssetManager::getNames()
LazyAssetManager::getNames in drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Factory/LazyAssetManager.php
Returns an array of asset names.

File

drupal/core/vendor/kriswallsmith/assetic/src/Assetic/AssetManager.php, line 77

Class

AssetManager
Manages assets.

Namespace

Assetic

Code

public function getNames() {
  return array_keys($this->assets);
}