xmlsitemap_exit

Definition

xmlsitemap_exit()
contributions/modules/xmlsitemap/xmlsitemap.module, line 535

Description

Implementation of hook_exit().

Related topics

Namesort iconDescription
XML SitemapNotify search engines of site updates.

Code

function xmlsitemap_exit() {
  if (_xmlsitemap_submit_on_exit()) {
    _xmlsitemap_update();
    _xmlsitemap_ping();
  }
  if (variable_get('xmlsitemap_log_access', FALSE)) {
    _xmlsitemap_log();
  }
}