public static function SafeMarkup::format in Service Container 7.2
Same name and namespace in other branches
- 7 lib/Drupal/Component/Utility/SafeMarkup.php \Drupal\Component\Utility\SafeMarkup::format()
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
1 call to SafeMarkup::format()
- PoStreamReader::readLine in lib/
Drupal/ Component/ Gettext/ PoStreamReader.php - Reads a line from the PO stream and stores data internally.
File
- lib/
Drupal/ Component/ Utility/ SafeMarkup.php, line 93 - Contains \Drupal\Component\Utility\SafeMarkup.
Class
- SafeMarkup
- Contains deprecated functionality related to sanitization of markup.
Namespace
Drupal\Component\UtilityCode
public static function format($string, array $args) {
return new FormattableMarkup($string, $args);
}