You are here

function commerce_billy_commerce_order_status_info in Commerce Billy 7

Implements hook_commerce_order_status_info().

File

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

Code

function commerce_billy_commerce_order_status_info() {
  return array(
    'invoiced' => array(
      'name' => 'invoiced',
      'title' => t('Invoiced'),
      'state' => 'invoiced',
    ),
  );
}