asset_entitycache.install in Asset 7
Install functions for the Asset Entity cache module.
File
modules/asset_entitycache/asset_entitycache.installView 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
Name | Description |
---|---|
asset_entitycache_schema | Implements hook_schema(). |