You are here

function theme_views_jqfx_main_section in Views jQFX 7

The current element of the output.

File

./views_jqfx.theme.inc, line 14
The theme system, which controls the output of views jQFX.

Code

function theme_views_jqfx_main_section($variables) {
  $attributes['id'] = "{$variables['plugin']}_main_{$variables['id']}";
  $attributes['class'] = array(
    "{$variables['plugin']}_main views",
    "jqfx_main",
  );
  $attributes = drupal_attributes($attributes);
  return "<div{$attributes}>{$variables['hidden_elements']}</div>";
}