You are here

function features_features_api in Features 7.2

Same name and namespace in other branches
  1. 6 includes/features.features.inc \features_features_api()
  2. 7 includes/features.features.inc \features_features_api()

Implements hook_features_api().

File

includes/features.features.inc, line 11
Features integration for 'features' module itself.

Code

function features_features_api() {
  return array(
    'dependencies' => array(
      'name' => 'Dependencies',
      'feature_source' => TRUE,
      'duplicates' => FEATURES_DUPLICATES_ALLOWED,
    ),
  );
}