xmlsitemap_custom.install 289 B

1234567891011121314
  1. <?php
  2. /**
  3. * @file
  4. * Install and uninstall schema and functions for the xmlsitemap_custom module.
  5. */
  6. /**
  7. * Implements hook_uninstall().
  8. */
  9. function xmlsitemap_custom_uninstall() {
  10. drupal_load('module', 'xmlsitemap');
  11. xmlsitemap_link_delete_multiple(array('type' => 'custom'));
  12. }