You are here

public function ViewUI::getConfigDependencyName in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views_ui/src/ViewUI.php \Drupal\views_ui\ViewUI::getConfigDependencyName()

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

core/modules/views_ui/src/ViewUI.php, line 1183

Class

ViewUI
Stores UI related temporary settings.

Namespace

Drupal\views_ui

Code

public function getConfigDependencyName() {
  return $this->storage
    ->getConfigDependencyName();
}