You are here

function views_entity_embed_help in Views entity embed 2.0.x

Same name and namespace in other branches
  1. 8 views_entity_embed.module \views_entity_embed_help()

Implements hook_help().

File

./views_entity_embed.module, line 13
Contains main hooks of Views Entity Embed.

Code

function views_entity_embed_help($route_name, RouteMatchInterface $route_match) {
  if ($route_name == 'help.page.views_entity_embed') {
    $output = '';
    $output .= '<h3>' . t('About') . '</h3>';
    $output .= '<p>' . t('Views entity embed  module provides Views to be embed with CKE Editor.') . '</p>';
    return $output;
  }
}