You are here

function xmlsitemap_node_uri in XML sitemap 6.2

Entity URI callback.

1 string reference to 'xmlsitemap_node_uri'
xmlsitemap_node_xmlsitemap_link_info in xmlsitemap_node/xmlsitemap_node.module
Implements hook_xmlsitemap_link_info().

File

xmlsitemap_node/xmlsitemap_node.module, line 36

Code

function xmlsitemap_node_uri($node) {
  return array(
    'path' => 'node/' . $node->nid,
  );
}