function FormattableMarkup::__construct
Same name in other branches
- 9 core/lib/Drupal/Component/Render/FormattableMarkup.php \Drupal\Component\Render\FormattableMarkup::__construct()
- 8.9.x core/lib/Drupal/Component/Render/FormattableMarkup.php \Drupal\Component\Render\FormattableMarkup::__construct()
- 11.x core/lib/Drupal/Component/Render/FormattableMarkup.php \Drupal\Component\Render\FormattableMarkup::__construct()
Constructs a new class instance.
Parameters
string $string: A string containing placeholders. The string itself will not be escaped, any unsafe content must be in $args and inserted via placeholders.
array $arguments: An array with placeholder replacements, keyed by placeholder. See \Drupal\Component\Render\FormattableMarkup::placeholderFormat() for additional information about placeholders.
See also
\Drupal\Component\Render\FormattableMarkup::placeholderFormat()
1 method overrides FormattableMarkup::__construct()
- TranslatableMarkup::__construct in core/
lib/ Drupal/ Core/ StringTranslation/ TranslatableMarkup.php - Constructs a new class instance.
File
-
core/
lib/ Drupal/ Component/ Render/ FormattableMarkup.php, line 90
Class
- FormattableMarkup
- Formats a string for HTML display by replacing variable placeholders.
Namespace
Drupal\Component\RenderCode
public function __construct($string, array $arguments) {
$this->string = (string) $string;
$this->arguments = $arguments;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.