You are here

function globalredirect_permission in Global Redirect 7

Implements hook_permission().

File

./globalredirect.module, line 326
The Global Redirect module redirects for all paths which have aliases but are not using the aliases which reduces the risk of duplicate content.

Code

function globalredirect_permission() {
  return array(
    'administer global redirect' => array(
      'title' => t('Administer Global Redirect'),
      'description' => t('Allow access to configure Global Redirect module.'),
    ),
  );
}