You are here

function block_fusion_apply_config_info in Fusion Accelerator 7

Same name and namespace in other branches
  1. 7.2 fusion_apply/modules/block.fusion.inc \block_fusion_apply_config_info()

Implements hook_fusion_apply_config_info().

Related topics

File

fusion_apply/modules/block.fusion.inc, line 16
Provide skins handling for block.module

Code

function block_fusion_apply_config_info() {
  $data['block']['form']['fusion_apply_ui_form'] = array(
    'preprocess_hook_callback' => 'block_fusion_apply_preprocess_hook_callback',
    'title' => t('block settings'),
    'collapsed' => FALSE,
  );
  $data['block']['preprocess']['block'] = array(
    'index_handler' => 'block_fusion_apply_preprocess_index_handler',
  );
  $data['block']['contextual_links']['block'] = array(
    'contextual_links_handler' => 'block_fusion_apply_contextual_links',
  );
  return $data;
}