You are here

function uc_store_name in Ubercart 8.4

Same name and namespace in other branches
  1. 7.3 uc_store/uc_store.module \uc_store_name()

Returns the store name.

10 calls to uc_store_name()
PayPalExpressCheckout::buildRedirectForm in payment/uc_paypal/src/Plugin/Ubercart/PaymentMethod/PayPalExpressCheckout.php
Redirect to PayPal Express Checkout Mark Flow.
PayPalExpressCheckout::orderSubmit in payment/uc_paypal/src/Plugin/Ubercart/PaymentMethod/PayPalExpressCheckout.php
Called when an order is being submitted with this payment method.
PayPalExpressCheckout::submitExpressForm in payment/uc_paypal/src/Plugin/Ubercart/PaymentMethod/PayPalExpressCheckout.php
Submit callback for the express checkout button.
PayPalPaymentsStandard::buildRedirectForm in payment/uc_paypal/src/Plugin/Ubercart/PaymentMethod/PayPalPaymentsStandard.php
Form constructor.
PayPalWebsitePaymentsPro::chargeCard in payment/uc_paypal/src/Plugin/Ubercart/PaymentMethod/PayPalWebsitePaymentsPro.php
Called when a credit card should be processed.

... See full list

File

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

Code

function uc_store_name() {
  return \Drupal::config('uc_store.settings')
    ->get('name');
}