public function ViewUI::setSyncing in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views_ui/src/ViewUI.php \Drupal\views_ui\ViewUI::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/
modules/ views_ui/ src/ ViewUI.php, line 202 - Contains \Drupal\views_ui\ViewUI.
Class
- ViewUI
- Stores UI related temporary settings.
Namespace
Drupal\views_uiCode
public function setSyncing($syncing) {
$this->isSyncing = $syncing;
}