function path_perm in Drupal 5
Same name and namespace in other branches
- 4 modules/path.module \path_perm()
- 6 modules/path/path.module \path_perm()
Implementation of hook_perm().
File
- modules/
path/ path.module, line 289 - Enables users to rename URLs.
Code
function path_perm() {
return array(
'create url aliases',
'administer url aliases',
);
}