You are here

public function ViewUI::isLocked in Zircon Profile 8.0

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

Returns whether the current view is locked.

Return value

bool TRUE if the view is locked, FALSE otherwise.

1 call to ViewUI::isLocked()
ViewUI::cacheSet in core/modules/views_ui/src/ViewUI.php
Sets a cached view object in the user tempstore.

File

core/modules/views_ui/src/ViewUI.php, line 925
Contains \Drupal\views_ui\ViewUI.

Class

ViewUI
Stores UI related temporary settings.

Namespace

Drupal\views_ui

Code

public function isLocked() {
  return is_object($this->lock) && $this->lock->owner != \Drupal::currentUser()
    ->id();
}