You are here

function uc_order_action_order_comment_types in Ubercart 8.4

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

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 415
Rules integration for order-related entity events, conditions, and actions.

Code

function uc_order_action_order_comment_types() {
  return [
    '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.'),
  ];
}