function drupal_placeholder in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/includes/bootstrap.inc \drupal_placeholder()
Formats text for emphasized display in a placeholder inside a sentence.
Deprecated
in Drupal 8.0.0, will be removed before Drupal 9.0.0. Use \Drupal\Component\Utility\SafeMarkup::format() or Twig's "placeholder" filter instead. Note this method should not be used to simply emphasize a string and therefore has few valid use-cases. Note also, that this method does not mark the string as safe.
See also
\Drupal\Component\Utility\SafeMarkup::format()
File
- core/
includes/ bootstrap.inc, line 923 - Functions that need to be loaded on every Drupal request.
Code
function drupal_placeholder($text) {
return '<em class="placeholder">' . Html::escape($text) . '</em>';
}