You are here

function blockexport_features_api in Blockexport 7.2

Same name and namespace in other branches
  1. 7 blockexport.module \blockexport_features_api()

Implements hook_features_api().

File

./blockexport.module, line 30
This features component provide developer to export all blocks into a feature.

Code

function blockexport_features_api() {
  return array(
    'blockexport_settings' => array(
      'name' => t('Block'),
      'feature_source' => TRUE,
      'default_file' => FEATURES_DEFAULTS_INCLUDED,
      'default_hook' => 'default_blockexport_settings',
    ),
  );
}