public function BaseAsset::getValues

Returns the current values for this asset.

Return value

array an array of strings

Overrides AssetInterface::getValues

3 calls to BaseAsset::getValues()
FileAsset::getLastModified in drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Asset/FileAsset.php
Returns the time the current asset was last modified.
FileAsset::load in drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Asset/FileAsset.php
Loads the asset into memory and applies load filters.
HttpAsset::load in drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Asset/HttpAsset.php
Loads the asset into memory and applies load filters.

File

drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Asset/BaseAsset.php, line 168

Class

BaseAsset
A base abstract asset.

Namespace

Assetic\Asset

Code

public function getValues() {
  return $this->values;
}