You are here

function dxpr_gridstack_help in DXPR GridStack 8

Same name and namespace in other branches
  1. 7 dxpr_gridstack.module \dxpr_gridstack_help()
  2. 1.0.x dxpr_gridstack.module \dxpr_gridstack_help()

Implements hook_help().

File

./dxpr_gridstack.module, line 13
Primary module hooks for DXPR GridStack module.

Code

function dxpr_gridstack_help($route_name, RouteMatchInterface $route_match) {
  if ($route_name == 'help.page.dxpr_gridstack') {
    return t('Read our <a href=":url">DXPR GridStack Views Tutorial</a> on DXPR.com.', [
      ':url' => 'https://www.sooperthemes.com/documentation/creating-new-gridstack-view',
    ]);
  }
}