You are here

function _social_gdpr_get_permissions in Open Social 8.6

Same name and namespace in other branches
  1. 8.9 modules/custom/social_gdpr/social_gdpr.install \_social_gdpr_get_permissions()
  2. 8.2 modules/custom/social_gdpr/social_gdpr.install \_social_gdpr_get_permissions()
  3. 8.3 modules/custom/social_gdpr/social_gdpr.install \_social_gdpr_get_permissions()
  4. 8.4 modules/custom/social_gdpr/social_gdpr.install \_social_gdpr_get_permissions()
  5. 8.5 modules/custom/social_gdpr/social_gdpr.install \_social_gdpr_get_permissions()
  6. 8.7 modules/custom/social_gdpr/social_gdpr.install \_social_gdpr_get_permissions()
  7. 8.8 modules/custom/social_gdpr/social_gdpr.install \_social_gdpr_get_permissions()
  8. 10.3.x modules/custom/social_gdpr/social_gdpr.install \_social_gdpr_get_permissions()
  9. 10.0.x modules/custom/social_gdpr/social_gdpr.install \_social_gdpr_get_permissions()
  10. 10.1.x modules/custom/social_gdpr/social_gdpr.install \_social_gdpr_get_permissions()
  11. 10.2.x modules/custom/social_gdpr/social_gdpr.install \_social_gdpr_get_permissions()

Build the permissions.

Parameters

string $role: The role.

Return value

array Returns an array containing the permissions.

1 call to _social_gdpr_get_permissions()
_social_gdpr_set_permissions in modules/custom/social_gdpr/social_gdpr.install
Function to set permissions.

File

modules/custom/social_gdpr/social_gdpr.install, line 44
Install, update and uninstall functions for the social_gdpr module.

Code

function _social_gdpr_get_permissions($role) {

  // Anonymous.
  $permissions['anonymous'] = [
    'without consent',
  ];

  // Authenticated.
  $permissions['authenticated'] = array_merge($permissions['anonymous'], []);

  // Content manager.
  $permissions['contentmanager'] = array_merge($permissions['authenticated'], []);

  // Site manager.
  $permissions['sitemanager'] = array_merge($permissions['contentmanager'], [
    'administer data policy settings',
    'edit data policy',
    'view all data policy revisions',
    'access data policy revisions',
    'revert all data policy revisions',
    'overview user consents',
    'edit inform and consent setting',
    'overview inform and consent settings',
    'administer inform and consent settings',
    'change inform and consent setting status',
  ]);

  // An authenticated user should give consent when it necessary.
  $id = array_search('without consent', $permissions['authenticated']);
  unset($permissions['authenticated'][$id]);
  if (isset($permissions[$role])) {
    return $permissions[$role];
  }
  return [];
}