function path_access_help in Path Access 7
Same name and namespace in other branches
- 6 path_access.module \path_access_help()
Implements hook_help().
File
- ./
path_access.module, line 27 - Restricts access to any Drupal path on a per-role basis.
Code
function path_access_help($path, $arg) {
switch ($path) {
case 'admin/config/people/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.');
}
}