You are here

function theme_uc_store_footer in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_store/uc_store.module \theme_uc_store_footer()
  2. 7.3 uc_store/uc_store.theme.inc \theme_uc_store_footer()

Wraps the footer in a div so it can be re-styled.

1 theme call to theme_uc_store_footer()
uc_store_footer in uc_store/uc_store.module
Implements hook_footer().

File

uc_store/uc_store.module, line 727
Contains global Ubercart functions and store administration functionality.

Code

function theme_uc_store_footer($message) {
  return '<div id="store-footer">' . $message . '</div>';
}