InvalidArgumentException: The entity object refers to a removed translation (pt-br) and cannot be manipulated. in Drupal\Core\Entity\ContentEntityBase->getTranslatedField() (line 576 of core/lib/Drupal/Core/Entity/ContentEntityBase.php).

Created on 9 October 2023, over 1 year ago

Problem/Motivation

Steps to reproduce

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

🐛 Bug report
Status

Active

Version

10.1

Component
Menu module 

Last updated 18 days ago

Created by

🇨🇳China eason xu

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @eason xu
  • 🇨🇳China eason xu

    Create an ES menu: test-ES
    Translate this menu into PT language: test-PT
    Enter the /admin/structure/menu/manage/main page
    Delete menu: test-PT
    Report an error: InvalidArgumentException: The entity object refers to a removed translation (pt-br) and cannot be manipulated. in Drupal\Core\Entity\ContentEntityBase->getTranslatedField() (line 576 of core/lib/Drupal/Core/Entity/ContentEntityBase.php).

  • Status changed to Needs review over 1 year ago
  • last update over 1 year ago
    29,653 pass
  • Status changed to Needs work over 1 year ago
  • 🇺🇸United States smustgrave

    Will need a test showing the issue.

    But typically we need to backtrace more. Just putting an isset or empty check could be masking a larger issue.

  • Status changed to Closed: works as designed over 1 year ago
  • @eason su ty. patch 3 🐛 InvalidArgumentException: The entity object refers to a removed translation (pt-br) and cannot be manipulated. in Drupal\Core\Entity\ContentEntityBase->getTranslatedField() (line 576 of core/lib/Drupal/Core/Entity/ContentEntityBase.php). Closed: works as designed resolve my issue

    My backtrace:

    InvalidArgumentException: The entity object refers to a removed translation (it) and cannot be manipulated. in Drupal\Core\Entity\ContentEntityBase->getTranslatedField() (line 609 of core/lib/Drupal/Core/Entity/ContentEntityBase.php).
    Drupal\Core\Entity\ContentEntityBase->get('machine_name') (Line: 1344)
    Drupal\Core\Entity\ContentEntityBase->getEntityKey('label') (Line: 1295)
    Drupal\Core\Entity\ContentEntityBase->label() (Line: 116)
    Drupal\Core\Entity\ContentEntityDeleteForm->logDeletionMessage() (Line: 76)
    Drupal\Core\Entity\ContentEntityDeleteForm->submitForm(Array, Object)
    call_user_func_array(Array, Array) (Line: 129)
    Drupal\Core\Form\FormSubmitter->executeSubmitHandlers(Array, Object) (Line: 67)
    Drupal\Core\Form\FormSubmitter->doSubmitForm(Array, Object) (Line: 597)
    Drupal\Core\Form\FormBuilder->processForm('client_translation_singular_delete_form', Array, Object) (Line: 325)
    Drupal\Core\Form\FormBuilder->buildForm(Object, Object) (Line: 73)
    Drupal\Core\Controller\FormController->getContentResult(Object, Object) (Line: 39)
    Drupal\layout_builder\Controller\LayoutBuilderHtmlEntityFormController->getContentResult(Object, Object)
    call_user_func_array(Array, Array) (Line: 123)
    Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 627)
    Drupal\Core\Render\Renderer->executeInRenderContext(Object, Object) (Line: 121)
    Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->wrapControllerExecutionInRenderContext(Array, Array) (Line: 97)
    Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 181)
    Symfony\Component\HttpKernel\HttpKernel->handleRaw(Object, 1) (Line: 76)
    Symfony\Component\HttpKernel\HttpKernel->handle(Object, 1, 1) (Line: 58)
    Drupal\Core\StackMiddleware\Session->handle(Object, 1, 1) (Line: 33)
    Drupal\experiment\ExperimentMiddleware->handle(Object, 1, 1) (Line: 48)
    Drupal\Core\StackMiddleware\KernelPreHandle->handle(Object, 1, 1) (Line: 28)
    Drupal\Core\StackMiddleware\ContentLength->handle(Object, 1, 1) (Line: 106)
    Drupal\page_cache\StackMiddleware\PageCache->pass(Object, 1, 1) (Line: 29)
    Drupal\train_booking\StackMiddleware\CookiesPageCache->handle(Object, 1, 1) (Line: 53)
    Asm89\Stack\Cors->handle(Object, 1, 1) (Line: 48)
    Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle(Object, 1, 1) (Line: 51)
    Drupal\Core\StackMiddleware\NegotiationMiddleware->handle(Object, 1, 1) (Line: 36)
    Drupal\Core\StackMiddleware\AjaxPageState->handle(Object, 1, 1) (Line: 91)
    Drupal\rn_user\StackMiddleware\TrackingCookies->handle(Object, 1, 1) (Line: 51)
    Drupal\Core\StackMiddleware\StackedHttpKernel->handle(Object, 1, 1) (Line: 704)
    Drupal\Core\DrupalKernel->handle(Object) (Line: 19)
    

    More Explanation

    Looking deeper into the problem we come to the fact that in the method \Drupal\Core\Entity\ContentEntityBase::getTranslatedField
    for $this->translations[$this->activeLangcode] we get null, because $this->activeLangcode is the value of the already deleted translation and it is no longer in the array $this->translations.

    And because of non-strict comparison null = 0

    We come to this because of $entity->label() call in \Drupal\Core\Entity\ContentEntityDeleteForm::logDeletionMessage

    Relate with

Production build 0.71.5 2024