function xmlsitemap_custom_load in XML sitemap 6.2
Same name and namespace in other branches
- 7.2 xmlsitemap_custom/xmlsitemap_custom.module \xmlsitemap_custom_load()
Menu load callback; load a custom sitemap link from the {xmlsitemap} table.
Parameters
$id: The sitemap link ID of the custom link to load.
See also
File
- xmlsitemap_custom/
xmlsitemap_custom.module, line 52
Code
function xmlsitemap_custom_load($id) {
return xmlsitemap_link_load('custom', $id);
}