theme_placeholder($text)
drupal/includes/theme.inc, line 374
Formats text for emphasized display in a placeholder inside a sentence. Used automatically by t().
$text The text to format (plain-text).
The formatted text (html).
| Name | Description |
|---|---|
| Themeable functions | Functions that display HTML, and which can be customized by themes. |
function theme_placeholder($text) {
return '<em>'. check_plain($text) .'</em>';
}