You are here

function _store_footer_options in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_store/uc_store.module \_store_footer_options()

Returns the default store footer options.

2 calls to _store_footer_options()
uc_store_display_settings_form in uc_store/uc_store.admin.inc
Settings for how miscellaneous store components are displayed.
uc_store_footer in uc_store/uc_store.module
Implements hook_footer().

File

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

Code

function _store_footer_options() {
  $url = array(
    '!url' => 'http://www.ubercart.org/',
  );
  return array(
    1 => t('<a href="!url">Powered by Ubercart</a>', $url),
    2 => t('<a href="!url">Drupal e-commerce</a> provided by Ubercart.', $url),
    3 => t('Supported by Ubercart, an <a href="!url">open source e-commerce suite</a>.', $url),
    4 => t('Powered by Ubercart, the <a href="!url">free shopping cart software</a>.', $url),
    'none' => t('(Do not display a message in the footer.)'),
  );
}