1 theme.inc | theme_mark($variables) |
Returns HTML for a marker for new or updated content.
Parameters
$variables: An associative array containing:
- type: Number representing the marker type to display. See MARK_NEW, MARK_UPDATED, MARK_READ.
Related topics
File
- core/
includes/ theme.inc, line 2370 - The theme system, which controls the output of Backdrop.
Code
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>';
}
}
}