You are here

public function Profile::preSave in Profile 8

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/Profile.php, line 254

Class

Profile
Defines the profile entity class.

Namespace

Drupal\profile\Entity

Code

public function preSave(EntityStorageInterface $storage) {

  /** @var \Drupal\profile\ProfileStorage $storage */
  parent::preSave($storage);

  // Only published profiles can be default.
  if (!$this
    ->isPublished()) {
    $this
      ->setDefault(FALSE);
  }

  // Mark the profile as default if there's no other default.
  if ($this
    ->getOwnerId() && $this
    ->isPublished() && !$this
    ->isDefault()) {
    $profile = $storage
      ->loadByUser($this
      ->getOwner(), $this
      ->bundle());
    if (!$profile || !$profile
      ->isDefault()) {
      $this
        ->setDefault(TRUE);
    }
  }

  // If no revision author has been set explicitly, make the profile owner
  // the revision author.
  if (!$this
    ->getRevisionUser()) {
    $this
      ->setRevisionUserId($this
      ->getOwnerId());
  }
}