You are here

function apps_drush_help in Apps 7

Implements hook_drush_help().

File

./apps.drush.inc, line 41
Apps module drush integration.

Code

function apps_drush_help($section) {
  switch ($section) {
    case 'drush:apps-server-list':
      return dt("List all the servers that provide apps for your site.");
    case 'drush:apps-list':
      return dt("List all the available apps for your site.");
    case 'drush:apps-install':
      return dt("Install an App to your site.");
  }
}