function insert_view_help in Insert View 8
Same name and namespace in other branches
- 2.0.x 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] tags.</p>');
}
}