You are here

function field_inheritance_help in Field Inheritance 2.0.x

Same name and namespace in other branches
  1. 8 field_inheritance.module \field_inheritance_help()

Implements hook_help().

File

./field_inheritance.module, line 23
Contains field_inheritance.module.

Code

function field_inheritance_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the field_inheritance module.
    case 'help.page.field_inheritance':
      $output = '';
      return $output;
    default:
  }
}