public static function Nodejs::removeUserFromChannel in Node.js integration 6
Same name and namespace in other branches
- 7 nodejs.module \Nodejs::removeUserFromChannel()
1 call to Nodejs::removeUserFromChannel()
- nodejs_remove_user_from_channel in ./
nodejs.module - Remove a user from a channel.
File
- ./
nodejs.module, line 667
Class
Code
public static function removeUserFromChannel($uid, $channel) {
self::initConfig();
return drupal_http_request(self::$baseUrl . "nodejs/user/channel/remove/{$channel}/{$uid}", self::$headers);
}