You are here

public static function Nodejs::kickUser in Node.js integration 7

Same name and namespace in other branches
  1. 6 nodejs.module \Nodejs::kickUser()
1 call to Nodejs::kickUser()
nodejs_kick_user in ./nodejs.module
Kick a user from the node.js server.

File

./nodejs.module, line 927

Class

Nodejs

Code

public static function kickUser($uid) {
  $options = array(
    'method' => 'POST',
  );
  return self::httpRequest("nodejs/user/kick/{$uid}", $options);
}