You are here

function simple_sitemap_views_uninstall in Simple XML sitemap 4.x

Same name and namespace in other branches
  1. 8.3 modules/simple_sitemap_views/simple_sitemap_views.install \simple_sitemap_views_uninstall()

Implements hook_uninstall().

File

modules/simple_sitemap_views/simple_sitemap_views.install, line 19
Install and uninstall hooks for the simple_sitemap_views module.

Code

function simple_sitemap_views_uninstall() {

  // Disable views display extender plugin.
  \Drupal::service('simple_sitemap.views')
    ->disable();
}