forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
15 lines
321 B
PHP
15 lines
321 B
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Install and uninstall schema and functions for the xmlsitemap_custom module.
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_uninstall().
|
|
*/
|
|
function xmlsitemap_custom_uninstall() {
|
|
\Drupal::moduleHandler()->load('xmlsitemap');
|
|
\Drupal::service('xmlsitemap.link_storage')->deleteMultiple(['type' => 'custom']);
|
|
}
|