In Drupal 7, possiamo caricare il termine usando il nome per es. taxonomy_get_term_by_name($name)
Esiste un modo per caricare il termine tramite un determinato nome in Drupal 8?
In Drupal 7, possiamo caricare il termine usando il nome per es. taxonomy_get_term_by_name($name)
Esiste un modo per caricare il termine tramite un determinato nome in Drupal 8?
Risposte:
Questa funzionalità sembra essere obsoleta in Drupal 8.
Utilizzare invece la funzione taxonomy_term_load_multiple_by_name .
Esempio
<?php
/**
* Utility: find term by name and vid.
* @param null $name
* Term name
* @param null $vid
* Term vid
* @return int
* Term id or 0 if none.
*/
protected function getTidByName($name = NULL, $vid = NULL) {
$properties = [];
if (!empty($name)) {
$properties['name'] = $name;
}
if (!empty($vid)) {
$properties['vid'] = $vid;
}
$terms = \Drupal::entityManager()->getStorage('taxonomy_term')->loadByProperties($properties);
$term = reset($terms);
return !empty($term) ? $term->id() : 0;
}
?>
Puoi utilizzare il codice dello snippet come utilizzando entityTypeManager :
$term_name = 'Term Name';
$term = \Drupal::entityTypeManager()
->getStorage('taxonomy_term')
->loadByProperties(['name' => $term_name]);
Come per Ribattezzata le funzioni di tassonomia che hanno restituito valori multipli , taxonomy_get_term_by_name($name, $vocabulary = NULL)
è stato rinominato taxonomy_term_load_multiple_by_name($name, $vocabulary = NULL)
. Se si esamina il codice della prima funzione e lo si confronta con il codice della seconda funzione, si noterà che la differenza più rilevante è stata la sostituzione della chiamata taxonomy_term_load_multiple(array(), $conditions)
con la chiamata a entity_load_multiple_by_properties('taxonomy_term', $values)
.
// Drupal 7
function taxonomy_get_term_by_name($name, $vocabulary = NULL) {
$conditions = array('name' => trim($name));
if (isset($vocabulary)) {
$vocabularies = taxonomy_vocabulary_get_names();
if (isset($vocabularies[$vocabulary])) {
$conditions['vid'] = $vocabularies[$vocabulary]->vid;
}
else {
// Return an empty array when filtering by a non-existing vocabulary.
return array();
}
}
return taxonomy_term_load_multiple(array(), $conditions);
}
// Drupal 8
function taxonomy_term_load_multiple_by_name($name, $vocabulary = NULL) {
$values = array('name' => trim($name));
if (isset($vocabulary)) {
$vocabularies = taxonomy_vocabulary_get_names();
if (isset($vocabularies[$vocabulary])) {
$values['vid'] = $vocabulary;
}
else {
// Return an empty array when filtering by a non-existing vocabulary.
return array();
}
}
return entity_load_multiple_by_properties('taxonomy_term', $values);
}
Poiché taxonomy_term_load_multiple_by_name()
non è stato contrassegnato come obsoleto, è comunque possibile utilizzare quella funzione in cui si utilizzava taxonomy_get_term_by_name()
. Entrambi richiedono gli stessi argomenti, quindi la conversione del codice per Drupal 7 in codice per Drupal 8, in questo caso, è solo questione di sostituire il nome della funzione.
Per caricare l'ID a termine singolo in base al nome del termine in Drupal 8 -
$term = \Drupal::entityTypeManager() ->getStorage('taxonomy_term') ->loadByProperties(['name' => $term_name, 'vid' => 'job_category']); $term = reset($term); $term_id = $term->id();