function eck_features_api in Entity Construction Kit (ECK) 7
Same name and namespace in other branches
- 7.3 eck.module \eck_features_api()
- 7.2 eck.module \eck_features_api()
Implements hook_features_api().
File
- ./
eck.module, line 21 - ENTITY CONSTRUCTION KIT
Code
function eck_features_api() {
return array(
'eck_entity_type' => array(
'name' => t('Entity Types'),
'feature_source' => TRUE,
'default_hook' => 'eck_entity_type_info',
),
);
}