You are here

function entity_clone_help in Entity Clone 8

Implements hook_help().

File

./entity_clone.module, line 30
Contains entity_clone.module.

Code

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

    // Main module help for the entity_clone module.
    case 'help.page.entity_clone':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provides a new operation to clone all Entities.') . '</p>';
      return $output;
    default:
      return;
  }
}