You are here

function tableofcontents_schema in Table of Contents 7.2

Same name and namespace in other branches
  1. 6.3 tableofcontents.install \tableofcontents_schema()
  2. 7 tableofcontents.install \tableofcontents_schema()

Implementation of hook_schema()

File

./tableofcontents.install, line 14
tableofcontents.install

Code

function tableofcontents_schema() {
  $schema['cache_tableofcontents'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_tableofcontents']['description'] = 'Cache table for the Table of Contents module to store pre-generated tables of contents.';
  return $schema;
}