You are here

function blockexport_settings_features_export_render in Blockexport 7.2

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

Implements hook_features_export_render().

File

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

Code

function blockexport_settings_features_export_render($module_name, $data, $export = NULL) {
  $tables = array(
    'block',
    'block_custom',
    'block_node_type',
    'block_role',
    'block_class',
  );
  return _blockexport_genarateschema($tables);
}