FilterSettings.php in Drupal 8
File
core/modules/filter/src/Plugin/migrate/process/FilterSettings.php
View source
<?php
namespace Drupal\filter\Plugin\migrate\process;
use Drupal\migrate\ProcessPluginBase;
use Drupal\migrate\MigrateExecutableInterface;
use Drupal\migrate\Row;
class FilterSettings extends ProcessPluginBase {
protected $allowedHtmlDefaultAttributes = [
'<a>' => '<a href hreflang>',
'<blockquote>' => '<blockquote cite>',
'<ol>' => '<ol start type>',
'<ul>' => '<ul type>',
'<img>' => '<img src alt height width>',
'<h2>' => '<h2 id>',
'<h3>' => '<h3 id>',
'<h4>' => '<h4 id>',
'<h5>' => '<h5 id>',
'<h6>' => '<h6 id>',
];
public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
if ($row
->getDestinationProperty('id') === 'filter_html') {
if (!empty($value['allowed_html'])) {
$value['allowed_html'] = str_replace(array_keys($this->allowedHtmlDefaultAttributes), array_values($this->allowedHtmlDefaultAttributes), $value['allowed_html']);
}
}
elseif ($row
->getDestinationProperty('id') === 'filter_null') {
$value = [];
}
return $value;
}
}
Classes
Name |
Description |
FilterSettings |
Adds the default allowed attributes to filter_html's allowed_html setting. |