You are here

public function ViewUI::toArray in Drupal 9

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

Gets an array of all property values.

Return value

mixed[] An array of property values, keyed by property name.

Overrides EntityInterface::toArray

File

core/modules/views_ui/src/ViewUI.php, line 1025

Class

ViewUI
Stores UI related temporary settings.

Namespace

Drupal\views_ui

Code

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