public function HtmlEscapedText::__toString in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/Render/HtmlEscapedText.php \Drupal\Component\Render\HtmlEscapedText::__toString()
- 9 core/lib/Drupal/Component/Render/HtmlEscapedText.php \Drupal\Component\Render\HtmlEscapedText::__toString()
File
- core/
lib/ Drupal/ Component/ Render/ HtmlEscapedText.php, line 37
Class
- HtmlEscapedText
- Escapes HTML syntax characters to HTML entities for display in markup.
Namespace
Drupal\Component\RenderCode
public function __toString() {
return Html::escape($this->string);
}