function theme_uc_store_footer in Ubercart 7.3
Same name and namespace in other branches
- 5 uc_store/uc_store.module \theme_uc_store_footer()
- 6.2 uc_store/uc_store.module \theme_uc_store_footer()
Wraps the footer in a div so it can be re-styled.
Parameters
$variables: An associative array containing:
- message: String containing footer text.
1 theme call to theme_uc_store_footer()
- uc_store_page_alter in uc_store/
uc_store.module - Implements hook_page_alter().
File
- uc_store/
uc_store.theme.inc, line 75 - Theme functions for the uc_store module.
Code
function theme_uc_store_footer($variables) {
return '<div id="store-footer">' . $variables['message'] . '</div>';
}