W3cubDocs

/Drupal 8

public function FormattableMarkup::__construct

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;
}

© 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