You are here

function strongarm_drush_help in Strongarm 6

Implementation of hook_drush_help().

File

./strongarm.drush.inc, line 11
Drush integration for Strongarm. Provides commands to export variables.

Code

function strongarm_drush_help($section) {
  switch ($section) {
    case 'drush:strongarm':
      return dt("Export Drupal variables. Without any arguments a list of all variables will be shown. If arguments are specified they'll be var_exported to stdout.");
  }
}