public function View::calculateDependencies in Zircon Profile 8
Same name in this branch
- 8 core/modules/views/src/Entity/View.php \Drupal\views\Entity\View::calculateDependencies()
- 8 core/modules/views/src/Plugin/views/area/View.php \Drupal\views\Plugin\views\area\View::calculateDependencies()
Same name and namespace in other branches
- 8.0 core/modules/views/src/Entity/View.php \Drupal\views\Entity\View::calculateDependencies()
Calculates dependencies and stores them in the dependency property.
Return value
$this
Overrides ConfigEntityBase::calculateDependencies
See also
\Drupal\Core\Config\Entity\ConfigDependencyManager
File
- core/
modules/ views/ src/ Entity/ View.php, line 274 - Contains \Drupal\views\Entity\View.
Class
- View
- Defines a View configuration entity class.
Namespace
Drupal\views\EntityCode
public function calculateDependencies() {
parent::calculateDependencies();
// Ensure that the view is dependant on the module that implements the view.
$this
->addDependency('module', $this->module);
$executable = $this
->getExecutable();
$executable
->initDisplay();
$executable
->initStyle();
foreach ($executable->displayHandlers as $display) {
// Calculate the dependencies each display has.
$this
->calculatePluginDependencies($display);
}
return $this;
}