You are here

function url_alias_permissions_help in URL Alias Permissions 8

Same name and namespace in other branches
  1. 7 url_alias_permissions.module \url_alias_permissions_help()

Implements hook_help().

File

./url_alias_permissions.module, line 17
Contains url_alias_permissions.module.

Code

function url_alias_permissions_help(string $route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the Field Permissions module.
    case 'help.page.url_alias_permissions':
      return '<p>' . t('Grant access to users to edit and create path aliases for each entity type.') . '</p>';
  }
}