You are here

function content_devel_caches in Content Construction Kit (CCK) 5

Same name and namespace in other branches
  1. 6 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 41
Allows administrators to associate custom fields to content types.

Code

function content_devel_caches() {
  return array(
    'cache_content',
  );
}