You are here

function theme_activity_user_profile_activity in Activity 5.4

Same name and namespace in other branches
  1. 6 activity.module \theme_activity_user_profile_activity()

Theme function for displaying an activity block on a user profile.

1 theme call to theme_activity_user_profile_activity()
activity_user in ./activity.module
Implementation of hook_user().

File

./activity.module, line 1011
activity.module

Code

function theme_activity_user_profile_activity($activities) {
  if ($content = theme('item_list', $activities, NULL, 'ul', array(
    'class' => 'activity-list',
  ))) {
    return $content;
  }
}