You are here

function acquia_spi_drush_help in Acquia Connector 7.3

Same name and namespace in other branches
  1. 7.2 acquia_spi/acquia_spi.drush.inc \acquia_spi_drush_help()

Implements hook_drush_help().

File

acquia_spi/acquia_spi.drush.inc, line 34
Drush integration for the acquia_spi module.

Code

function acquia_spi_drush_help($section) {
  switch ($section) {
    case 'drush:spi-get':
      return dt("Output raw Acquia SPI data.\n NOTE: If the Acquia SPI module is not enabled or installed, execute with:\n   drush -i !spidir\n ", array(
        '!spidir' => dirname(__FILE__),
      ));
  }
}