You are here

function webform_devel_drush_help in Webform 8.5

Same name and namespace in other branches
  1. 6.x modules/webform_devel/webform_devel.drush.inc \webform_devel_drush_help()

Implements hook_drush_help().

File

modules/webform_devel/webform_devel.drush.inc, line 32
Webform module drush commands.

Code

function webform_devel_drush_help($section) {
  switch ($section) {
    case 'drush:webform-reset':
      return dt('Resets Webform user data and saved state for messages');
    case 'meta:webform:title':
      return dt('Webform development commands');
    case 'meta:webform:summary':
      return dt('Developer specific commands for the Webform module.');
  }
}