You are here

function webform_paypal_button_url in Webform Paypal 7.2

Same name and namespace in other branches
  1. 7 webform_paypal.module \webform_paypal_button_url()

Build a button url based on required parameters

1 call to webform_paypal_button_url()
webform_paypal_form_alter in ./webform_paypal.module
Implements of hook_form_alter().

File

./webform_paypal.module, line 256

Code

function webform_paypal_button_url($type, $style, $language) {
  $url = 'https://www.paypal.com/' . $language . '/i/btn/' . $type . $style . '.gif';
  return $url;
}