You are here

function recommender_drush_help in Recommender API 6.2

Same name and namespace in other branches
  1. 7.6 recommender.drush.inc \recommender_drush_help()
  2. 7.4 recommender.drush.inc \recommender_drush_help()
  3. 7.5 recommender.drush.inc \recommender_drush_help()

Implementation of hook_drush_help().

File

./recommender.drush.inc, line 28
RecommenderAPI drush command. To use this, please install Drush at http://drupal.org/project/drush

Code

function recommender_drush_help($section) {
  switch ($section) {
    case 'drush:recommender':
      return dt("Run RecommenderAPI based modules, compute similarity and/or prediction.");
  }
}