You are here

function views_ajax_history_uninstall in Views AJAX History 8

Implements hook_uninstall().

File

./views_ajax_history.install, line 54

Code

function views_ajax_history_uninstall() {

  // Disable ajax_history plugin.
  $config = \Drupal::service('config.factory')
    ->getEditable('views.settings');
  $display_extenders = $config
    ->get('display_extenders') ?: [];
  $key = array_search('ajax_history', $display_extenders);
  if ($key !== FALSE) {
    unset($display_extenders[$key]);
    $config
      ->set('display_extenders', $display_extenders);
    $config
      ->save();
  }
}