You are here

function path_perm in Drupal 6

Same name and namespace in other branches
  1. 4 modules/path.module \path_perm()
  2. 5 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',
  );
}