You are here

function uc_order_uc_message in Ubercart 7.3

Same name and namespace in other branches
  1. 6.2 uc_order/uc_order.module \uc_order_uc_message()

Implements hook_uc_message().

File

uc_order/uc_order.module, line 852

Code

function uc_order_uc_message() {
  $messages['order_update_email'] = t("[order:first-name] [order:last-name],\n\nYour order number [order:link] at [store:name] has been updated.\n\nOrder status: [order:order-status]\n\nOrder comment:\n[order:last-comment]\n\nBrowse to the following page to login to your account and view your order details:\n[site:login-link]\n\n\nThanks again,\n\n[store:name]\n[site:slogan]");
  return $messages;
}