You are here

function commerce_paypal_ec_bml_help_text in Commerce PayPal 7.2

Returns the PayPal Credit help text HTML.

1 call to commerce_paypal_ec_bml_help_text()
commerce_paypal_ec_settings_form in modules/ec/commerce_paypal_ec.module
Payment method callback: settings form.

File

modules/ec/commerce_paypal_ec.module, line 449
Implements PayPal Express Checkout in Drupal Commerce checkout.

Code

function commerce_paypal_ec_bml_help_text() {
  return '<div class="paypal-bml-popin-text"><p>' . t('Add PayPal Credit as a payment method and give your customers access to special financing for 6 months on purchases of $99 or more.¹ Even though customers can pay over time, you get paid up front. Plus, offering financing can help you increase sales and get larger orders.²') . '</p><p><strong>' . t('Features:') . '</strong><ul><li>' . t('You get paid up front.') . '</li><li>' . t("There's no additional integration work required.") . '</li><li>' . t('PayPal offers free web banners to advertise that special financing is available.') . '</li></ul></p><p>' . t('Learn more at DrupalCommerce.org.') . '</p><p><small>' . t('¹Subject to consumer credit card approval.') . '</small><br /><small>' . t("²As reported in Nielsen's PayPal Credit Average Order Value study for activity occurring from April 2015 to March 2016 (small merchants) and October 2015 to March 2016 (midsize merchants), which compared PayPal Credit transactions to credit and debit card transactions on websites that offer PayPal Credit as a payment option or within the PayPal Wallet. Nielsen measured 284,890 transactions across 27 mid and small merchants. Copyright Nielsen 2016.") . '</small></p></div>';
}