- phptemplate_privatemsg_list_field__subject in contributions/privatemsg/privatemsg.theme.inc
- Theme the subject of the thread.
theme_mark($type = MARK_NEW)theme_mark($variables)Returns HTML for a marker for new or updated content.
$variables An associative array containing:
drupal/includes/theme.inc, line 1776
<?php
function theme_mark($variables) {
$type = $variables['type'];
global $user;
if ($user->uid) {
if ($type == MARK_NEW) {
return ' <span class="marker">' . t('new') . '</span>';
}
elseif ($type == MARK_UPDATED) {
return ' <span class="marker">' . t('updated') . '</span>';
}
}
}
?>