FilterTestRestrictTagsAndAttributes.php

Same filename and directory in other branches
  1. 9 core/modules/filter/tests/filter_test/src/Plugin/Filter/FilterTestRestrictTagsAndAttributes.php
  2. 8.9.x core/modules/filter/tests/filter_test/src/Plugin/Filter/FilterTestRestrictTagsAndAttributes.php
  3. 11.x core/modules/filter/tests/filter_test/src/Plugin/Filter/FilterTestRestrictTagsAndAttributes.php

Namespace

Drupal\filter_test\Plugin\Filter

File

core/modules/filter/tests/filter_test/src/Plugin/Filter/FilterTestRestrictTagsAndAttributes.php

View source
<?php

namespace Drupal\filter_test\Plugin\Filter;

use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\filter\Attribute\Filter;
use Drupal\filter\FilterProcessResult;
use Drupal\filter\Plugin\FilterBase;
use Drupal\filter\Plugin\FilterInterface;
use Drupal\Component\Utility\Xss;

/**
 * Provides a test filter to restrict HTML tags and attributes.
 */
class FilterTestRestrictTagsAndAttributes extends FilterBase {
  
  /**
   * {@inheritdoc}
   */
  public function process($text, $langcode) {
    $allowed_tags = array_filter($this->settings['restrictions']['allowed'], function ($value) {
      return is_array($value) || (bool) $value !== FALSE;
    });
    return new FilterProcessResult(Xss::filter($text, array_keys($allowed_tags)));
  }
  
  /**
   * {@inheritdoc}
   */
  public function getHTMLRestrictions() {
    $restrictions = $this->settings['restrictions'];
    // The configuration system stores FALSE as '0' and TRUE as '1'. Fix that.
    if (isset($restrictions['allowed'])) {
      foreach ($restrictions['allowed'] as $tag => $attributes_or_bool) {
        if (!is_array($attributes_or_bool)) {
          $restrictions['allowed'][$tag] = (bool) $attributes_or_bool;
        }
        else {
          foreach ($attributes_or_bool as $attr => $attribute_values_or_bool) {
            if (!is_array($attribute_values_or_bool)) {
              $restrictions['allowed'][$tag][$attr] = (bool) $attribute_values_or_bool;
            }
            else {
              foreach ($attribute_values_or_bool as $attribute_value => $bool) {
                $restrictions['allowed'][$tag][$attr][$attribute_value] = (bool) $bool;
              }
            }
          }
        }
      }
    }
    return $restrictions;
  }

}

Classes

Title Deprecated Summary
FilterTestRestrictTagsAndAttributes Provides a test filter to restrict HTML tags and attributes.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.