Same name and namespace in other branches
  1. 4.6.x modules/path.module \path_perm()
  2. 4.7.x modules/path.module \path_perm()
  3. 5.x modules/path/path.module \path_perm()

Implementation of hook_perm().

File

modules/path/path.module, line 257
Enables users to rename URLs.

Code

function path_perm() {
  return array(
    'create url aliases',
    'administer url aliases',
  );
}