You are here

function ad_channel_perm in Advertisement 6.3

Same name and namespace in other branches
  1. 5.2 channel/ad_channel.module \ad_channel_perm()
  2. 6.2 channel/ad_channel.module \ad_channel_perm()
  3. 7 channel/ad_channel.module \ad_channel_perm()

Drupal _perm hook. Establishes permissions used by this module.

Return value

An array of permissions used by this module.

File

channel/ad_channel.module, line 40
Ad Channel module.

Code

function ad_channel_perm() {
  return array(
    'administer channels',
    'configure ad premier status',
  );
}