You are here

function content_type_groups_features_api in Content type groups 7.2

Same name and namespace in other branches
  1. 7 content_type_groups.module \content_type_groups_features_api()

Implements hook_features_api().

This hook tells features this component is available for export.

File

./content_type_groups.module, line 75
Module file for the Content type groups module.

Code

function content_type_groups_features_api() {
  return array(
    'content_type_groups' => array(
      'name' => t('Content type groups'),
      'default_hook' => 'content_type_groups_features_default_settings',
    ),
  );
}