You are here

public function ConfigEntityBase::setSyncing in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php \Drupal\Core\Config\Entity\ConfigEntityBase::setSyncing()

Sets the status of the isSyncing flag.

Parameters

bool $status: The status of the sync flag.

Return value

$this

Overrides ConfigEntityInterface::setSyncing

File

core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 214
Contains \Drupal\Core\Config\Entity\ConfigEntityBase.

Class

ConfigEntityBase
Defines a base configuration entity class.

Namespace

Drupal\Core\Config\Entity

Code

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