function node_expire_perm in Node expire 5
Same name and namespace in other branches
- 6.2 node_expire.module \node_expire_perm()
- 6 node_expire.module \node_expire_perm()
Implementation of hook_perm().
File
- ./
node_expire.module, line 11 - Alerts administrators of possibly outdated materials and optionally unpublishes them.
Code
function node_expire_perm() {
return array(
'administer node_expire',
'edit expirations',
);
}