function feeds_fast_news_schema in Feeds 6
Same name and namespace in other branches
- 7 feeds_fast_news/feeds_fast_news.install \feeds_fast_news_schema()
Implementation of hook_schema().
File
- feeds_fast_news/
feeds_fast_news.install, line 11 - Install hooks.
Code
function feeds_fast_news_schema() {
// Install data tables.
include_once 'feeds_fast_news.data_default.inc';
$tables = feeds_fast_news_data_default();
$schema = array();
foreach ($tables as $name => $table) {
$schema[$name] = $table->table_schema;
}
return $schema;
}