public FormattableMarkup::__construct($string, array $arguments)
Constructs a new class instance.
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.
\Drupal\Component\Render\FormattableMarkup::placeholderFormat()
public function __construct($string, array $arguments) { $this->string = (string) $string; $this->arguments = $arguments; }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Component!Render!FormattableMarkup.php/function/FormattableMarkup::__construct/8.1.x