Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Asset/AssetCollectionRendererInterface.php \Drupal\Core\Asset\AssetCollectionRendererInterface
  2. 9 core/lib/Drupal/Core/Asset/AssetCollectionRendererInterface.php \Drupal\Core\Asset\AssetCollectionRendererInterface

Interface defining a service that generates a render array to render assets.

Hierarchy

Expanded class hierarchy of AssetCollectionRendererInterface

All classes that implement AssetCollectionRendererInterface

2 files declare their use of AssetCollectionRendererInterface
BigPipeResponseAttachmentsProcessor.php in core/modules/big_pipe/src/Render/BigPipeResponseAttachmentsProcessor.php
BigPipeResponseAttachmentsProcessorTest.php in core/modules/big_pipe/tests/src/Unit/Render/BigPipeResponseAttachmentsProcessorTest.php

File

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

Namespace

Drupal\Core\Asset
View source
interface AssetCollectionRendererInterface {

  /**
   * Renders an asset collection.
   *
   * @param array $assets
   *   An asset collection.
   *
   * @return array
   *   A render array to render the asset collection.
   */
  public function render(array $assets);

}

Members

Namesort descending Modifiers Type Description Overrides
AssetCollectionRendererInterface::render public function Renders an asset collection.