mark.func.php 758 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for bootstrap_mark().
  5. */
  6. /**
  7. * Returns HTML for a marker for new or updated content.
  8. *
  9. * @param array $variables
  10. * An associative array containing:
  11. * - type: Number representing the marker type to display. See MARK_NEW,
  12. * MARK_UPDATED, MARK_READ.
  13. *
  14. * @return string
  15. * The constructed HTML.
  16. *
  17. * @see theme_mark()
  18. *
  19. * @ingroup theme_functions
  20. */
  21. function bootstrap_mark(array $variables) {
  22. global $user;
  23. if ($user->uid) {
  24. if ($variables['type'] == MARK_NEW) {
  25. return ' <span class="marker label label-primary">' . t('new') . '</span>';
  26. }
  27. elseif ($variables['type'] == MARK_UPDATED) {
  28. return ' <span class="marker label label-info">' . t('updated') . '</span>';
  29. }
  30. }
  31. }