function flag_features_api in Flag 7.2
Same name and namespace in other branches
- 6.2 flag.module \flag_features_api()
- 7.3 flag.module \flag_features_api()
Implements hook_features_api().
File
- ./
flag.module, line 204 - The Flag module.
Code
function flag_features_api() {
return array(
'flag' => array(
'name' => t('Flag'),
'feature_source' => TRUE,
'default_hook' => 'flag_default_flags',
'file' => drupal_get_path('module', 'flag') . '/includes/flag.features.inc',
),
);
}