public function FormattableMarkup::__toString in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Component/Render/FormattableMarkup.php \Drupal\Component\Render\FormattableMarkup::__toString()
- 10 core/lib/Drupal/Component/Render/FormattableMarkup.php \Drupal\Component\Render\FormattableMarkup::__toString()
Returns markup.
Return value
string The markup.
Overrides MarkupInterface::__toString
1 call to FormattableMarkup::__toString()
- FormattableMarkup::jsonSerialize in core/
lib/ Drupal/ Component/ Render/ FormattableMarkup.php - Returns a representation of the object for use in JSON serialization.
File
- core/
lib/ Drupal/ Component/ Render/ FormattableMarkup.php, line 98
Class
- FormattableMarkup
- Formats a string for HTML display by replacing variable placeholders.
Namespace
Drupal\Component\RenderCode
public function __toString() {
return static::placeholderFormat($this->string, $this->arguments);
}