Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. EntityBase.php

function EntityBase::preSave

Overrides EntityInterface::preSave

4 calls to EntityBase::preSave()
ConfigEntityBase::preSave in core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php
Acts on an entity before the presave hook is invoked.
ConfigEntityBase::preSave in core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php
Acts on an entity before the presave hook is invoked.
ContentEntityBase::preSave in core/lib/Drupal/Core/Entity/ContentEntityBase.php
Acts on an entity before the presave hook is invoked.
ContentEntityBase::preSave in core/lib/Drupal/Core/Entity/ContentEntityBase.php
Acts on an entity before the presave hook is invoked.
2 methods override EntityBase::preSave()
ConfigEntityBase::preSave in core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php
Acts on an entity before the presave hook is invoked.
ContentEntityBase::preSave in core/lib/Drupal/Core/Entity/ContentEntityBase.php
Acts on an entity before the presave hook is invoked.

File

core/lib/Drupal/Core/Entity/EntityBase.php, line 393

Class

EntityBase
Defines a base entity class.

Namespace

Drupal\Core\Entity

Code

public function preSave(EntityStorageInterface $storage) {
    // Check if this is an entity bundle.
    if ($this->getEntityType()
        ->getBundleOf()) {
        // Throw an exception if the bundle ID is longer than 32 characters.
        if (mb_strlen($this->id()) > EntityTypeInterface::BUNDLE_MAX_LENGTH) {
            throw new ConfigEntityIdLengthException("Attempt to create a bundle with an ID longer than " . EntityTypeInterface::BUNDLE_MAX_LENGTH . " characters: {$this->id}().");
        }
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal