You are here

function contact_features_api in Features 7.2

Implements hook_features_api().

File

includes/features.contact.inc, line 11
Features integration for 'contact' module.

Code

function contact_features_api() {
  return array(
    'contact_categories' => array(
      'name' => t('Contact categories'),
      'feature_source' => TRUE,
      /* @see \hook_contact_categories_defaults() */

      /* @see \hook_contact_categories_defaults_alter() */
      'default_hook' => 'contact_categories_defaults',
      'default_file' => FEATURES_DEFAULTS_INCLUDED,
    ),
  );
}