function _store_footer_options in Ubercart 5
Same name and namespace in other branches
- 6.2 uc_store/uc_store.module \_store_footer_options()
2 calls to _store_footer_options()
- uc_store_display_settings_form in uc_store/
uc_store.module - uc_store_footer in uc_store/
uc_store.module - Implementation of hook_footer().
File
- uc_store/
uc_store.module, line 1436 - 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.)'),
);
}