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

Breadcrumb

  1. Drupal Core 11.1.x

AssetCollectionRendererInterface.php

Namespace

Drupal\Core\Asset

File

core/lib/Drupal/Core/Asset/AssetCollectionRendererInterface.php

View source
<?php

namespace Drupal\Core\Asset;


/**
 * Interface defining a service that generates a render array to render assets.
 */
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);

}

Interfaces

Title Deprecated Summary
AssetCollectionRendererInterface Interface defining a service that generates a render array to render assets.
RSS feed
Powered by Drupal