function schemaorg_features_api in Schema.org 7
Implements hook_features_api().
File
- ./
schemaorg.module, line 69 - Enables administrators to annotate their structured content with vocabularies from schema.org.
Code
function schemaorg_features_api() {
return array(
'schemaorg' => array(
'name' => t('Schema.org mappings'),
'default_hook' => 'rdf_default_mappings',
'file' => drupal_get_path('module', 'schemaorg') . '/schemaorg.features.inc',
'feature_source' => TRUE,
),
);
}