function uc_store_name in Ubercart 7.3
Same name and namespace in other branches
- 8.4 uc_store/uc_store.module \uc_store_name()
Returns the store name if set, or the site name otherwise.
10 calls to uc_store_name()
- uc_cybersource_hop_form in payment/
uc_cybersource/ uc_cybersource.module - Defines values to be posted to CyberSource.
- uc_googleanalytics_ecommerce_js in uc_googleanalytics/
uc_googleanalytics.module - Build the e-commerce JS passed to Google Analytics for order tracking.
- uc_payment_method_check in payment/
uc_payment_pack/ uc_payment_pack.module - Payment method callback for the "Check" payment method.
- uc_paypal_wps_form in payment/
uc_paypal/ uc_paypal.module - Returns the form elements for the Website Payments Standard form.
- uc_store_address in uc_store/
uc_store.module - Returns the user-defined store address.
1 string reference to 'uc_store_name'
- uc_store_init in uc_store/
uc_store.module - Implements hook_init().
File
- uc_store/
uc_store.module, line 1631 - Contains global Ubercart functions and store administration functionality.
Code
function uc_store_name() {
return variable_get('uc_store_name', variable_get('site_name', 'Ubercart'));
}