You are here

function theme_uc_recurring_product_message in UC Recurring Payments and Subscriptions 7.2

Theme a recurring product message. This is displayed to users if their cart or order contain recurring prodcuts.

2 theme calls to theme_uc_recurring_product_message()
uc_recurring_order_checkout_pane_message in modules/uc_recurring_product/uc_recurring_product.module
Checkout Pane callback function.
uc_recurring_product_uc_cart_pane in modules/uc_recurring_product/uc_recurring_product.module
Implements hook_uc_cart_pane().

File

modules/uc_recurring_product/uc_recurring_product.module, line 288
Add recurring payments/fees to a product. This is imlpemented through Ubercarts product features.

Code

function theme_uc_recurring_product_message($variables) {
  $output = $variables['message'];
  return $output;
}