You are here

function discussthis_perm in Discuss This! 6

Same name and namespace in other branches
  1. 5 discussthis.module \discussthis_perm()

\brief Implementation of hook_perm(). Permissions for this module

Return value

array An array of valid permissions for the discussthis module

File

./discussthis.module, line 45
Associations discussions in forums with specific nodes

Code

function discussthis_perm() {
  return array(
    'administer discuss this',
    'override discuss this forums',
    'access discuss this links',
    'initiate discuss this topics',
  );
}