class EntityFieldBase in GraphQL 8.3
Base class for entity field plugins.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\graphql\Plugin\GraphQL\Fields\FieldPluginBase implements FieldPluginInterface uses ArgumentAwarePluginTrait, CacheablePluginTrait, DeprecatablePluginTrait, DescribablePluginTrait, TypedPluginTrait
- class \Drupal\graphql_core\Plugin\GraphQL\Fields\EntityFieldBase
- class \Drupal\graphql\Plugin\GraphQL\Fields\FieldPluginBase implements FieldPluginInterface uses ArgumentAwarePluginTrait, CacheablePluginTrait, DeprecatablePluginTrait, DescribablePluginTrait, TypedPluginTrait
Expanded class hierarchy of EntityFieldBase
2 files declare their use of EntityFieldBase
- EntityField.php in modules/
graphql_core/ src/ Plugin/ GraphQL/ Fields/ Entity/ EntityField.php - EntityFieldItem.php in modules/
graphql_core/ src/ Plugin/ GraphQL/ Fields/ Entity/ EntityFieldItem.php
File
- modules/
graphql_core/ src/ Plugin/ GraphQL/ Fields/ EntityFieldBase.php, line 19
Namespace
Drupal\graphql_core\Plugin\GraphQL\FieldsView source
class EntityFieldBase extends FieldPluginBase {
/**
* {@inheritdoc}
*/
protected function resolveItem($item, array $args, ResolveContext $context, ResolveInfo $info) {
if ($item instanceof FieldItemInterface) {
$definition = $this
->getPluginDefinition();
$property = $definition['property'];
$result = $item
->get($property)
->getValue();
$result = $result instanceof MarkupInterface ? $result
->__toString() : $result;
$type = $info->returnType;
$type = $type instanceof WrappingType ? $type
->getWrappedType(TRUE) : $type;
if ($type instanceof ScalarType) {
$result = is_null($result) ? NULL : $type
->serialize($result);
}
if ($result instanceof ContentEntityInterface && $result
->isTranslatable() && ($language = $context
->getContext('language', $info))) {
if ($result
->hasTranslation($language)) {
$result = $result
->getTranslation($language);
}
}
return $result;
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ArgumentAwarePluginTrait:: |
protected | function | Builds an argument's default value. | |
ArgumentAwarePluginTrait:: |
protected | function | Builds an argument's description. | |
ArgumentAwarePluginTrait:: |
protected | function | Builds the list of arguments. | |
ArgumentAwarePluginTrait:: |
protected | function | Builds an argument's type. | |
CacheablePluginTrait:: |
protected | function | ||
DeprecatablePluginTrait:: |
protected | function | ||
DescribablePluginTrait:: |
protected | function | ||
EntityFieldBase:: |
protected | function | ||
FieldPluginBase:: |
protected | property | Static cache for `isLanguageAwareField()` | |
FieldPluginBase:: |
protected | property | The language context service. | |
FieldPluginBase:: |
protected | property | The renderer service. | 1 |
FieldPluginBase:: |
public static | function |
Overrides FieldPluginInterface:: |
|
FieldPluginBase:: |
protected | function | Retrieve the list of cache dependencies for a given value and arguments. | 1 |
FieldPluginBase:: |
public | function |
Returns the plugin's type or field definition for the schema. Overrides FieldPluginInterface:: |
|
FieldPluginBase:: |
protected | function | Get the language context instance. | |
FieldPluginBase:: |
protected | function | Get the renderer service. | |
FieldPluginBase:: |
protected | function | Indicator if the field is language aware. | 1 |
FieldPluginBase:: |
public | function | 1 | |
FieldPluginBase:: |
protected | function | ||
FieldPluginBase:: |
protected | function | Retrieve the list of field values. | 91 |
FieldPluginBase:: |
protected | function | Unwrap the resolved values. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 92 |
TypedPluginTrait:: |
protected | function |