FilteredMarkup.php

Same filename and directory in other branches
  1. 8.9.x core/modules/filter/src/Render/FilteredMarkup.php
  2. 10 core/modules/filter/src/Render/FilteredMarkup.php
  3. 11.x core/modules/filter/src/Render/FilteredMarkup.php

Namespace

Drupal\filter\Render

File

core/modules/filter/src/Render/FilteredMarkup.php

View source
<?php

namespace Drupal\filter\Render;

use Drupal\Component\Render\MarkupInterface;
use Drupal\Component\Render\MarkupTrait;

/**
 * Defines an object that passes markup through the Filter system.
 *
 * This object should only be constructed with markup that is safe to render. If
 * there is any risk that the string contains user-entered data that has not
 * been filtered first, it must not be used.
 *
 * @internal
 *   This object is marked as internal because it should only be used in the
 *   Filter module on strings that have already been filtered and sanitized
 *   in \Drupal\filter\Plugin\FilterInterface.
 *
 * @see \Drupal\Core\Render\Markup
 */
final class FilteredMarkup implements MarkupInterface, \Countable {
    use MarkupTrait;

}

Classes

Title Deprecated Summary
FilteredMarkup Defines an object that passes markup through the Filter system.

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