fixed autocomplete obsolete custom code
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user