You are here

function activity_page in Activity 5

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

Menu callback to display the records in a page

1 string reference to 'activity_page'
activity_menu in ./activity.module
Implementation of hook_menu().

File

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

Code

function activity_page() {
  global $user;
  $buddy_activity = activity_buddy_activity($user->uid);

  #dsm($user->uid);

  #dsm($buddy_activity);
  return theme('activity_page', $buddy_activity);
}