You are here

function addanother_perm in Add Another 5

Same name and namespace in other branches
  1. 6 addanother.module \addanother_perm()

Implementation of hook_perm().

File

./addanother.module, line 28
Presents users with an option to create another node of the same type after a node is added.

Code

function addanother_perm() {
  return array(
    'enable add another',
  );
}