view sites/all/themes/omega/preprocess/views/views-view-table.preprocess.inc @ 0:ff03f76ab3fe

initial version
author danieleb <danielebarchiesi@me.com>
date Wed, 21 Aug 2013 18:51:11 +0100
parents
children
line wrap: on
line source
<?php

/**
 * Implements hook_preprocess_views_view_table().
 */
function omega_preprocess_views_view_table(&$variables) {
  // For some reason views puts row classes into the classes array. Instead of
  // classes arrays we should always use proper attributes arrays and never
  // abuse the default versions of those for row classes. Instead, we should use
  // a custom variable for that, which is exactly what we convert it to here.
  foreach ($variables['rows'] as $delta => $row) {
    $variables['row_attributes_array'][$delta] = isset($variables['row_attributes_array'][$delta]) ? $variables['row_attributes_array'][$delta] : array();

    if (!empty($variables['row_classes'][$delta])) {
      $variables['row_attributes_array'][$delta]['class'] = $variables['row_classes'][$delta];
    }

    // Views tables have additional classes for each table column.
    foreach ($row as $field => $content) {
      $variables['field_attributes_array'][$field][$delta] = isset($variables['field_attributes_array'][$field][$delta]) ? $variables['field_attributes_array'][$field][$delta] : array();

      if (!empty($variables['field_classes'][$field][$delta])) {
        $variables['field_attributes_array'][$field][$delta]['class'] = explode(' ', $variables['field_classes'][$field][$delta]);
      }
    }
  }

  // Views tables have additional classes for each header column.
  foreach ($variables['header'] as $field => $label) {
    $variables['header_attributes_array'][$field] = isset($variables['header_attributes_array'][$field]) ? $variables['header_attributes_array'][$field] : array();

    if (!empty($variables['header_classes'][$field])) {
      $variables['header_attributes_array'][$field]['class'] = explode(' ', $variables['header_classes'][$field]);
    }
  }
}