You are here

function commerce_billy_commerce_order_state_info in Commerce Billy 7

Implements hook_commerce_order_state_info().

File

./commerce_billy.module, line 19
Commerce Billy module.

Code

function commerce_billy_commerce_order_state_info() {
  return array(
    'invoiced' => array(
      'name' => 'invoiced',
      'title' => t('Invoiced'),
      'description' => t('Orders in this state have been completed and an invoice number + pdf is generated.'),
      'weight' => 15,
      'default_status' => 'invoiced',
    ),
  );
}