function database_sanitize_drush_help in Database Sanitize 7
Same name and namespace in other branches
- 8 drush/database_sanitize.drush8.inc \database_sanitize_drush_help()
Implements hook_drush_help().
File
- drush/
database_sanitize.drush8.inc, line 11 - Drush Database Sanitize commands.
Code
function database_sanitize_drush_help($section) {
switch ($section) {
case 'meta:database_sanitize:title':
return dt('Database Sanitize commands.');
case 'meta:database_sanitize:summary':
return dt('Helper commands for dealing with database sanitization YAML files.');
case 'drush:db-sanitize-analyze':
return dt('Compares existing database_sanitize.yml files on the site installation against existing database tables.');
case 'drush:db-sanitize-generate':
return dt('Generates a database_sanitize.yml file for tables not specified on sanitize YML files.');
}
}