You are here

function underscore_drush_help in Underscore.js 7.2

Implements hook_drush_help().

File

drush/underscore.drush.inc, line 31
drush integration for underscore module.

Code

function underscore_drush_help($section) {
  switch ($section) {
    case 'drush:underscore-download':
      $path = 'sites/all/librarires';
      $msg = dt("Downloads Underscore.js. Default location is @path.", array(
        '@path' => $path,
      ));
      return $msg;
  }
}