public function ViewUI::setSyncing in Drupal 10
Same name and namespace in other branches
- 8 core/modules/views_ui/src/ViewUI.php \Drupal\views_ui\ViewUI::setSyncing()
- 9 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_uiCode
public function setSyncing($syncing) {
$this->isSyncing = $syncing;
}