public function UnsavedIndexConfiguration::getConfigDependencyName in Search API 8
Gets the configuration dependency name.
Configuration entities can depend on content and configuration entities. They store an array of content and config dependency names in their "dependencies" key.
Return value
string The configuration dependency name.
Overrides EntityInterface::getConfigDependencyName
See also
\Drupal\Core\Config\Entity\ConfigDependencyManager
File
- src/
UnsavedIndexConfiguration.php, line 1008
Class
- UnsavedIndexConfiguration
- Represents a configuration of an index that was not yet permanently saved.
Namespace
Drupal\search_apiCode
public function getConfigDependencyName() {
return $this->entity
->getConfigDependencyName();
}