You are here

public function AssetOptimizerInterface::clean in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Asset/AssetOptimizerInterface.php \Drupal\Core\Asset\AssetOptimizerInterface::clean()

Removes unwanted content from an asset.

Parameters

string $content: The content of an asset.

Return value

string The cleaned asset's contents.

2 methods override AssetOptimizerInterface::clean()
CssOptimizer::clean in core/lib/Drupal/Core/Asset/CssOptimizer.php
Processes the contents of a CSS asset for cleanup.
JsOptimizer::clean in core/lib/Drupal/Core/Asset/JsOptimizer.php
Processes the contents of a javascript asset for cleanup.

File

core/lib/Drupal/Core/Asset/AssetOptimizerInterface.php, line 34
Contains \Drupal\Core\Asset\AssetOptimizerInterface.

Class

AssetOptimizerInterface
Interface defining a service that optimizes an asset.

Namespace

Drupal\Core\Asset

Code

public function clean($content);