You are here

function rdfx_features_api in RDF Extensions 7.2

Implementation of hook_features_api().

File

./rdfx.module, line 419
Extends the RDF API of Drupal core to support more RDF seralizations formats other RDF capabilities.

Code

function rdfx_features_api() {
  return array(
    'rdf_mappings' => array(
      'name' => t('RDF mappings'),
      'default_hook' => 'rdf_default_mappings',
      'file' => drupal_get_path('module', 'rdfx') . '/rdfx.features.inc',
    ),
  );
}