You are here

insert_view_adv.module in Advanced Insert View 8

Same filename and directory in other branches
  1. 2.0.x insert_view_adv.module

Provides an Advanced Insert View input filter.

File

insert_view_adv.module
View source
<?php

/**
 * @file
 * Provides an Advanced Insert View input filter.
 */
use Drupal\Core\Routing\RouteMatchInterface;

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

Functions

Namesort descending Description
insert_view_adv_help Implements hook_help().