Sorry, you need to enable JavaScript to visit this website.

Problèmes warning module core BlockPluginTrait.php

Soumis par dpalicepeio le

 

  • Warning: Trying to access array offset on value of type null in Drupal\Core\Block\BlockBase->baseConfigurationDefaults() (line 91 of core\lib\Drupal\Core\Block\BlockPluginTrait.php).

Pour traiter ce problème  la ligne 91 

      'provider' => $this->pluginDefinition['provider']

doit être remplacée par 

'provider' => (!empty($this->pluginDefinition) && isset($this->pluginDefinition['provider'])) ? $this->pluginDefinition['provider'] : '',