You are here

function taxonomy_xml_get_term_uri in Taxonomy import/export via XML 6.2

Deprecated, to avoid conflict with D7 entities, which use uri for their own purpose

File

./taxonomy_xml.module, line 1643
This module makes it possible to import and export taxonomies as XML documents.

Code

function taxonomy_xml_get_term_uri($term) {
  watchdog('taxonomy_xml', __FUNCTION__ . ' deprecated. Use taxonomy_xml_get_term_guid() instead', array(), WATCHDOG_NOTICE);
  return taxonomy_xml_get_term_guid($term);
}