Same name and namespace in other branches
  1. 5.0.x advagg_mod/src/Asset/TranslateCss.php \Drupal\advagg_mod\Asset\TranslateCss::__construct() 1 commentaire
  2. 6.0.x advagg_mod/src/Asset/TranslateCss.php \Drupal\advagg_mod\Asset\TranslateCss::__construct() 1 commentaire
  3. 8.x-4.x advagg_mod/src/Asset/TranslateCss.php \Drupal\advagg_mod\Asset\TranslateCss::__construct() 1 commentaire

Construct the optimizer instance.

Paramètres

\Psr\Log\LoggerInterface $logger: The logger service.

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

Overrides SingleAssetOptimizerBase::__construct

Fichier

advagg_mod/src/Asset/TranslateCss.php, line 25

Classe

TranslateCss
Applies the t() function to strings in CSS assets.

Namespace

Drupal\advagg_mod\Asset

Code

public function __construct(LoggerInterface $logger, ConfigFactoryInterface $config_factory) {
    parent::__construct($logger);
    $this->config = $config_factory->get('advagg_mod.settings');
}