You are here

function path_perm in Drupal 4

Same name and namespace in other branches
  1. 5 modules/path/path.module \path_perm()
  2. 6 modules/path/path.module \path_perm()

Implementation of hook_perm().

File

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

Code

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