You are here

function blockexport_settings_features_export_options in Blockexport 7

Same name and namespace in other branches
  1. 7.2 blockexport.module \blockexport_settings_features_export_options()

Implements hook_features_export_options().

File

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

Code

function blockexport_settings_features_export_options() {
  $options = array();
  $options['block_settings'] = t('Block: Export All Blocks');
  return $options;
}