Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. AssetCollectionOptimizerInterface.php

interface AssetCollectionOptimizerInterface

Interface defining a service that optimizes a collection of assets.

Hierarchy

  • interface \Drupal\Core\Asset\AssetCollectionOptimizerInterface

Expanded class hierarchy of AssetCollectionOptimizerInterface

All classes that implement AssetCollectionOptimizerInterface

3 files declare their use of AssetCollectionOptimizerInterface
AssetControllerBase.php in core/modules/system/src/Controller/AssetControllerBase.php
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.
     * @param array $libraries
     *   An array of library names.
     *
     * @return array
     *   An optimized asset collection.
     */
    public function optimize(array $assets, array $libraries);
    
    /**
     * Deletes all optimized asset collections assets.
     */
    public function deleteAll();

}

Members

Title Sort descending Modifiers Object type Summary Overrides
AssetCollectionOptimizerInterface::deleteAll public function Deletes all optimized asset collections assets. 2
AssetCollectionOptimizerInterface::optimize public function Optimizes a collection of assets. 2
RSS feed
Powered by Drupal