function PlainTextOutput::renderFromHtml

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Component/Render/PlainTextOutput.php \Drupal\Component\Render\PlainTextOutput::renderFromHtml()
  2. 8.9.x core/lib/Drupal/Component/Render/PlainTextOutput.php \Drupal\Component\Render\PlainTextOutput::renderFromHtml()
  3. 10 core/lib/Drupal/Component/Render/PlainTextOutput.php \Drupal\Component\Render\PlainTextOutput::renderFromHtml()

Overrides OutputStrategyInterface::renderFromHtml

24 calls to PlainTextOutput::renderFromHtml()
Attribute::createAttributeValue in core/lib/Drupal/Core/Template/Attribute.php
Creates the different types of attribute values.
ConfigImporterMissingContentTest::log in core/tests/Drupal/KernelTests/Core/Config/ConfigImporterMissingContentTest.php
EmailAction::execute in core/lib/Drupal/Core/Action/Plugin/Action/EmailAction.php
Executes the plugin.
EntityResourceValidationTrait::validate in core/modules/rest/src/Plugin/rest/resource/EntityResourceValidationTrait.php
Verifies that an entity does not violate any validation constraints.
FileItem::doGetUploadLocation in core/modules/file/src/Plugin/Field/FieldType/FileItem.php
Determines the URI for a file field.

... See full list

File

core/lib/Drupal/Component/Render/PlainTextOutput.php, line 21

Class

PlainTextOutput
Provides an output strategy for transforming HTML into simple plain text.

Namespace

Drupal\Component\Render

Code

public static function renderFromHtml($string) {
    return Html::decodeEntities(strip_tags((string) $string));
}

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