You are here

public function ViewUI::hasTrustedData in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views_ui/src/ViewUI.php \Drupal\views_ui\ViewUI::hasTrustedData()
  2. 10 core/modules/views_ui/src/ViewUI.php \Drupal\views_ui\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 1319

Class

ViewUI
Stores UI related temporary settings.

Namespace

Drupal\views_ui

Code

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