view core/lib/Drupal/Core/Entity/SynchronizableEntityTrait.php @ 18:af1871eacc83

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:33:08 +0100
parents
children
line wrap: on
line source
<?php

namespace Drupal\Core\Entity;

/**
 * Provides a trait for accessing synchronization information.
 *
 * @ingroup entity_api
 */
trait SynchronizableEntityTrait {

  /**
   * Whether this entity is being created, updated or deleted through a
   * synchronization process.
   *
   * @var bool
   */
  protected $isSyncing = FALSE;

  /**
   * {@inheritdoc}
   */
  public function setSyncing($syncing) {
    $this->isSyncing = $syncing;

    return $this;
  }

  /**
   * {@inheritdoc}
   */
  public function isSyncing() {
    return $this->isSyncing;
  }

}