You are here

function ctools_features_api in Features 7.2

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

Implements hook_features_api().

File

includes/features.ctools.inc, line 58
Features integration for 'ctools' module.

Code

function ctools_features_api() {
  return array(
    'ctools' => array(
      'name' => 'CTools export API',
      'feature_source' => TRUE,
      'duplicates' => FEATURES_DUPLICATES_ALLOWED,
    ),
  );
}