perpignan → created an issue.
perpignan → created an issue.
Pay attention to the new version 2.x-dev of September 29 which deletes jquery_ui_effects and therefore deletes all modules dependent on this such as for example: better_exposed_filters and therefore deleted all views having this module activated, the facets linked to views too if search_api is enabled !!!!
With this version of Blazy and using PHP 7.4, you need to make modifications in the toContent function located in blazy/src/internals/Internals.php with the following code:
public static function toContent(array &$data, $unset = false, array $keys = ['content', 'box', 'slide']) {
$result = [];
foreach ($keys as $key) {
$value = $data[$key] ?? $data["#$key"] ?? [];
if ($value) {
$result = $value;
break;
}
if ($unset) {
unset($data[$key]);
}
}
return $result;
}
I have issue when i enable this filter with CKEditor 5 in Drupal 10.1.2.
I replace in FilterTwig.php on line 14 :
* type = Drupal\filter\Plugin\FilterInterface::TYPE_HTML_RESTRICTOR,
by
* type = Drupal\filter\Plugin\FilterInterface::TYPE_TRANSFORM_IRREVERSIBLE,
And it's work !