You are here

function _uc_store_footer_options in Ubercart 7.3

Returns the default store footer options.

2 calls to _uc_store_footer_options()
uc_store_page_alter in uc_store/uc_store.module
Implements hook_page_alter().
uc_store_settings_form in uc_store/uc_store.admin.inc
Form builder for store settings.

File

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

Code

function _uc_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),
  );
}