You are here

function dxpr_gridstack_help in DXPR GridStack 7

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

Implements hook_help().

File

./dxpr_gridstack.module, line 26
Code for the DXPR GridStack feature.

Code

function dxpr_gridstack_help($path, $arg) {
  switch ($path) {
    case 'admin/help#dxpr_gridstack':

      // Help text for the admin section, using the module name in the path.
      return t("Read our !link on DXPR.com", array(
        '!link' => l(t('DXPR GridStack Views Tutorial'), "https://www.dxpr.com/documentation/creating-new-gridstack-view"),
      ));
  }
}