function devel_generate_drush_help in Devel 6
Implementation of hook_drush_help().
File
- ./
devel_generate.drush.inc, line 11 - Generate content, taxonomy, and users via drush framework.
Code
function devel_generate_drush_help($section) {
switch ($section) {
case 'drush:generate-users':
return dt('Generate user accounts.');
case 'drush:generate-taxonomy':
return dt('Generate taxonomy terms for a given vocabulary.');
case 'drush:generate-content':
return dt('Generate nodes and comments.');
}
}