You are here

function xmlsitemap_form_system_modules_alter in XML sitemap 6.2

Implements hook_form_FORM_ID_alter().

Add a submit handler to manually clear any XML sitemap cache entries.

File

./xmlsitemap.module, line 234
Main file for the xmlsitemap module.

Code

function xmlsitemap_form_system_modules_alter(&$form, $form_state) {
  $form['#submit'][] = 'xmlsitemap_system_modules_submit';
}