You are here

function encrypt_drush_help in Encrypt 8.3

Implements hook_drush_help().

File

drush/encrypt.drush.inc, line 13
Drush integration for Encrypt module.

Code

function encrypt_drush_help($section) {
  switch ($section) {
    case 'meta:encrypt:title':
      return dt('Encrypt commands');
    case 'meta:encrypt:summary':
      return dt('Interact with the encryption service.');
  }
}