You are here

function flag_features_api in Flag 7.3

Same name and namespace in other branches
  1. 6.2 flag.module \flag_features_api()
  2. 7.2 flag.module \flag_features_api()

Implements hook_features_api().

File

./flag.module, line 2583
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',
    ),
  );
}