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