public function CommerceDiscountViewsController::views_data in Commerce Discount 7
Override EntityDefaultViewsController::views_data().
Overrides EntityDefaultViewsController::views_data
File
- includes/
views/ commerce_discount.views.inc, line 16 - Provides support for the Views module.
Class
- CommerceDiscountViewsController
- Commerce discount entity Views definitions.
Code
public function views_data() {
$data = parent::views_data();
// Expose the product status.
$data['commerce_discount']['status'] = array(
'title' => t('Status'),
'help' => t('Whether or not the discount is active.'),
'field' => array(
'handler' => 'views_handler_field_boolean',
'click sortable' => TRUE,
'output formats' => array(
'active-disabled' => array(
t('Active'),
t('Disabled'),
),
),
),
'filter' => array(
'handler' => 'views_handler_filter_boolean_operator',
'label' => t('Active'),
'type' => 'yes-no',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
// Show the operations using CTools dropbutton menu.
$data['commerce_discount']['operations_dropbutton'] = array(
'title' => t('Operations'),
'help' => t('Show the operation links using dropbutton menu.'),
'field' => array(
'handler' => 'commerce_discount_handler_field_operations_dropbutton',
),
// This is a dummy field, so attach it to the ID column.
'real field' => 'discount_id',
);
return $data;
}