You are here

function domain_menus_help in Domain Menus for Domains 9.x

Same name and namespace in other branches
  1. 3.x domain_menus.module \domain_menus_help()
  2. 9.1.x domain_menus.module \domain_menus_help()

Implements hook_help().

@inheritdoc

File

./domain_menus.module, line 25
Domain menus implementation through entity create, delete, and access customizations.

Code

function domain_menus_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.domain_menus':
      $text = file_get_contents(dirname(__FILE__) . "/README.txt");
      $output = nl2br($text);
      return $output;
      break;
  }
}