You are here

function weight_features_api in Weight 7.2

Implements hook_features_api().

File

./weight.module, line 527

Code

function weight_features_api() {
  return array(
    'weight' => array(
      'name' => 'Weight',
      'file' => drupal_get_path('module', 'weight') . '/weight.features.inc',
      'default_hook' => 'weight_features_default_settings',
      'feature_source' => TRUE,
    ),
  );
}