You are here

function user_relationships_pending_requests_page in User Relationships 6

Same name and namespace in other branches
  1. 7 user_relationships_ui/user_relationships_ui.pages.inc \user_relationships_pending_requests_page()

List of pending requests from other users

1 string reference to 'user_relationships_pending_requests_page'
user_relationships_ui_menu in user_relationships_ui/user_relationships_ui.module
Implementation of hook_menu().

File

user_relationships_ui/user_relationships_ui.pages.inc, line 66
Various user relationships admin and user pages

Code

function user_relationships_pending_requests_page($account = NULL) {

  // Check that the uid is valid, not the anonymous user, and the user exists
  if (!$account) {
    global $user;
    $account = $user;
  }
  return theme('user_relationships_pending_requests', $account);
}