ViewUI::language

public ViewUI::language() Gets the language of the entity. Return value \Drupal\Core\Language\LanguageInterface The language object. Overrides EntityInterface::language File core/modules/views_ui/src/ViewUI.php, line 1041 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function language() { return $this->storage->language(); }

ViewUI::label

public ViewUI::label() Gets the label of the entity. Return value string|null The label of the entity, or NULL if there is no label defined. Overrides EntityInterface::label File core/modules/views_ui/src/ViewUI.php, line 1020 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function label() { return $this->storage->label(); }

ViewUI::isUninstalling

public ViewUI::isUninstalling() Returns whether this entity is being changed during the uninstall process. If you are writing code that responds to a change in this entity (insert, update, delete, presave, etc.), and your code would result in a configuration change (whether related to this configuration entity, another configuration entity, or non-entity configuration) or your code would result in a change to this entity itself, you need to check and see if this entity change is part of an unin

ViewUI::isSyncing

public ViewUI::isSyncing() Returns whether this entity is being changed as part of an import process. If you are writing code that responds to a change in this entity (insert, update, delete, presave, etc.), and your code would result in a configuration change (whether related to this configuration entity, another configuration entity, or non-entity configuration) or your code would result in a change to this entity itself, you need to check and see if this entity change is part of an import pr

ViewUI::isNew

public ViewUI::isNew() Determines whether the entity is new. Usually an entity is new if no ID exists for it yet. However, entities may be enforced to be new with existing IDs too. Return value bool TRUE if the entity is new, or FALSE if the entity has already been saved. Overrides EntityInterface::isNew See also \Drupal\Core\Entity\EntityInterface::enforceIsNew() File core/modules/views_ui/src/ViewUI.php, line 922 Class ViewUI Stores UI related temporary settings. Namespace Drupal\vi

ViewUI::isLocked

public ViewUI::isLocked() Returns whether the current view is locked. Return value bool TRUE if the view is locked, FALSE otherwise. File core/modules/views_ui/src/ViewUI.php, line 887 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()); }

ViewUI::isInstallable

public ViewUI::isInstallable() Checks whether this entity is installable. For example, a default view might not be installable if the base table doesn't exist. @retun bool TRUE if the entity is installable, FALSE otherwise. Overrides ConfigEntityInterface::isInstallable File core/modules/views_ui/src/ViewUI.php, line 1262 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function isInstallable() { return $this->storage->isInstallable(); }

ViewUI::id

public ViewUI::id() Gets the identifier. Return value string|int|null The entity identifier, or NULL if the object does not yet have an identifier. Overrides EntityInterface::id File core/modules/views_ui/src/ViewUI.php, line 908 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function id() { return $this->storage->id(); }

ViewUI::hasTrustedData

public ViewUI::hasTrustedData() Gets whether on not the data is trusted. Return value bool TRUE if the configuration data is trusted, FALSE if not. Overrides ConfigEntityInterface::hasTrustedData File core/modules/views_ui/src/ViewUI.php, line 1311 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function hasTrustedData() { return $this->storage->hasTrustedData(); }

ViewUI::hasLinkTemplate

public ViewUI::hasLinkTemplate($key) Indicates if a link template exists for a given key. Parameters string $key: The link type. Return value bool TRUE if the link template exists, FALSE otherwise. Overrides EntityInterface::hasLinkTemplate File core/modules/views_ui/src/ViewUI.php, line 1177 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function hasLinkTemplate($key) { return $this->storage->hasLinkTemplate($key); }