You are here

function xmlsitemap_taxonomy_term_update in XML sitemap 7.2

Implements hook_taxonomy_term_update().

File

xmlsitemap_taxonomy/xmlsitemap_taxonomy.module, line 121
Main file for XML sitemap taxonomy.

Code

function xmlsitemap_taxonomy_term_update(stdClass $term) {
  $link = xmlsitemap_taxonomy_create_link($term);
  xmlsitemap_link_save($link, array(
    $link['type'] => $term,
  ));
}