uid; } function query() { //dpm($this, 'fb_views_handler_author_is_friend->query'); $fb_app = $GLOBALS['_fb_app']; // Set on Canvas and Connect pages. $uid = $this->argument; if ($fb_app && $uid) { $fbu = fb_get_fbu($uid, $fb_app); if ($fbu) { $friends = fb_get_friends($fbu, $fb_app); if (is_array($friends) && count($friends)) { $this->ensure_my_table(); $this->query->add_where(0, 'fb_user.fbu IN (%s)', implode(',', $friends)); } } } } }