You are here

function gdpr_fields_permission in General Data Protection Regulation 7

Implements hook_permission().

File

modules/gdpr_fields/gdpr_fields.module, line 268
Module file for the GDPR Fields module.

Code

function gdpr_fields_permission() {
  $perms = array(
    'administer gdpr fields' => array(
      'title' => t('Administer GDPR field settings'),
      'restrict access' => TRUE,
    ),
  );
  return $perms;
}