You are here

public function AmpHtmlResponseAttachmentsProcessor::__construct in Accelerated Mobile Pages (AMP) 8

Same name and namespace in other branches
  1. 8.3 src/Render/AmpHtmlResponseAttachmentsProcessor.php \Drupal\amp\Render\AmpHtmlResponseAttachmentsProcessor::__construct()
  2. 8.2 src/Render/AmpHtmlResponseAttachmentsProcessor.php \Drupal\amp\Render\AmpHtmlResponseAttachmentsProcessor::__construct()

Constructs a HtmlResponseAttachmentsProcessor object.

Parameters

\Drupal\Core\Asset\AssetResolverInterface $asset_resolver: An asset resolver.

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: A config factory for retrieving required config objects.

\Drupal\Core\Asset\AssetCollectionRendererInterface $css_collection_renderer: The CSS asset collection renderer.

\Drupal\Core\Asset\AssetCollectionRendererInterface $js_collection_renderer: The JS asset collection renderer.

\Symfony\Component\HttpFoundation\RequestStack $request_stack: The request stack.

\Drupal\Core\Render\RendererInterface $renderer: The renderer.

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler service.

\Drupal\amp\Routing\AmpContext $amp_context: The route amp context to determine whether the route is an amp one.

File

src/Render/AmpHtmlResponseAttachmentsProcessor.php, line 121
Contains \Drupal\amp\Render\AmpHtmlResponseAttachmentsProcessor.

Class

AmpHtmlResponseAttachmentsProcessor
Processes attachments of AMP HTML responses.

Namespace

Drupal\amp\Render

Code

public function __construct(AssetResolverInterface $asset_resolver, ConfigFactoryInterface $config_factory, AssetCollectionRendererInterface $css_collection_renderer, AssetCollectionRendererInterface $js_collection_renderer, RequestStack $request_stack, RendererInterface $renderer, ModuleHandlerInterface $module_handler, AmpContext $amp_context) {
  $this->assetResolver = $asset_resolver;
  $this->config = $config_factory
    ->get('system.performance');
  $this->cssCollectionRenderer = $css_collection_renderer;
  $this->jsCollectionRenderer = $js_collection_renderer;
  $this->requestStack = $request_stack;
  $this->renderer = $renderer;
  $this->moduleHandler = $module_handler;
  $this->ampContext = $amp_context;
}