theme_uc_store_footer
Drupal 7 theme_uc_store_footer($variables)
Wraps the footer in a div so it can be re-styled.
Parameters
$variables: An associative array containing:
- message: String containing footer text.
Related topics
File
- sites/
all/ modules/ ubercart/ 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>';
}

