You are here

function uc_order_action_order_comment_types in Ubercart 7.3

Same name and namespace in other branches
  1. 8.4 uc_order/uc_order.rules.inc \uc_order_action_order_comment_types()

Order comment types context options.

See also

uc_order_action_add_comment()

1 string reference to 'uc_order_action_order_comment_types'
uc_order_rules_action_info in uc_order/uc_order.rules.inc
Implements hook_rules_action_info().

File

uc_order/uc_order.rules.inc, line 717
Hooks and functions for uc_order Rules integration.

Code

function uc_order_action_order_comment_types() {
  return array(
    'admin' => t('Enter this as an admin comment.'),
    'order' => t('Enter this as a customer order comment.'),
    'notified' => t('Enter this as a customer order comment with a notified icon.'),
  );
}