function addanother_perm in Add Another 6
Same name and namespace in other branches
- 5 addanother.module \addanother_perm()
Implementation of hook_perm().
File
- ./
addanother.module, line 29 - Presents users with an option to create another node of the same type after a node is added.
Code
function addanother_perm() {
return array(
'administer add another',
'use add another',
);
}