hook_flush_caches

Versions
6 – 7
hook_flush_caches()

Add a list of cache tables to be cleared.

This hook allows your module to add cache table names to the list of cache tables that will be cleared by the Clear button on the Performance page or whenever drupal_flush_all_caches is invoked.

See also

drupal_flush_all_caches()

@see system_clear_cache_submit()

Parameters

None.

Return value

An array of cache table names.

Related topics

Code

developer/hooks/core.php, line 2352

<?php
function hook_flush_caches() {
  return array('cache_example');
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.