You are here

memcache_admin.install in Memcache API and Integration 8.2

Update functions for memcache_admin.

File

memcache_admin/memcache_admin.install
View source
<?php

/**
 * @file
 * Update functions for memcache_admin.
 */

/**
 * Implements hook_uninstall().
 */
function memcache_admin_uninstall() {
  Drupal::configFactory()
    ->getEditable('memcache_admin.settings')
    ->clear('show_memcache_statistics')
    ->save();
}

Functions

Namesort descending Description
memcache_admin_uninstall Implements hook_uninstall().