drupal_placeholder($variables)Formats text for emphasized display in a placeholder inside a sentence. Used automatically by t().
$variables An associative array containing:
The formatted text (html).
includes/bootstrap.inc, line 2642
<?php
function drupal_placeholder($variables) {
return '<em class="placeholder">' . check_plain($variables['text']) . '</em>';
}
?>