You are here

function uc_payment_uc_order_state in Ubercart 7.3

Implements hook_uc_order_state().

File

payment/uc_payment/uc_payment.module, line 220

Code

function uc_payment_uc_order_state() {
  $states['payment_received'] = array(
    'title' => t('Payment received'),
    'weight' => 10,
    'scope' => 'general',
  );
  return $states;
}