Implements hook_help().

Fichier

modules/entity_clone_extras/entity_clone_extras.module, line 16

Code

function entity_clone_extras_help($route_name, RouteMatchInterface $route_match) {
    switch ($route_name) {
        // Main module help for the entity_clone_extras module.
        case 'help.page.entity_clone_extras':
            $output = '';
            $output .= '<h3>' . t('About') . '</h3>';
            $output .= '<p>' . t('Allow for bundle-level permissions for Node (and Media) entity types') . '</p>';
            return $output;
        default:
    }
}