You are here

function encrypt_features_api in Encrypt 7.3

Same name and namespace in other branches
  1. 7.2 encrypt.module \encrypt_features_api()

Implements hook_features_api().

Define the components that we want to make exportable, in this case Encrypt configurations.

File

./encrypt.module, line 669
Main Encrypt Drupal File

Code

function encrypt_features_api() {
  return array(
    'encrypt_config' => array(
      'name' => 'Encrypt configurations',
      'file' => drupal_get_path('module', 'encrypt') . '/includes/encrypt.features.inc',
      'default_hook' => 'encrypt_default_configs',
      'feature_source' => TRUE,
    ),
  );
}