gridstack_example.module in GridStack 8.2
Same filename and directory in other branches
Provides GridStack examples.
File
modules/gridstack_example/gridstack_example.moduleView source
<?php
/**
* @file
* Provides GridStack examples.
*/
/**
* Implements hook_help().
*/
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 '';
}
Functions
Name | Description |
---|---|
gridstack_example_help | Implements hook_help(). |