You are here

entity_export_csv.module in Entity Export CSV 8

File

entity_export_csv.module
View source
<?php

/**
 * @file
 * Contains entity_export_csv.module.
 */
use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
function entity_export_csv_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the entity_export_csv module.
    case 'help.page.entity_export_csv':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Export Content Entity to CSV.') . '</p>';
      return $output;
    default:
  }
}

Functions

Namesort descending Description
entity_export_csv_help Implements hook_help().