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
1 2 3 | public function hasTrustedData() { return $this ->storage->hasTrustedData(); } |
Please login to continue.