You are here

asset_entitycache.install in Asset 7

Install functions for the Asset Entity cache module.

File

modules/asset_entitycache/asset_entitycache.install
View source
<?php

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

/**
 * Implements hook_schema().
 */
function asset_entitycache_schema() {
  $schema = array();
  $schema['cache_entity_asset'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_entity_asset']['description'] = "Cache table used to store asset entity records.";
  return $schema;
}

Functions

Namesort descending Description
asset_entitycache_schema Implements hook_schema().