| Versionen | |
|---|---|
| drupal6 – drupal7 | theme_placeholder($text) |
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).
includes/
<?php
function theme_placeholder($text) {
return '<em>' . check_plain($text) . '</em>';
}
?>
Kommentare
Kommentar hinzufügen