function xmlsitemap_rebuild_batch_clear in XML sitemap 7.2
Same name and namespace in other branches
- 8 xmlsitemap.module \xmlsitemap_rebuild_batch_clear()
- 6.2 xmlsitemap.generate.inc \xmlsitemap_rebuild_batch_clear()
- 2.x xmlsitemap.module \xmlsitemap_rebuild_batch_clear()
Batch callback; clear sitemap links for entites.
1 string reference to 'xmlsitemap_rebuild_batch_clear'
- xmlsitemap_rebuild_batch in ./
xmlsitemap.generate.inc - Batch information callback for rebuilding the sitemap data.
File
- ./
xmlsitemap.generate.inc, line 462 - Sitemap generation and rebuilding functions for the xmlsitemap module.
Code
function xmlsitemap_rebuild_batch_clear(array $entities, $save_custom, &$context) {
if (!empty($entities)) {
xmlsitemap_rebuild_clear($entities, $save_custom);
}
$context['message'] = t('Purging links.');
}