You are here

function _userpoints_user_exists in User Points 5.2

Same name and namespace in other branches
  1. 5.3 userpoints.module \_userpoints_user_exists()
  2. 5 userpoints.module \_userpoints_user_exists()
  3. 6 userpoints.module \_userpoints_user_exists()
  4. 7 userpoints.module \_userpoints_user_exists()
1 call to _userpoints_user_exists()
userpoints_userpointsapi in ./userpoints.module

File

./userpoints.module, line 356

Code

function _userpoints_user_exists($uid) {
  return (int) db_result(db_query('SELECT COUNT(*) FROM {userpoints} WHERE uid = %d', $uid));
}