You are here

function themekey_features_features_api in ThemeKey 7.3

Same name and namespace in other branches
  1. 6.4 themekey_features.module \themekey_features_features_api()
  2. 6.3 themekey_features.module \themekey_features_features_api()
  3. 7 themekey_features.module \themekey_features_features_api()
  4. 7.2 themekey_features.module \themekey_features_features_api()

Implements hook_features_api().

File

./themekey_features.module, line 6

Code

function themekey_features_features_api() {
  return array(
    'themekey_features_rule_chain' => array(
      'name' => t('ThemeKey Rule Chain'),
      'default_hook' => 'themekey_features_rule_chain',
      // simply compare against the exported feature to detect overridden configuration
      'default_file' => FEATURES_DEFAULTS_INCLUDED_COMMON,
      'feature_source' => TRUE,
    ),
  );
}