xmlsitemap_custom.install 355 B

123456789101112131415
  1. <?php
  2. // $Id: xmlsitemap_custom.install,v 1.2 2009/12/22 23:38:54 davereid Exp $
  3. /**
  4. * @file
  5. * Install and uninstall schema and functions for the xmlsitemap_custom module.
  6. */
  7. /**
  8. * Implements hook_uninstall().
  9. */
  10. function xmlsitemap_custom_uninstall() {
  11. drupal_load('module', 'xmlsitemap');
  12. xmlsitemap_delete_link(array('type' => 'custom'));
  13. }