You are here

function dynamic_layouts_help in Dynamic Layouts 8

Implements hook_help().

File

./dynamic_layouts.module, line 26
Provides Dynamic Layouts module functions.

Code

function dynamic_layouts_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.dynamic_layouts':
      return check_markup(file_get_contents(dirname(__FILE__) . '/README.txt'));
  }
  return NULL;
}