You are here

uc_discounts.views.inc in Ubercart Discounts (Alternative) 6.2

Same filename and directory in other branches
  1. 7.2 uc_discounts/uc_discounts.views.inc

File

uc_discounts/uc_discounts.views.inc
View source
<?php

function uc_discounts_views_data() {
  $data['uc_discounts_order_codes']['table']['group'] = t('UC Discounts');
  $data['uc_discounts_order_codes']['table']['join'] = array(
    'uc_orders' => array(
      'left_field' => 'order_id',
      'field' => 'order_id',
    ),
  );
  $data['uc_discounts_order_codes']['codes'] = array(
    'title' => t('Codes Applied'),
    'help' => t('A comma separated listing of the coupon codes used on this order'),
    'field' => array(
      'handler' => 'views_handler_field',
    ),
  );
  return $data;
}

Functions