theme_uc_store_footer

  1. drupal
    1. 6 uc_store.module function
    2. 7 uc_store.theme.inc function
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>';
}