function track_field_changes_help in Track Field Changes 8
Same name and namespace in other branches
- 7 track_field_changes.module \track_field_changes_help()
Implements hook_help().
File
- ./
track_field_changes.module, line 6
Code
function track_field_changes_help($route_name, \Drupal\Core\Routing\RouteMatchInterface $route_match) {
switch ($route_name) {
case 'track_field_changes.admin_settings':
$output = '<p>' . t('This page lists all the <em>fields audited</em> that are currently defined on this system.') . '</p>';
return $output;
}
}