xmlsitemap_cron()
contributions/modules/xmlsitemap/xmlsitemap.module, line 498
Implementation of hook_cron().
| Name | Description |
|---|---|
| XML Sitemap | Notify search engines of site updates. |
function xmlsitemap_cron() {
if (variable_get('xmlsitemap_cron_submit', FALSE) && variable_get('xmlsitemap_changed', FALSE)) {
if (variable_get('xmlsitemap_update', FALSE)) {
_xmlsitemap_update();
}
_xmlsitemap_ping();
}
}