public static SafeMarkup::format($string, array $args)
Formats a string for HTML display by replacing variable placeholders.
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 $args: An array with placeholder replacements, keyed by placeholder. See \Drupal\Component\Render\FormattableMarkup::placeholderFormat() for additional information about placeholders.
Return value
string|\Drupal\Component\Render\MarkupInterface The formatted string, which is an instance of MarkupInterface unless sanitization of an unsafe argument was suppressed (see above).
Deprecated
in Drupal 8.0.0, will be removed before Drupal 9.0.0. Use \Drupal\Component\Render\FormattableMarkup.
See also
\Drupal\Component\Render\FormattableMarkup::placeholderFormat()
\Drupal\Component\Render\FormattableMarkup
File
- core/lib/Drupal/Component/Utility/SafeMarkup.php, line 88
Class
- SafeMarkup
- Contains deprecated functionality related to sanitization of markup.
Namespace
Drupal\Component\Utility
Code
public static function format($string, array $args) { return new FormattableMarkup($string, $args); }
Please login to continue.