You are here

bean_entitycache.install in Bean (for Drupal 7) 7

Install functions for the Bean Entity cache module.

File

bean_entitycache/bean_entitycache.install
View source
<?php

/**
 * @file
 *   Install functions for the Bean Entity cache module.
 */

/**
 * Implements hook_schema().
 */
function bean_entitycache_schema() {
  $schema = array();
  $schema['cache_entity_bean'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_entity_bean']['description'] = 'Entity Cache table for the Bean module.';
  return $schema;
}

Functions

Namesort descending Description
bean_entitycache_schema Implements hook_schema().