You are here

function content_export_yaml_help in Content Export YAML 8

Implements hook_help().

File

./content_export_yaml.module, line 11
Contains content_export.module.

Code

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

    // Main module help for the content_export module.
    case 'help.page.content_export_yaml':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Export and Import Content Using YAML file') . '</p>';
      return $output;
    default:
  }
}