You are here

function theme_spaces_shout in Spaces 5.2

Same name and namespace in other branches
  1. 5 spaces_shoutbox/spaces_shoutbox.module \theme_spaces_shout()

Shoutbox markup

2 theme calls to theme_spaces_shout()
spaces_shoutbox_ajax in spaces_shoutbox/spaces_shoutbox.module
Shoutbox AJAX callback
theme_views_view_list_spaces_shouts in spaces_shoutbox/spaces_shoutbox.module
Custom spaces shout theme f()

File

spaces_shoutbox/spaces_shoutbox.module, line 151

Code

function theme_spaces_shout($vars) {
  extract($vars);
  $title = _filter_url($title, 'shout');

  // link shout urls
  return "<div class='shout'><span class='name'>{$name}</span> {$title}</div>";
}