TestItemWithDependencies.php
Same filename in other branches
- 9 core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldType/TestItemWithDependencies.php
- 8.9.x core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldType/TestItemWithDependencies.php
- 11.x core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldType/TestItemWithDependencies.php
Namespace
Drupal\field_test\Plugin\Field\FieldTypeFile
-
core/
modules/ field/ tests/ modules/ field_test/ src/ Plugin/ Field/ FieldType/ TestItemWithDependencies.php
View source
<?php
namespace Drupal\field_test\Plugin\Field\FieldType;
use Drupal\Core\Field\Attribute\FieldType;
use Drupal\Core\Field\FieldDefinitionInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
/**
* Defines the 'test_field_with_dependencies' entity field item.
*/
class TestItemWithDependencies extends TestItem {
/**
* {@inheritdoc}
*/
public static function calculateDependencies(FieldDefinitionInterface $field_definition) {
return [
'content' => [
'node:article:uuid',
],
];
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
TestItemWithDependencies | Defines the 'test_field_with_dependencies' entity field item. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.