You are here

function uc_order_action_email_invoice_view_options in Ubercart 7.3

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

Email invoice context options.

See also

uc_order_action_email_invoice()

1 string reference to 'uc_order_action_email_invoice_view_options'
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 841
Hooks and functions for uc_order Rules integration.

Code

function uc_order_action_email_invoice_view_options() {
  return array(
    'print' => t('Show the business header and shipping method.'),
    'admin-mail' => t('Show all of the above plus the help text, email text, and store footer.'),
    'checkout-mail' => t('Show all of the above plus the "thank you" message.'),
  );
}