public function UnsavedIndexConfiguration::hasTrustedData in Search API 8
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
- src/
UnsavedIndexConfiguration.php, line 739
Class
- UnsavedIndexConfiguration
- Represents a configuration of an index that was not yet permanently saved.
Namespace
Drupal\search_apiCode
public function hasTrustedData() {
return $this->entity
->hasTrustedData();
}