abstract class DeleteEntityBase in GraphQL 8.3
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\graphql\Plugin\GraphQL\Mutations\MutationPluginBase implements MutationPluginInterface uses ArgumentAwarePluginTrait, DeprecatablePluginTrait, DescribablePluginTrait, TypedPluginTrait
- class \Drupal\graphql_core\Plugin\GraphQL\Mutations\Entity\DeleteEntityBase implements ContainerFactoryPluginInterface uses DependencySerializationTrait, StringTranslationTrait
- class \Drupal\graphql\Plugin\GraphQL\Mutations\MutationPluginBase implements MutationPluginInterface uses ArgumentAwarePluginTrait, DeprecatablePluginTrait, DescribablePluginTrait, TypedPluginTrait
Expanded class hierarchy of DeleteEntityBase
1 file declares its use of DeleteEntityBase
- EntityMutationTest.php in modules/
graphql_core/ tests/ src/ Kernel/ EntityMutation/ EntityMutationTest.php
File
- modules/
graphql_core/ src/ Plugin/ GraphQL/ Mutations/ Entity/ DeleteEntityBase.php, line 18
Namespace
Drupal\graphql_core\Plugin\GraphQL\Mutations\EntityView source
abstract class DeleteEntityBase extends MutationPluginBase implements ContainerFactoryPluginInterface {
use DependencySerializationTrait;
use StringTranslationTrait;
/**
* The entity type manager.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* The renderer service.
*
* @var \Drupal\Core\Render\RendererInterface
*/
protected $renderer;
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $pluginId, $pluginDefinition) {
return new static($configuration, $pluginId, $pluginDefinition, $container
->get('entity_type.manager'), $container
->get('renderer'));
}
/**
* DeleteEntityBase constructor.
*
* @param array $configuration
* The plugin configuration array.
* @param string $pluginId
* The plugin id.
* @param mixed $pluginDefinition
* The plugin definition array.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
* The entity type manager service.
* @param \Drupal\Core\Render\RendererInterface $renderer
* The renderer service.
*/
public function __construct(array $configuration, $pluginId, $pluginDefinition, EntityTypeManagerInterface $entityTypeManager, RendererInterface $renderer) {
parent::__construct($configuration, $pluginId, $pluginDefinition);
$this->entityTypeManager = $entityTypeManager;
$this->renderer = $renderer;
}
/**
* {@inheritdoc}
*/
public function resolve($value, array $args, ResolveContext $context, ResolveInfo $info) {
// There are cases where the Drupal entity API calls emit the cache metadata
// in the current render context. In such cases
// EarlyRenderingControllerWrapperSubscriber throws the leaked cache
// metadata exception. To avoid this, wrap the execution in its own render
// context.
return $this->renderer
->executeInRenderContext(new RenderContext(), function () use ($value, $args, $context, $info) {
$entityTypeId = $this->pluginDefinition['entity_type'];
$storage = $this->entityTypeManager
->getStorage($entityTypeId);
/** @var \Drupal\Core\Entity\ContentEntityInterface $entity */
if (!($entity = $storage
->load($args['id']))) {
return new EntityCrudOutputWrapper(NULL, NULL, [
$this
->t('The requested entity could not be loaded.'),
]);
}
if (!$entity
->access('delete')) {
return new EntityCrudOutputWrapper(NULL, NULL, [
$this
->t('You do not have the necessary permissions to delete this entity.'),
]);
}
try {
$entity
->delete();
} catch (EntityStorageException $exception) {
return new EntityCrudOutputWrapper(NULL, NULL, [
$this
->t('Entity deletion failed with exception: @exception.', [
'@exception' => $exception
->getMessage(),
]),
]);
}
return new EntityCrudOutputWrapper($entity);
});
}
}
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. | |
DeleteEntityBase:: |
protected | property | The entity type manager. | |
DeleteEntityBase:: |
protected | property | The renderer service. | |
DeleteEntityBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
DeleteEntityBase:: |
public | function | ||
DeleteEntityBase:: |
public | function |
DeleteEntityBase constructor. Overrides PluginBase:: |
|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
DeprecatablePluginTrait:: |
protected | function | ||
DescribablePluginTrait:: |
protected | function | ||
MutationPluginBase:: |
public static | function |
Overrides MutationPluginInterface:: |
|
MutationPluginBase:: |
public | function |
Returns the plugin's type or field definition for the schema. Overrides MutationPluginInterface:: |
|
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. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
TypedPluginTrait:: |
protected | function |