You are here

function uc_order_entity_info in Ubercart 5

Same name and namespace in other branches
  1. 7.3 uc_order/uc_order.module \uc_order_entity_info()

File

uc_order/uc_order_workflow.inc, line 15
This file contains the Workflow-ng hooks and functions necessary to make the order related entity, conditions, events, and actions work.

Code

function uc_order_entity_info() {
  $entities['order'] = array(
    '#save' => 'uc_order_save',
  );
  return $entities;
}