fixed autocomplete obsolete custom code

This commit is contained in:
2022-02-22 15:25:58 +01:00
parent fab870def8
commit 6d46d0d48a
2 changed files with 29 additions and 8 deletions

View File

@@ -30,7 +30,8 @@ function computed_field_field_index_compute($entity_type_manager, $entity, $fiel
if(is_array($nids)){
$nid = array_pop($nids);
if ($nid) {
$last = entity_load($entity->getEntityTypeId(), $nid); // array_pop($nids)
// $last = entity_load($entity->getEntityTypeId(), $nid); // array_pop($nids)
$last = \Drupal::entityTypeManager()->getStorage($entity->getEntityTypeId())->load($nid);
// get identifiants fo these entities
$index = $last->get('field_index')->getValue()[0]['value'] + 1;
}