function theme_activity_user_profile_activity in Activity 6
Same name and namespace in other branches
- 5.4 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 1308  - activity.module
 
Code
function theme_activity_user_profile_activity($activities) {
  if ($content = theme('item_list', $activities, NULL, 'ul', array(
    'class' => 'activity-list',
  ))) {
    return $content;
  }
}