You are here

function uc_coupon_workflow_message_formats in Ubercart Discount Coupons 7.3

Same name and namespace in other branches
  1. 7.2 uc_coupon_workflow/uc_coupon_workflow.rules.inc \uc_coupon_workflow_message_formats()

Options list callback for message formats.

1 string reference to 'uc_coupon_workflow_message_formats'
uc_coupon_workflow_rules_action_info in uc_coupon_workflow/uc_coupon_workflow.rules.inc
Implements hook_rules_action_info().

File

uc_coupon_workflow/uc_coupon_workflow.rules.inc, line 200
Rules integration for uc_coupon_workflow

Code

function uc_coupon_workflow_message_formats() {
  global $user;
  $options = array();
  $formats = filter_formats($user);
  foreach ($formats as $format) {
    $options[$format->format] = $format->name;
  }
  return $options;
}