public function UnsavedIndexConfiguration::getConfigDependencyKey in Search API 8
Gets the key that is used to store configuration dependencies.
Return value
string The key to be used in configuration dependencies when storing dependencies on entities of this type.
Overrides EntityInterface::getConfigDependencyKey
See also
\Drupal\Core\Entity\EntityTypeInterface::getConfigDependencyKey()
File
- src/
UnsavedIndexConfiguration.php, line 1001
Class
- UnsavedIndexConfiguration
- Represents a configuration of an index that was not yet permanently saved.
Namespace
Drupal\search_apiCode
public function getConfigDependencyKey() {
return $this->entity
->getConfigDependencyKey();
}