function payment_field_extra_fields in Payment 7
Implements hook_field_extra_fields().
File
- ./
payment.module, line 422 - Hook implementations and shared functions.
Code
function payment_field_extra_fields() {
$field['payment']['payment'] = array(
'form' => array(
'payment_line_items' => array(
'label' => t('Line items'),
'weight' => 0,
),
'payment_method' => array(
'label' => t('Payment method selection and configuration'),
'weight' => 0,
),
'payment_status' => array(
'label' => t('Status'),
'weight' => 0,
),
),
'display' => array(
'payment_line_items' => array(
'label' => t('Line items'),
'weight' => 0,
),
'payment_method' => array(
'label' => t('Payment method (generic title)'),
'weight' => 0,
),
'payment_status_items' => array(
'label' => t('Status items'),
'weight' => 0,
),
),
);
return $field;
}