public FormattableMarkup::__construct($string, array $arguments)
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()
File
- core/lib/Drupal/Component/Render/FormattableMarkup.php, line 84
Class
- FormattableMarkup
- Formats a string for HTML display by replacing variable placeholders.
Namespace
Drupal\Component\Render
Code
public function __construct($string, array $arguments) { $this->string = (string) $string; $this->arguments = $arguments; }
Please login to continue.