function theme_mark
Same name and namespace in other branches
- 7.x drupal-7.x/includes/theme.inc \theme_mark()
Return a themed marker, useful for marking new or updated content.
Parameters
$type: Number representing the marker type to display
Return value
A string containing the marker.
See also
MARK_NEW, MARK_UPDATED, MARK_READ
Related topics
2 theme calls to theme_mark()
- node_admin_nodes in drupal-6.x/
modules/ node/ node.admin.inc - Form builder: Builds the node administration overview.
- tracker_page in drupal-6.x/
modules/ tracker/ tracker.pages.inc - Menu callback. Prints a listing of active nodes on the site.
Archivo
- drupal-6.x/
includes/ theme.inc, line 1506 - The theme system, which controls the output of Drupal.
Código
function theme_mark($type = MARK_NEW) {
global $user;
if ($user->uid) {
if ($type == MARK_NEW) {
return ' <span class="marker">' . t('new') . '</span>';
}
else if ($type == MARK_UPDATED) {
return ' <span class="marker">' . t('updated') . '</span>';
}
}
}