You are here

function domain_perm in Domain Access 5

Same name and namespace in other branches
  1. 6.2 domain.module \domain_perm()

Implement hook_perm()

File

./domain.module, line 190
Core module functions for the Domain Access suite.

Code

function domain_perm() {
  $perms = array(
    'administer domains',
    'assign domain editors',
    'edit domain nodes',
    'set domain access',
    'view domain publishing',
  );
  return $perms;
}