You are here

function hosting_alias_perm in Hosting 6.2

Same name and namespace in other branches
  1. 5 alias/hosting_alias.module \hosting_alias_perm()

Implementation of hook_perm().

File

alias/hosting_alias.module, line 449
Allow sites to have domain aliases that they can be accessed with.

Code

function hosting_alias_perm() {
  return array(
    'create site aliases',
    'administer hosting aliases',
  );
}