You are here

public function AddMembersToGroup::access in Open Social 8.9

Same name and namespace in other branches
  1. 8.5 modules/social_features/social_group/src/Plugin/Action/AddMembersToGroup.php \Drupal\social_group\Plugin\Action\AddMembersToGroup::access()
  2. 8.6 modules/social_features/social_group/src/Plugin/Action/AddMembersToGroup.php \Drupal\social_group\Plugin\Action\AddMembersToGroup::access()
  3. 8.7 modules/social_features/social_group/src/Plugin/Action/AddMembersToGroup.php \Drupal\social_group\Plugin\Action\AddMembersToGroup::access()
  4. 8.8 modules/social_features/social_group/src/Plugin/Action/AddMembersToGroup.php \Drupal\social_group\Plugin\Action\AddMembersToGroup::access()
  5. 10.3.x modules/social_features/social_group/src/Plugin/Action/AddMembersToGroup.php \Drupal\social_group\Plugin\Action\AddMembersToGroup::access()
  6. 10.0.x modules/social_features/social_group/src/Plugin/Action/AddMembersToGroup.php \Drupal\social_group\Plugin\Action\AddMembersToGroup::access()
  7. 10.1.x modules/social_features/social_group/src/Plugin/Action/AddMembersToGroup.php \Drupal\social_group\Plugin\Action\AddMembersToGroup::access()
  8. 10.2.x modules/social_features/social_group/src/Plugin/Action/AddMembersToGroup.php \Drupal\social_group\Plugin\Action\AddMembersToGroup::access()

File

modules/social_features/social_group/src/Plugin/Action/AddMembersToGroup.php, line 99

Class

AddMembersToGroup
Change group membership role.

Namespace

Drupal\social_group\Plugin\Action

Code

public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {

  // There is no permission to check if a user is able to be "added" to a
  // group. Joining doesn't cover it since we also want people to be able
  // to be added to a Secret/Closed group.
  // @Todo when Invite people to a group or Add members to a group permission
  // lands add it.
  if ($object instanceof User) {
    $access = AccessResult::allowed();
  }
  else {
    $access = AccessResult::forbidden();
  }
  return $return_as_object ? $access : $access
    ->isAllowed();
}