function gdpr_dump_help in General Data Protection Regulation 3.0.x
Same name and namespace in other branches
- 8.2 modules/gdpr_dump/gdpr_dump.module \gdpr_dump_help()
- 8 modules/gdpr_dump/gdpr_dump.module \gdpr_dump_help()
Implements hook_help().
File
- modules/
gdpr_dump/ gdpr_dump.module, line 13 - Module file for the GDPR Sql-Dump module.
Code
function gdpr_dump_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the dump module.
case 'help.page.gdpr_dump':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Provides a drush command for creating GDPR-compliant sql dumps.') . '</p>';
return $output;
default:
}
}