You are here

function sooperthemes_gridstack_help in Sooperthemes GridStack 7

Same name and namespace in other branches
  1. 8 sooperthemes_gridstack.module \sooperthemes_gridstack_help()

Implements hook_help().

File

./sooperthemes_gridstack.module, line 26
Code for the SooperThemes GridStack feature.

Code

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

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