You are here

function linkit_help in Linkit 8.4

Same name and namespace in other branches
  1. 8.5 linkit.module \linkit_help()
  2. 7.2 linkit.module \linkit_help()

Implements hook_help().

File

./linkit.module, line 17

Code

function linkit_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'entity.linkit_profile.attributes':
      return '<p>' . t('Attributes are HTML attributes that will be attached to the insert plugin.') . '</p>';
      break;
  }
}