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

Breadcrumb

  1. Drupal Core 11.1.x

SynchronizableEntityTrait.php

Namespace

Drupal\Core\Entity

File

core/lib/Drupal/Core/Entity/SynchronizableEntityTrait.php

View source
<?php

namespace Drupal\Core\Entity;


/**
 * Provides a trait for accessing synchronization information.
 *
 * @ingroup entity_api
 */
trait SynchronizableEntityTrait {
    
    /**
     * Is entity being created updated or deleted through synchronization process.
     *
     * @var bool
     */
    protected $isSyncing = FALSE;
    
    /**
     * {@inheritdoc}
     */
    public function setSyncing($syncing) {
        $this->isSyncing = $syncing;
        return $this;
    }
    
    /**
     * {@inheritdoc}
     */
    public function isSyncing() {
        return $this->isSyncing;
    }

}

Traits

Title Deprecated Summary
SynchronizableEntityTrait Provides a trait for accessing synchronization information.
RSS feed
Powered by Drupal