Forked from
project / csvfile_formatter
32 commits behind, 1 commit ahead of the upstream repository.
-
José de Leon authoredJosé de Leon authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
csvfile_formatter.module 505 B
<?php
/**
* @file
* Implemented hooks for the csvfile_formatter module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function csvfile_formatter_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.csvfile_formatter':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('A file field formatter that renders CSV files as HTML tables.') . '</p>';
return $output;
}
}