You are here

function synonyms_features_api in Synonyms 7

Implements hook_features_api().

File

./synonyms.module, line 408
Provide synonyms feature for Drupal entities.

Code

function synonyms_features_api() {
  return array(
    'synonyms' => array(
      'name' => t('Synonyms'),
      'file' => drupal_get_path('module', 'synonyms') . '/synonyms.features.inc',
      'default_hook' => 'default_synonyms',
      'feature_source' => TRUE,
    ),
  );
}