You are here

memcache_admin.install in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 modules/memcache/memcache_admin/memcache_admin.install

update functions for memcache_admin.

File

modules/memcache/memcache_admin/memcache_admin.install
View source
<?php

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

/**
 * Flush caches and rebuild menu to allow new stats pages to appear.
 */
function memcache_admin_update_7001() {
  drupal_flush_all_caches();
  menu_rebuild();
}

/**
 * Implements hook_uninstall().
 */
function memcache_admin_uninstall() {
  variable_del('show_memcache_statistics');
}

Functions

Namesort descending Description
memcache_admin_uninstall Implements hook_uninstall().
memcache_admin_update_7001 Flush caches and rebuild menu to allow new stats pages to appear.