You are here

public function ViewUI::getTypedData in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views_ui/src/ViewUI.php \Drupal\views_ui\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 1232

Class

ViewUI
Stores UI related temporary settings.

Namespace

Drupal\views_ui

Code

public function getTypedData() {
  $this->storage
    ->getTypedData();
}