You are here

function url_alias_permissions_help in URL Alias Permissions 7

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

Implements hook_help().

File

./url_alias_permissions.module, line 12
This is the main script for the URL Alias Permissions module. It merely contains the implementation of hooks invoked by Drupal core.

Code

function url_alias_permissions_help($path, $arg) {
  switch ($path) {

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