taxonomy_term_load_multiple_by_name($name, $vocabulary = NULL)
Try to map a string to an existing term, as for glossary use.
Provides a case-insensitive and trimmed mapping, to maximize the likelihood of a successful match.
Parameters
$name: Name of the term to search for.
$vocabulary: (optional) Vocabulary machine name to limit the search. Defaults to NULL.
Return value
An array of matching term objects.
File
- core/modules/taxonomy/taxonomy.module, line 335
- Enables the organization of content into categories.
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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 ); } |
Please login to continue.