You are here

public function ViewUI::setSyncing in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views_ui/src/ViewUI.php \Drupal\views_ui\ViewUI::setSyncing()

Sets the status of the synchronization flag.

Parameters

bool $status: The status of the synchronization flag.

Return value

$this

Overrides SynchronizableInterface::setSyncing

File

core/modules/views_ui/src/ViewUI.php, line 182

Class

ViewUI
Stores UI related temporary settings.

Namespace

Drupal\views_ui

Code

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