You are here

function commerce_file_field_views_data in Commerce File 7

Implements hook_field_views_data().

Views integration for commerce_file fields.

  • Adds a file relationship to the default field data.

See also

field_views_field_default_views_data()

File

views/commerce_file.views.inc, line 459
Export Drupal Commerce file licenses to Views.

Code

function commerce_file_field_views_data($field) {
  $data = field_views_field_default_views_data($field);
  foreach ($data as $table_name => $table_data) {

    // Add the relationship only on the fid field.
    $data[$table_name][$field['field_name'] . '_fid']['relationship'] = array(
      'handler' => 'views_handler_relationship',
      'base' => 'file_managed',
      'entity type' => 'file',
      'base field' => 'fid',
      'label' => t('file from !field_name', array(
        '!field_name' => $field['field_name'],
      )),
    );
  }
  return $data;
}