function path_access_help in Path Access 6
Same name and namespace in other branches
- 7 path_access.module \path_access_help()
Implementation of hook_help().
File
- ./
path_access.module, line 25 - Restricts access to any Drupal path on a per-role basis.
Code
function path_access_help($path, $arg) {
switch ($path) {
case 'admin/user/pathaccess':
return t('Each user role can be granted or denied access to any url paths. This is a crude but straight forward way to restrict groups of nodes/pages to certain users using only the paths associated with the pages. Page access is not limited to node pages only, anything can be controlled using paths.');
}
}