commerce_price.views.inc in Commerce Core 8.2
Provide Views data for the Price module.
File
modules/price/commerce_price.views.incView source
<?php
/**
* @file
* Provide Views data for the Price module.
*
* @ingroup views_module_handlers
*/
use Drupal\field\FieldStorageConfigInterface;
/**
* Implements hook_field_views_data().
*
* Views integration for price fields.
*/
function commerce_price_field_views_data(FieldStorageConfigInterface $field_storage) {
$data = views_field_default_views_data($field_storage);
$field_name = $field_storage
->getName();
foreach ($data as $table_name => $table_data) {
if (isset($table_data[$field_name])) {
$data[$table_name][$field_name . '_number']['field'] = [
'id' => 'numeric',
'field_name' => $table_data[$field_name]['field']['field_name'],
'entity_type' => $table_data[$field_name]['field']['entity_type'],
'label' => t('number from @field_name', [
'@field_name' => $field_name,
]),
];
$data[$table_name][$field_name . '_currency_code']['field'] = [
'id' => 'standard',
'field_name' => $table_data[$field_name]['field']['field_name'],
'entity_type' => $table_data[$field_name]['field']['entity_type'],
'label' => t('currency from @field_name', [
'@field_name' => $field_name,
]),
];
$data[$table_name][$field_name . '_currency_code']['filter']['id'] = 'commerce_currency';
}
}
return $data;
}
Functions
Name | Description |
---|---|
commerce_price_field_views_data | Implements hook_field_views_data(). |