You are here

function xmlsitemap_user_uri in XML sitemap 6.2

Entity URI callback.

1 string reference to 'xmlsitemap_user_uri'
xmlsitemap_user_xmlsitemap_link_info in xmlsitemap_user/xmlsitemap_user.module
Implements hook_xmlsitemap_link_info().

File

xmlsitemap_user/xmlsitemap_user.module, line 35

Code

function xmlsitemap_user_uri($account) {
  return array(
    'path' => 'user/' . $account->uid,
  );
}