You are here

function theme_activity in Activity 5.3

Same name and namespace in other branches
  1. 5.4 activity.module \theme_activity()
  2. 6 activity.module \theme_activity()
3 theme calls to theme_activity()
activity_block in ./activity.module
create a block for display
activity_table in ./activity.module
Menu callback to display the records in a page
buddylistactivity_block in contrib/buddylistactivity/buddylistactivity.module

File

./activity.module, line 735
Activity module: Allow users to see their friends' activity on the site.

Code

function theme_activity($message, $item) {

  // $item is the unprocessed activity item so that themers can do more with it.
  return '<span class="activity">' . $message . '</span>';
}