public ConfigEntityDependency::hasDependency($type, $name)
Determines if the entity is dependent on extensions or entities.
Parameters
string $type: The type of dependency being checked. Either 'module', 'theme', 'config' or 'content'.
string $name: The specific name to check. If $type equals 'module' or 'theme' then it should be a module name or theme name. In the case of entity it should be the full configuration object name.
Return value
bool
File
- core/lib/Drupal/Core/Config/Entity/ConfigEntityDependency.php, line 83
Class
- ConfigEntityDependency
- Provides a value object to discover configuration dependencies.
Namespace
Drupal\Core\Config\Entity
Code
public function hasDependency($type, $name) {
// A config entity is always dependent on its provider.
if ($type == 'module' && strpos($this->name, $name . '.') === 0) {
return TRUE;
}
return isset($this->dependencies[$type]) && array_search($name, $this->dependencies[$type]) !== FALSE;
}
Please login to continue.