function uc_payment_order_state in Ubercart 6.2
Same name and namespace in other branches
- 5 payment/uc_payment/uc_payment.module \uc_payment_order_state()
Implements hook_order_state().
File
- payment/
uc_payment/ uc_payment.module, line 316
Code
function uc_payment_order_state() {
$states[] = array(
'id' => 'payment_received',
'title' => t('Payment received'),
'weight' => 10,
'scope' => 'general',
);
return $states;
}