public static FieldItemBase::calculateDependencies(FieldDefinitionInterface $field_definition)
Calculates dependencies for field items.
Dependencies are saved in the field configuration entity and are used to determine configuration synchronization order. For example, if the field type's default value is a content entity, this method should return an array of dependencies listing the content entities.
\Drupal\Core\Field\FieldDefinitionInterface $field_definition: The field definition.
array An array of dependencies grouped by type (config, content, module, theme). For example:
array( 'config' => array('user.role.anonymous', 'user.role.authenticated'), 'content' => array('node:article:f0a189e6-55fb-47fb-8005-5bef81c44d6d'), 'module' => array('node', 'user'), 'theme' => array('seven'), );
Overrides FieldItemInterface::calculateDependencies
\Drupal\Core\Config\Entity\ConfigDependencyManager
\Drupal\Core\Config\Entity\ConfigEntityInterface::getConfigDependencyName()
public static function calculateDependencies(FieldDefinitionInterface $field_definition) { return array(); }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Field!FieldItemBase.php/function/FieldItemBase::calculateDependencies/8.1.x