ViewUI::getThirdPartySetting

public ViewUI::getThirdPartySetting($module, $key, $default = NULL) Gets the value of a third-party setting. Parameters string $module: The module providing the third-party setting. string $key: The setting name. mixed $default: The default value Return value mixed The value. Overrides ThirdPartySettingsInterface::getThirdPartySetting File core/modules/views_ui/src/ViewUI.php, line 1276 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function

ViewUI::getThirdPartySettings

public ViewUI::getThirdPartySettings($module) Gets all third-party settings of a given module. Parameters string $module: The module providing the third-party settings. Return value array An array of key-value pairs. Overrides ThirdPartySettingsInterface::getThirdPartySettings File core/modules/views_ui/src/ViewUI.php, line 1283 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function getThirdPartySettings($module) { return $this->storage

ViewUI::getTypedData

public ViewUI::getTypedData() Gets a typed data object for this entity object. The returned typed data object wraps this entity and allows dealing with entities based on the generic typed data API. Return value \Drupal\Core\TypedData\ComplexDataInterface The typed data object for this entity. Overrides EntityInterface::getTypedData See also \Drupal\Core\TypedData\TypedDataInterface File core/modules/views_ui/src/ViewUI.php, line 1248 Class ViewUI Stores UI related temporary settings. N

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); }

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::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::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::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::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::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