You are here

function contact_storage_export_help in Contact Storage Export 8

Implements hook_help().

File

./contact_storage_export.module, line 16
Contains contact_storage_export.module..

Code

function contact_storage_export_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the contact_storage_export module.
    case 'help.page.contact_storage_export':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provides a way to export Contact Form submissions to CSV.') . '</p>';
      return $output;
    default:
  }
}