theme_mark

Versions
mediamosa-21
theme_mark($variables)

Return a themed marker, useful for marking 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

Return value

A string containing the marker.

Related topics

Code

includes/theme.inc, line 1792

<?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>';
    }
  }
}
?>