You are here

public function SynchronizableEntityTrait::isSyncing in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/SynchronizableEntityTrait.php \Drupal\Core\Entity\SynchronizableEntityTrait::isSyncing()
7 calls to SynchronizableEntityTrait::isSyncing()
ConfigEntityBase::preSave in core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php
Acts on an entity before the presave hook is invoked.
ConfigurableLanguage::postSave in core/modules/language/src/Entity/ConfigurableLanguage.php
Acts on a saved entity before the insert or update hook is invoked.
FilterFormat::postSave in core/modules/filter/src/Entity/FilterFormat.php
Acts on a saved entity before the insert or update hook is invoked.
ImageStyle::postSave in core/modules/image/src/Entity/ImageStyle.php
Acts on a saved entity before the insert or update hook is invoked.
Role::preSave in core/modules/user/src/Entity/Role.php
Acts on an entity before the presave hook is invoked.

... See full list

File

core/lib/Drupal/Core/Entity/SynchronizableEntityTrait.php, line 32

Class

SynchronizableEntityTrait
Provides a trait for accessing synchronization information.

Namespace

Drupal\Core\Entity

Code

public function isSyncing() {
  return $this->isSyncing;
}