You are here

xmlsitemap.node_convert_behavior.inc in Node Convert 7

XML Site-map behavior.

Updates node type in xmlsitemap table.

File

modules/xmlsitemap.node_convert_behavior.inc
View source
<?php

/**
 * @file
 * XML Site-map behavior.
 *
 * Updates node type in xmlsitemap table.
 */

/**
 * Implementation of node_convert_change().
 */
function xmlsitemap_node_convert_change($data, $op) {
  if ($op == 'insert') {
    $node = $data['node'];

    // Change the node type stored in the xmlsitemap table.
    $link = xmlsitemap_link_load('node', $node->nid);
    $link['subtype'] = $data['dest_node_type'];
    xmlsitemap_link_save($link);
  }
}

Functions

Namesort descending Description
xmlsitemap_node_convert_change Implementation of node_convert_change().