You are here

function panels_fusion_apply_preprocess_index_handler in Fusion Accelerator 7.2

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

Fusion Apply preprocess index handler.

Parameters

&$variables: Passes in the $variables parameter from module_preprocess().

Return value

The index where we can find our values in Fusion Apply's data structure. If an array is returned, it will loop through each index in Fusion Apply's data structure and merge the returned classes.

Related topics

1 string reference to 'panels_fusion_apply_preprocess_index_handler'
panels_fusion_apply_config_info in fusion_apply/modules/panels.fusion.inc
Implements hook_fusion_apply_config_info().

File

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

Code

function panels_fusion_apply_preprocess_index_handler(&$variables) {
  $index = array();
  $index[] = 'pane__' . $variables['pane']->did . '__' . $variables['pane']->pid;
  return $index;
}