function PathHooks::entityTranslationCreate

Implements hook_entity_translation_create().

Attributes

#[Hook('entity_translation_create')]

File

core/modules/path/src/Hook/PathHooks.php, line 118

Class

PathHooks
Hook implementations for path.

Namespace

Drupal\path\Hook

Code

public function entityTranslationCreate(ContentEntityInterface $translation) : void {
  foreach ($translation->getFieldDefinitions() as $field_name => $field_definition) {
    if ($field_definition->getType() === 'path' && $translation->get($field_name)->pid) {
      // If there are values and a path ID, update the langcode and unset the
      // path ID to save this as a new alias.
      $translation->get($field_name)->langcode = $translation->language()
        ->getId();
      $translation->get($field_name)->pid = NULL;
    }
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.