Same name and namespace in other branches
  1. 8.x-1.x entity_clone.module \entity_clone_help() 1 commentaire

Implements hook_help().

Fichier

./entity_clone.module, line 31

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;
    }
}