You are here

function commerce_paypal_ec_service_description in Commerce PayPal 7.2

Returns a service description and registration link for the specified method.

2 calls to commerce_paypal_ec_service_description()
commerce_paypal_ec_page_alter in modules/ec/commerce_paypal_ec.module
Implements hook_page_alter().
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 235
Implements PayPal Express Checkout in Drupal Commerce checkout.

Code

function commerce_paypal_ec_service_description() {
  return t('Allow customers to pay via PayPal and optionally credit card or debit card on a securely hosted checkout form. This payment method requires a PayPal Business account. <a href="!url">Sign up here</a> and edit this rule to start accepting payments.', array(
    '!url' => 'https://www.paypal.com/webapps/mpp/referral/paypal-express-checkout?partner_id=VZ6B9QLQ8LZEE',
  ));
}