memcache_admin.install in Zircon Profile 8
Same filename and directory in other branches
update functions for memcache_admin.
File
modules/memcache/memcache_admin/memcache_admin.installView 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
Name | Description |
---|---|
memcache_admin_uninstall | Implements hook_uninstall(). |
memcache_admin_update_7001 | Flush caches and rebuild menu to allow new stats pages to appear. |