Mostra gli ID nodo insieme ai titoli nell'elenco Completamento automatico riferimento entità


8

Vorrei aggiungere questa funzionalità al widget di completamento automatico nel campo Entityreference per mostrare l'ID nodo accanto ai titoli nell'elenco a discesa. Il motivo dietro l'idea è di distinguere tra più nodi con lo stesso titolo.

Esempio:

  • Questo è un titolo (3)
  • Questo è un titolo (2)
  • Questo è un titolo (1)

So che l'ID nodo viene mostrato una volta effettuata una selezione, ma mi piace mostrarlo nell'elenco a discesa per selezionare rapidamente il nodo giusto in base all'ID nodo.



@ oksana-c controlla la mia risposta con un altro modo semplice
Adrian Cid Almaguer,

Risposte:


20

Installa i moduli Viste ed Entity Reference , crea una nuova Vista e aggiungi un Entity Reference Display:

inserisci qui la descrizione dell'immagine

Quindi aggiungi nei campi il titolo del contenuto e il nid, fai clic sul nid e seleziona Escludi dalla visualizzazione, Salva e fai clic nel titolo e vai a riscrivere l'output del titolo come [title] - ([nid])

inserisci qui la descrizione dell'immagine inserisci qui la descrizione dell'immagine

Vai a modificare le impostazioni del formato e controlla il titolo, questo ti permetterà di cercare per titolo.

inserisci qui la descrizione dell'immagine

Salva la vista.

Vai a modificare il campo Entity Reference e seleziona nelle modalità Mode: .... (come la seguente immagine) e seleziona la tua vista (in questo caso il nome è: articles_with_id) e salva le impostazioni:

inserisci qui la descrizione dell'immagine

Quindi vai a vedere il risultato:

inserisci qui la descrizione dell'immagine

EDIT: ora funziona in Drupal 8, almeno nella versione 8.3.4.


2
OMG, mi sono sempre chiesto a cosa servisse l'opzione di visualizzazione. Questo è sporco !!!
No Sssweat,

1
@NoSssweat Sto imparando l'inglese adesso, mi puoi fornire un sinonimo di sporco per favore? Non riesco a capire la frase "Questo è sporco"
Adrian Cid Almaguer,

3
No, significa che è una soluzione davvero buona / impressionante. Esempio: obiettivo di tiro
sporco di

1
@AdrianCidAlmaguer Sono d'accordo che questa soluzione è "malata"! (linguaggio)
John R

2
L'unico problema con questa soluzione è che il campo di riferimento dell'entità, una volta selezionato, mostra due volte l'ID nel modulo di modifica dell'entità, perché è incluso per impostazione predefinita una volta selezionato.
Yuri,

5

Crea campo Riferimento entità con la configurazione predefinita

inserisci qui la descrizione dell'immagine

La funzione entityreference_autocomplete_callback_get_matches determina quale dovrebbe essere l'output del completamento automatico.

function entityreference_autocomplete_callback_get_matches($type, $field, $instance, $entity_type, $entity_id = '', $string = '') {
  $matches = array();

  $entity = NULL;
  if ($entity_id !== 'NULL') {
    $entity = entity_load_single($entity_type, $entity_id);
    $has_view_access = (entity_access('view', $entity_type, $entity) !== FALSE);
    $has_update_access = (entity_access('update', $entity_type, $entity) !== FALSE);
    if (!$entity || !($has_view_access || $has_update_access)) {
      return MENU_ACCESS_DENIED;
    }
  }

  $handler = entityreference_get_selection_handler($field, $instance, $entity_type, $entity);

  if ($type == 'tags') {
    // The user enters a comma-separated list of tags. We only autocomplete the last tag.
    $tags_typed = drupal_explode_tags($string);
    $tag_last = drupal_strtolower(array_pop($tags_typed));
    if (!empty($tag_last)) {
      $prefix = count($tags_typed) ? implode(', ', $tags_typed) . ', ' : '';
    }
  }
  else {
    // The user enters a single tag.
    $prefix = '';
    $tag_last = $string;
  }

  if (isset($tag_last)) {
    // Get an array of matching entities.
    $entity_labels = $handler->getReferencableEntities($tag_last, $instance['widget']['settings']['match_operator'], 10);

    // Loop through the products and convert them into autocomplete output.
    foreach ($entity_labels as $values) {
      foreach ($values as $entity_id => $label) {
        $key = "$label ($entity_id)";
        // Strip things like starting/trailing white spaces, line breaks and tags.
        $key = preg_replace('/\s\s+/', ' ', str_replace("\n", '', trim(decode_entities(strip_tags($key)))));
        // Names containing commas or quotes must be wrapped in quotes.
        if (strpos($key, ',') !== FALSE || strpos($key, '"') !== FALSE) {
          $key = '"' . str_replace('"', '""', $key) . '"';
        }
        /* *** */$matches[$prefix . $key] = '<div class="reference-autocomplete">' . $label .' - ('. $entity_id . ')</div>';//****
      }
    }
  }
  drupal_json_output($matches);
}

l'ultima riga $matches[$prefix . $key] = '<div class="reference-autocomplete">'determina l'output ed $entity_idè disponibile quale è l'ID. Puoi fare quello che ho fatto in quella riga (mostrato da **), semplicemente scrivere:

 $matches[$prefix . $key] = '<div class="reference-autocomplete">' . $label .' - ('. $entity_id . ')</div>';

puoi usare $entity_idper recuperare altri campi e tutto quello che vuoi.

Un'altra cosa!

Alcune volte non è una buona idea cambiare la funzione del modulo principale (se non è importante per te la soluzione di cui sopra è sufficiente).

Se è necessario sostituire la funzione principale del entity_referencemodulo, creare un piccolo modulo e denominarloelabel

è elabel.info

;$Id;
name = My Entity Reference Label
description = This module creates special Entity Reference Label
package = My Modules
core = 7.x
php = 5.1
files[] = elabel.module

e questo è elabel.module

<?php function elabel_menu_alter(&$items){
    unset($items['entityreference/autocomplete/single/%/%/%']);
    unset($items['entityreference/autocomplete/tags/%/%/%']);

      $items['entityreference/autocomplete/single/%/%/%'] = array(
    'title' => 'Entity Reference Autocomplete',
    'page callback' => 'elabel_autocomplete_callback',
    'page arguments' => array(2, 3, 4, 5),
    'access callback' => 'entityreference_autocomplete_access_callback',
    'access arguments' => array(2, 3, 4, 5),
    'type' => MENU_CALLBACK,
  );

    $items['entityreference/autocomplete/tags/%/%/%'] = array(
    'title' => 'Entity Reference Autocomplete',
    'page callback' => 'elabel_autocomplete_callback',
    'page arguments' => array(2, 3, 4, 5),
    'access callback' => 'entityreference_autocomplete_access_callback',
    'access arguments' => array(2, 3, 4, 5),
    'type' => MENU_CALLBACK,
  );
  return $items;

}

function elabel_autocomplete_callback($type, $field_name, $entity_type, $bundle_name, $entity_id = '', $string = '') {
  // If the request has a '/' in the search text, then the menu system will have
  // split it into multiple arguments and $string will only be a partial. We want
  //  to make sure we recover the intended $string.
  $args = func_get_args();
  // Shift off the $type, $field_name, $entity_type, $bundle_name, and $entity_id args.
  array_shift($args);
  array_shift($args);
  array_shift($args);
  array_shift($args);
  array_shift($args);
  $string = implode('/', $args);

  $field = field_info_field($field_name);
  $instance = field_info_instance($entity_type, $field_name, $bundle_name);

  return elabel_autocomplete_callback_get_matches($type, $field, $instance, $entity_type, $entity_id, $string);
}

function elabel_autocomplete_callback_get_matches($type, $field, $instance, $entity_type, $entity_id = '', $string = '') {
  $matches = array();

  $entity = NULL;
  if ($entity_id !== 'NULL') {
    $entity = entity_load_single($entity_type, $entity_id);
    $has_view_access = (entity_access('view', $entity_type, $entity) !== FALSE);
    $has_update_access = (entity_access('update', $entity_type, $entity) !== FALSE);
    if (!$entity || !($has_view_access || $has_update_access)) {
      return MENU_ACCESS_DENIED;
    }
  }

  $handler = entityreference_get_selection_handler($field, $instance, $entity_type, $entity);

  if ($type == 'tags') {
    // The user enters a comma-separated list of tags. We only autocomplete the last tag.
    $tags_typed = drupal_explode_tags($string);
    $tag_last = drupal_strtolower(array_pop($tags_typed));
    if (!empty($tag_last)) {
      $prefix = count($tags_typed) ? implode(', ', $tags_typed) . ', ' : '';
    }
  }
  else {
    // The user enters a single tag.
    $prefix = '';
    $tag_last = $string;
  }

  if (isset($tag_last)) {
    // Get an array of matching entities.
    $entity_labels = $handler->getReferencableEntities($tag_last, $instance['widget']['settings']['match_operator'], 10);

    // Loop through the products and convert them into autocomplete output.
    foreach ($entity_labels as $values) {
      foreach ($values as $entity_id => $label) {
        $key = "$label ($entity_id)";
        // Strip things like starting/trailing white spaces, line breaks and tags.
        $key = preg_replace('/\s\s+/', ' ', str_replace("\n", '', trim(decode_entities(strip_tags($key)))));
        // Names containing commas or quotes must be wrapped in quotes.
        if (strpos($key, ',') !== FALSE || strpos($key, '"') !== FALSE) {
          $key = '"' . str_replace('"', '""', $key) . '"';
        }
        /* *** */ $matches[$prefix . $key] = '<div class="reference-autocomplete">' . $label .'('.$entity_id.')' .'</div>';
      }
    }
  }

  drupal_json_output($matches);
}

Ho provato questo codice e funziona perfettamente Se ci sono altri tipi di riferimenti alle entità e non è necessario farlo per loro, è sufficiente aggiungere IFun'istruzione e controllare il pacchetto o il tipo di contenuto.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.