| 5 taxonomy.module | taxonomy_get_term_by_name($name) |
| 6 taxonomy.module | taxonomy_get_term_by_name($name) |
| 7 taxonomy.module | taxonomy_get_term_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.
Return value
An array of matching term objects.
1 call to taxonomy_get_term_by_name()
File
- modules/
taxonomy.module, line 994 - Enables the organization of content into categories.
Code
function taxonomy_get_term_by_name($name) {
$db_result = db_query(db_rewrite_sql("SELECT t.tid, t.* FROM {term_data} t WHERE LOWER('%s') LIKE LOWER(t.name)", 't', 'tid'), trim($name));
$result = array();
while ($term = db_fetch_object($db_result)) {
$result[] = $term;
}
return $result;
}
Login or register to post comments
Comments
should be more helpful if it
should be more helpful if it takes the $vid as the second parameter allowing it to search only in certain vocabulary