function theme_mark in Drupal 7
Same name and namespace in other branches
- 4 includes/theme.inc \theme_mark()
- 5 includes/theme.inc \theme_mark()
- 6 includes/theme.inc \theme_mark()
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
3 theme calls to theme_mark()
- node_admin_nodes in modules/
node/ node.admin.inc - Form builder: Builds the node administration overview.
- theme_node_recent_content in modules/
node/ node.module - Returns HTML for a recent node to be displayed in the recent content block.
- tracker_page in modules/
tracker/ tracker.pages.inc - Page callback: prints a listing of active nodes on the site.
File
- includes/
theme.inc, line 2186 - The theme system, which controls the output of Drupal.
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>';
}
}
}