
| Current Path : /var/www/html/rocksensor2/web/modules/contrib/entity_export_csv/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor2/web/modules/contrib/entity_export_csv/entity_export_csv.module |
<?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:
}
}