You are here

public function Group::preSave in Group 8

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

Acts on an entity before the presave hook is invoked.

Used before the entity is saved and before invoking the presave 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. This is different from its counterpart in the Field API, FieldItemListInterface::preSave(), which is fired on all field translations automatically. @todo Adjust existing implementations and the documentation according to https://www.drupal.org/node/2577609 to have a consistent API.

Parameters

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

Throws

\Exception When there is a problem that should prevent saving the entity.

Overrides ContentEntityBase::preSave

See also

\Drupal\Core\Field\FieldItemListInterface::preSave()

File

src/Entity/Group.php, line 324

Class

Group
Defines the Group entity.

Namespace

Drupal\group\Entity

Code

public function preSave(EntityStorageInterface $storage) {
  parent::preSave($storage);

  // Core needs to make sure this happens for all entities as this piece of
  // code is currently copy-pasted between Node, Media, Block, etc.
  // @todo Keep an eye on this from time to time and see if we can remove it.
  //   See: https://www.drupal.org/project/drupal/issues/2869056.
  if (!$this
    ->getRevisionUser()) {
    $this
      ->setRevisionUserId($this
      ->getOwnerId());
  }
}