You are here

function panels_fusion_apply_config_info in Fusion Accelerator 7

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

Implements hook_fusion_apply_config_info().

Related topics

File

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

Code

function panels_fusion_apply_config_info() {
  $data['panels']['form']['fusion_apply_ui_form'] = array(
    'preprocess_hook_callback' => 'panels_fusion_apply_preprocess_hook_callback',
    'title' => t('panel pane settings'),
    'collapsed' => FALSE,
  );
  $data['panels']['preprocess']['panels_pane'] = array(
    'index_handler' => 'panels_fusion_apply_preprocess_index_handler',
  );
  return $data;
}