You are here

function views_fusion_apply_preprocess_index_handler in Fusion Accelerator 7.2

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

Fusion Apply preprocess index handler.

Parameters

&$variables: Passes in the $variables parameter from fusion_apply_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 'views_fusion_apply_preprocess_index_handler'
views_fusion_apply_config_info in fusion_apply/modules/views.fusion.inc
Implements hook_fusion_apply_config_info().

File

fusion_apply/modules/views.fusion.inc, line 82
Provide skins handling for views.module

Code

function views_fusion_apply_preprocess_index_handler(&$variables) {
  return array(
    $variables['view']->name . '__' . $variables['view']->current_display,
  );
}