You are here

public function Group::postSave in Group 8

Same name and namespace in other branches
  1. 2.0.x src/Entity/Group.php \Drupal\group\Entity\Group::postSave()

Acts on a saved entity before the insert or update hook is invoked.

Used after the entity is saved, but before invoking the insert or update hook. Note that in case of translatable content entities this callback is only fired on their current translation. It is up to the developer to iterate over all translations if needed.

Parameters

\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage object.

bool $update: TRUE if the entity has been updated, or FALSE if it has been inserted.

Overrides ContentEntityBase::postSave

File

src/Entity/Group.php, line 361

Class

Group
Defines the Group entity.

Namespace

Drupal\group\Entity

Code

public function postSave(EntityStorageInterface $storage, $update = TRUE) {
  parent::postSave($storage, $update);

  // If a new group is created and the group type is configured to grant group
  // creators a membership by default, add the creator as a member.
  // @todo Deprecate in 8.x-2.x in favor of a form-only approach. API-created
  //   groups should not get this functionality because it may create
  //   incomplete group memberships.
  $group_type = $this
    ->getGroupType();
  if ($update === FALSE && $group_type
    ->creatorGetsMembership()) {
    $values = [
      'group_roles' => $group_type
        ->getCreatorRoleIds(),
    ];
    $this
      ->addMember($this
      ->getOwner(), $values);
  }
}