function config_inspector_help in Configuration Inspector 8
Implements hook_help().
File
- ./
config_inspector.module, line 13 - Configuration structure inspector module.
Code
function config_inspector_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'config_inspector.overview':
return '<p>' . t('List of configuration keys to review with their configuration schema. Keys that have no schema are displayed but only raw data review is possible. Check out the <a href=":schema_link">configuration schema documentation</a> for more details.', [
':schema_link' => 'https://drupal.org/node/1905070',
]) . '</p>';
}
}