Same name in other branches
- 5.0.x advagg_mod/src/Asset/DeferJs.php \Drupal\advagg_mod\Asset\DeferJs::__construct()
- 6.0.x advagg_mod/src/Asset/DeferJs.php \Drupal\advagg_mod\Asset\DeferJs::__construct()
- 8.x-4.x advagg_mod/src/Asset/DeferJs.php \Drupal\advagg_mod\Asset\DeferJs::__construct()
DeferCss constructor.
Paramètres
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory.
\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The Drupal module handler.
Fichier
-
advagg_mod/
src/ Asset/ DeferJs.php, line 50
Classe
- DeferJs
- Add defer tag to scripts.
Namespace
Drupal\advagg_mod\AssetCode
public function __construct(ConfigFactoryInterface $config_factory, ModuleHandlerInterface $module_handler) {
$this->deferType = $config_factory->get('advagg_mod.settings')
->get('css_defer_js_code');
$this->counter = $config_factory->get('advagg.settings')
->get('global_counter');
$this->moduleHandler = $module_handler;
$this->skipList = [];
// Admin Toolbar 8x fails when deferred.
if ($this->moduleHandler
->moduleExists('admin_toolbar')) {
$this->skipList[] = Crypt::hashBase64(drupal_get_path('module', 'admin_toolbar') . '/js/admin_toolbar.js' . $this->counter);
}
}