You are here

function insert_view_help in Insert View 2.0.x

Same name and namespace in other branches
  1. 8 insert_view.module \insert_view_help()

Implements hook_help().

File

./insert_view.module, line 13
Provides an Insert View input filter.

Code

function insert_view_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.insert_view':
      return t('<p>Embed views into nodes using [view:name=display=args=limit:number] tags.</p>');
  }
}