You are here

function pathauto_permission in Pathauto 7

Implements hook_permission().

File

./pathauto.module, line 63
Main file for the Pathauto module, which automatically generates aliases for content.

Code

function pathauto_permission() {
  return array(
    'administer pathauto' => array(
      'title' => t('Administer pathauto'),
      'description' => t('Allows a user to configure patterns for automated aliases and bulk delete URL-aliases.'),
    ),
    'notify of path changes' => array(
      'title' => t('Notify of Path Changes'),
      'description' => t('Determines whether or not users are notified.'),
    ),
  );
}