ViewUI::getEntityType

public ViewUI::getEntityType() Gets the entity type definition. Return value \Drupal\Core\Entity\EntityTypeInterface The entity type definition. Overrides EntityInterface::getEntityType File core/modules/views_ui/src/ViewUI.php, line 943 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function getEntityType() { return $this->storage->getEntityType(); }

ViewUI::getDisplay

public &ViewUI::getDisplay($display_id) Retrieves a specific display's configuration by reference. Parameters string $display_id: The display ID to retrieve, e.g., 'default', 'page_1', 'block_2'. Return value array A reference to the specified display configuration. Overrides ViewEntityInterface::getDisplay File core/modules/views_ui/src/ViewUI.php, line 901 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function &getDisplay($display_

ViewUI::getDependencies

public ViewUI::getDependencies() Gets the configuration dependencies. Return value array An array of dependencies, keyed by $type. Overrides ConfigEntityInterface::getDependencies See also \Drupal\Core\Config\Entity\ConfigDependencyManager File core/modules/views_ui/src/ViewUI.php, line 1220 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function getDependencies() { return $this->storage->getDependencies(); }

ViewUI::getConfigTarget

public ViewUI::getConfigTarget() Gets the configuration target identifier for the entity. Used to supply the correct format for storing a reference targeting this entity in configuration. Return value string The configuration target identifier. Overrides EntityInterface::getConfigTarget File core/modules/views_ui/src/ViewUI.php, line 1206 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function getConfigTarget() { return $this->storage->

ViewUI::getConfigDependencyName

public ViewUI::getConfigDependencyName() Gets the configuration dependency name. Configuration entities can depend on content and configuration entities. They store an array of content and config dependency names in their "dependencies" key. Return value string The configuration dependency name. Overrides EntityInterface::getConfigDependencyName See also \Drupal\Core\Config\Entity\ConfigDependencyManager File core/modules/views_ui/src/ViewUI.php, line 1199 Class ViewUI Stores UI related

ViewUI::getConfigDependencyKey

public ViewUI::getConfigDependencyKey() Gets the key that is used to store configuration dependencies. Return value string The key to be used in configuration dependencies when storing dependencies on entities of this type. Overrides EntityInterface::getConfigDependencyKey See also \Drupal\Core\Entity\EntityTypeInterface::getConfigDependencyKey() File core/modules/views_ui/src/ViewUI.php, line 1192 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code publ

ViewUI::getCacheTagsToInvalidate

public ViewUI::getCacheTagsToInvalidate() Returns the cache tags that should be used to invalidate caches. This will not return additional cache tags added through addCacheTags(). Return value string[] Set of cache tags. Overrides EntityInterface::getCacheTagsToInvalidate See also \Drupal\Core\Cache\RefinableCacheableDependencyInterface::addCacheTags() \Drupal\Core\Cache\CacheableDependencyInterface::getCacheTags() File core/modules/views_ui/src/ViewUI.php, line 1340 Class ViewUI Stores

ViewUI::getCacheTags

public ViewUI::getCacheTags() The cache tags associated with this object. When this object is modified, these cache tags will be invalidated. Return value string[] A set of cache tags. Overrides CacheableDependencyInterface::getCacheTags File core/modules/views_ui/src/ViewUI.php, line 1234 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function getCacheTags() { return $this->storage->getCacheTags(); }

ViewUI::getCacheMaxAge

public ViewUI::getCacheMaxAge() The maximum age for which this object may be cached. Return value int The maximum time in seconds that this object may be cached. Overrides CacheableDependencyInterface::getCacheMaxAge File core/modules/views_ui/src/ViewUI.php, line 1241 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function getCacheMaxAge() { return $this->storage->getCacheMaxAge(); }

ViewUI::getCacheContexts

public ViewUI::getCacheContexts() The cache contexts associated with this object. These identify a specific variation/representation of the object. Cache contexts are tokens: placeholders that are converted to cache keys by the @cache_contexts_manager service. The replacement value depends on the request context (the current URL, language, and so on). They're converted before storing an object in cache. Return value string[] An array of cache context tokens, used to generate a cache ID. Overri