You are here

function cookie_content_blocker_permission in Cookie Content Blocker 7

Implements hook_permission().

File

./cookie_content_blocker.module, line 41
Contains the main module code for Cookie content blocker.

Code

function cookie_content_blocker_permission() {
  return array(
    'administer cookie content blocker' => array(
      'title' => t('Administer Cookie content blocker'),
      'description' => t("Allow users to configure Cookie content blocker's settings."),
    ),
  );
}