function gridstack_example_help in GridStack 8
Same name and namespace in other branches
- 8.2 modules/gridstack_example/gridstack_example.module \gridstack_example_help()
Implements hook_help().
File
- modules/
gridstack_example/ gridstack_example.module, line 25 - Provides GridStack examples.
Code
function gridstack_example_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.gridstack_example':
return check_markup(file_get_contents(dirname(__FILE__) . '/README.txt'));
}
}