You are here

commerce_file.views.inc in Commerce File 7.2

File

includes/views/commerce_file.views.inc
View source
<?php

/**
 * Provides views integration for files.
 */

/**
 * Implements hook_views_data().
 */
function commerce_file_views_data() {
  $data['commerce_license']['download_limit'] = array(
    'title' => t('Download limit'),
    'help' => t('Displays the download limit for a file.'),
    'field' => array(
      'handler' => 'commerce_file_handler_field_download_limit',
      'click sortable' => FALSE,
    ),
  );
  return $data;
}

Functions

Namesort descending Description
commerce_file_views_data Implements hook_views_data().