You are here

gridstack_example.module in GridStack 8.2

Same filename and directory in other branches
  1. 8 modules/gridstack_example/gridstack_example.module

Provides GridStack examples.

File

modules/gridstack_example/gridstack_example.module
View 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

Namesort descending Description
gridstack_example_help Implements hook_help().