Weight.php in GraphQL 8.4
File
src/Plugin/GraphQL/DataProducer/EntityDefinition/Fields/Weight.phpView source
<?php
namespace Drupal\graphql\Plugin\GraphQL\DataProducer\EntityDefinition\Fields;
use Drupal\Core\Entity\Entity\EntityFormDisplay;
use Drupal\Core\Field\FieldDefinitionInterface;
use Drupal\graphql\Plugin\GraphQL\DataProducer\DataProducerPluginBase;
/**
* Retrieves the weight value of a field.
*
* @DataProducer(
* id = "entity_definition_field_weight",
* name = @Translation("Entity definition field weight"),
* description = @Translation("Return entity definition field weight."),
* consumes = {
* "entity_definition_field" = @ContextDefinition("any",
* label = @Translation("Entity definition field")
* ),
* "entity_form_display_context" = @ContextDefinition("any",
* label = @Translation("Entity form display context"),
* required = FALSE,
* )
* },
* produces = @ContextDefinition("string",
* label = @Translation("Entity definition field weight")
* )
* )
*/
class Weight extends DataProducerPluginBase {
/**
* Resolves the "weight" property.
*
* @param \Drupal\Core\Field\FieldDefinitionInterface $entity_definition_field
* The entity field definition.
* @param \Drupal\Core\Entity\Entity\EntityFormDisplay|null $entity_form_display_context
* Entity form display context.
*
* @return int
* The field weight.
*/
public function resolve(FieldDefinitionInterface $entity_definition_field, ?EntityFormDisplay $entity_form_display_context) : int {
if ($entity_form_display_context) {
$content = $entity_form_display_context
->get('content');
$field_id = $entity_definition_field
->getName();
if (isset($content[$field_id])) {
return $content[$field_id]['weight'];
}
else {
return 0;
}
}
else {
return 0;
}
}
}