You are here

interface AssetCollectionOptimizerInterface in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Asset/AssetCollectionOptimizerInterface.php \Drupal\Core\Asset\AssetCollectionOptimizerInterface
  2. 10 core/lib/Drupal/Core/Asset/AssetCollectionOptimizerInterface.php \Drupal\Core\Asset\AssetCollectionOptimizerInterface

Interface defining a service that optimizes a collection of assets.

Hierarchy

Expanded class hierarchy of AssetCollectionOptimizerInterface

All classes that implement AssetCollectionOptimizerInterface

2 files declare their use of AssetCollectionOptimizerInterface
PerformanceForm.php in core/modules/system/src/Form/PerformanceForm.php
ThemeInstaller.php in core/lib/Drupal/Core/Extension/ThemeInstaller.php

File

core/lib/Drupal/Core/Asset/AssetCollectionOptimizerInterface.php, line 8

Namespace

Drupal\Core\Asset
View source
interface AssetCollectionOptimizerInterface {

  /**
   * Optimizes a collection of assets.
   *
   * @param array $assets
   *   An asset collection.
   *
   * @return array
   *   An optimized asset collection.
   */
  public function optimize(array $assets);

  /**
   * Returns all optimized asset collections assets.
   *
   * @return string[]
   *   URIs for all optimized asset collection assets.
   */
  public function getAll();

  /**
   * Deletes all optimized asset collections assets.
   */
  public function deleteAll();

}

Members

Namesort descending Modifiers Type Description Overrides
AssetCollectionOptimizerInterface::deleteAll public function Deletes all optimized asset collections assets. 2
AssetCollectionOptimizerInterface::getAll public function Returns all optimized asset collections assets. 2
AssetCollectionOptimizerInterface::optimize public function Optimizes a collection of assets. 2