
| Current Path : /var/www/html/store1/web/core/lib/Drupal/Core/Plugin/Definition/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/store1/web/core/lib/Drupal/Core/Plugin/Definition/DependentPluginDefinitionTrait.php |
<?php
namespace Drupal\Core\Plugin\Definition;
/**
* Provides a trait for a plugin definition that has dependencies.
*/
trait DependentPluginDefinitionTrait {
/**
* The dependencies of this plugin definition.
*
* @var array
*
* @see \Drupal\Core\Config\Entity\ConfigDependencyManager
*/
protected $config_dependencies = [];
/**
* {@inheritdoc}
*/
public function getConfigDependencies() {
return $this->config_dependencies;
}
/**
* {@inheritdoc}
*/
public function setConfigDependencies(array $config_dependencies) {
$this->config_dependencies = $config_dependencies;
return $this;
}
}