You are here

function config_delete_help in Config Delete 8

Implements hook_help().

File

./config_delete.module, line 14
This is the primary module file.

Code

function config_delete_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.config_delete':
      $output = '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Delete configuration items from the UI.') . '</p>';
      return $output;
  }
}