function taxonomy_xml_relationship_synonyms_for in Taxonomy import/export via XML 7
Reverse-lookup of the synonyms table. Returns an array of synonyms for the given cannonc predicate
File
- ./
taxonomy_xml.module, line 1259 - Make it possible to import and export taxonomies as XML documents.
Code
function taxonomy_xml_relationship_synonyms_for($canonic) {
$synonyms_reversed = taxonomy_xml_relationship_synonyms_reverse();
return $synonyms_reversed[$canonic];
}