function commerce_price_field_views_data in Commerce Core 7
Same name and namespace in other branches
- 8.2 modules/price/commerce_price.views.inc \commerce_price_field_views_data()
Implements hook_field_views_data().
File
- modules/
price/ includes/ views/ commerce_price.views.inc, line 11 - Provides Views integration for the commerce_price field.
Code
function commerce_price_field_views_data($field) {
$data = field_views_field_default_views_data($field);
foreach ($data as $table_name => $table_data) {
// Use the custom field handler for the field itself, specifically to
// facilitate aggregating on the amount.
$data[$table_name][$field['field_name']]['field']['handler'] = 'commerce_price_handler_field_commerce_price';
// Use the custom filter handler for the amount column.
$field_name = $field['field_name'] . '_amount';
$data[$table_name][$field_name]['filter']['handler'] = 'commerce_price_handler_filter_commerce_price_amount';
$data[$table_name][$field_name]['filter']['allow empty'] = FALSE;
}
return $data;
}