function emfield_schema in Embedded Media Field 6.3
Same name and namespace in other branches
- 6.2 emfield.install \emfield_schema()
Implementation of hook_schema().
File
- ./
emfield.install, line 345 - This is the emfield.module's install, configuration, and removal file.
Code
function emfield_schema() {
$schema = array();
$schema['cache_emfield_xml'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['cache_emfield_xml']['description'] = 'Cache table used to store third party XML files for Embedded Media Field.';
return $schema;
}