dynamic_background_inherit.install in Dynamic Background 7.2
Schema, installation and update hooks for Dynamic Background Inherit.
File
modules/dynamic_background_inherit/dynamic_background_inherit.installView source
<?php
/**
* @file
* Schema, installation and update hooks for Dynamic Background Inherit.
*/
/**
* Implements hook_schema().
*/
function dynamic_background_inherit_schema() {
$schema = array();
// Mirror the core 'cache' table.
$schema['cache_dynamic_background_inherit'] = drupal_get_schema_unprocessed('system', 'cache');
return $schema;
}
Functions
Name | Description |
---|---|
dynamic_background_inherit_schema | Implements hook_schema(). |