function nodejs_drush_help in Node.js integration 6
Same name and namespace in other branches
- 8 nodejs.drush.inc \nodejs_drush_help()
- 7 nodejs.drush.inc \nodejs_drush_help()
Implements hook_drush_help().
File
- ./
nodejs.drush.inc, line 6
Code
function nodejs_drush_help($section) {
switch ($section) {
case 'drush:broadcast-message':
return dt('Broadcast a message to all connected cliets.');
case 'drush:user-message':
return dt('Send a message to a given user.');
case 'drush:kick-user':
return dt('Kick the given user off the node.js server.');
}
}