function gridstack_example_help in GridStack 8.2
Same name and namespace in other branches
- 8 modules/gridstack_example/gridstack_example.module \gridstack_example_help()
Implements hook_help().
File
- modules/
gridstack_example/ gridstack_example.module, line 11 - Provides GridStack examples.
Code
function gridstack_example_help($route_name) {
if ($route_name == 'help.page.gridstack_example') {
$output = file_get_contents(dirname(__FILE__) . '/README.md');
return function_exists('blazy_parse_markdown') ? blazy_parse_markdown($output) : '<pre>' . $output . '</pre>';
}
return '';
}