function uc_payments_table in Ubercart 6.2
Same name and namespace in other branches
- 5 payment/uc_payment/uc_payment.module \uc_payments_table()
- 7.3 payment/uc_payment/uc_payment.module \uc_payments_table()
TAPIr table definition for uc_payments_table.
1 string reference to 'uc_payments_table'
- uc_payment_by_order_form in payment/
uc_payment/ uc_payment.admin.inc - Displays a list of payments attached to an order.
File
- payment/
uc_payment/ uc_payment.module, line 441
Code
function uc_payments_table() {
$table = array(
'#type' => 'tapir_table',
'#tree' => TRUE,
'#columns' => array(
'received' => array(
'cell' => t('Received'),
'weight' => 0,
),
'user' => array(
'cell' => t('User'),
'weight' => 1,
),
'method' => array(
'cell' => t('Method'),
'weight' => 2,
),
'amount' => array(
'cell' => t('Amount'),
'weight' => 3,
),
'balance' => array(
'cell' => t('Balance'),
'weight' => 4,
),
'comment' => array(
'cell' => t('Comment'),
'weight' => 5,
),
'action' => array(
'cell' => t('Action'),
'weight' => 6,
),
),
'#rows' => array(),
);
return $table;
}