/**
 * wpsd_get_author_comments_received_count function.
 * 
 * @access public
 * @param mixed $user_id
 * @return integer
 */
function wpsd_get_author_comments_received_count($user_id)
{
    $o = new WPSDUserMetrics($user_id);
    return $o->getCommentsReceived();
}