function sooperthemes_gridstack_help in Sooperthemes GridStack 8
Same name and namespace in other branches
- 7 sooperthemes_gridstack.module \sooperthemes_gridstack_help()
Implements hook_help().
File
- ./
sooperthemes_gridstack.module, line 13 - Primary module hooks for SooperThemes GridStack module.
Code
function sooperthemes_gridstack_help($route_name, RouteMatchInterface $route_match) {
if ($route_name == 'help.page.sooperthemes_gridstack') {
return t('Read our <a href=":url">SooperThemes GridStack Views Tutorial</a> on SooperThemes.com.', [
':url' => 'https://www.sooperthemes.com/documentation/creating-new-gridstack-view',
]);
}
}