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;
}
doc_Drupal
2016-10-29 09:15:08
Comments
Leave a Comment

Please login to continue.