You are here

function theme_activity_page in Activity 5.2

Same name and namespace in other branches
  1. 5.4 activity.module \theme_activity_page()
  2. 5 activity.module \theme_activity_page()
  3. 5.3 activity.module \theme_activity_page()
  4. 6 activity.module \theme_activity_page()

theme function for displaying the users activity page

1 theme call to theme_activity_page()
activity_page in ./activity.module
Menu callback to display the records in a page

File

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

Code

function theme_activity_page($items) {
  return theme('item_list', $items, NULL, 'ul', array(
    'class' => 'activity-list',
  ));
}