You are here

function imageinfo_cache_schema in Imageinfo Cache 7.3

Same name and namespace in other branches
  1. 6.2 imageinfo_cache.install \imageinfo_cache_schema()
  2. 6 imageinfo_cache.install \imageinfo_cache_schema()

Implements hook_schema().

File

./imageinfo_cache.install, line 21
Handles Imageinfo Cache installation and upgrade tasks.

Code

function imageinfo_cache_schema() {

  // Define cache table.
  $schema['cache_imageinfo'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_imageinfo']['description'] = 'Cache table for Imageinfo Cache. Used to cache information contained in image_get_info().';
  return $schema;
}