function cookiepro_permission in CookiePro by OneTrust 7
Implements hook_permission().
File
- ./
cookiepro.module, line 39 - Enables Drupal to add CookiePro headers on site.
Code
function cookiepro_permission() {
$permissions['administer cookiepro module'] = array(
'title' => t('CookiePro by OneTrust'),
'restrict access' => TRUE,
'description' => t('Users who have this permission can add and remove the scripts from the site.'),
);
return $permissions;
}