You are here

function content_devel_caches in Content Construction Kit (CCK) 6

Same name and namespace in other branches
  1. 5 content.module \content_devel_caches()

Implementation of hook_devel_caches. Include {cache_content} in the list of tables cleared by devel's 'empty cache'

File

./content.module, line 55
Allows administrators to associate custom fields to content types.

Code

function content_devel_caches() {
  return array(
    content_cache_tablename(),
  );
}