commerce_payment_handler_field_amount.inc in Commerce Core 7
Contains the basic amount field handler.
File
modules/payment/includes/views/handlers/commerce_payment_handler_field_amount.incView source
<?php
/**
* @file
* Contains the basic amount field handler.
*/
/**
* Field handler to allow rendering of the amount using currency formatting.
*/
class commerce_payment_handler_field_amount extends views_handler_field {
function init(&$view, &$options) {
parent::init($view, $options);
$this->additional_fields['currency_code'] = 'currency_code';
}
function option_definition() {
$options = parent::option_definition();
$options['display_format'] = array(
'default' => 'formatted',
);
return $options;
}
/**
* Provide the currency format option.
*/
function options_form(&$form, &$form_state) {
parent::options_form($form, $form_state);
$form['display_format'] = array(
'#type' => 'select',
'#title' => t('Display format'),
'#options' => array(
'formatted' => t('Currency formatted amount'),
'raw' => t('Raw amount'),
),
'#default_value' => $this->options['display_format'],
);
}
function render($values) {
$value = $this
->get_value($values);
$currency_code = $this
->get_value($values, 'currency_code');
switch ($this->options['display_format']) {
case 'formatted':
return commerce_currency_format($value, $currency_code);
case 'raw':
// First load the full currency array.
$currency = commerce_currency_load($currency_code);
// Format the price as a number.
return number_format(commerce_currency_round(commerce_currency_amount_to_decimal($value, $currency_code), $currency), $currency['decimals']);
}
}
}
Classes
Name | Description |
---|---|
commerce_payment_handler_field_amount | Field handler to allow rendering of the amount using currency formatting. |