function ctools_features_api in Features 6
Same name and namespace in other branches
- 7.2 includes/features.ctools.inc \ctools_features_api()
- 7 includes/features.ctools.inc \ctools_features_api()
Implementation of hook_features_api().
File
- includes/features.ctools.inc, line 30 
Code
function ctools_features_api() {
  return array(
    'ctools' => array(
      'name' => 'CTools export API',
      'feature_source' => TRUE,
      'duplicates' => FEATURES_DUPLICATES_ALLOWED,
    ),
  );
}