You are here

function views_fusion_apply_preprocess_index_handler in Fusion Accelerator 7

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

Fusion Apply preprocess index handler.

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 74
Provide skins handling for views.module

Code

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