Merge pull request #2033 from JoeMurray/master
[civicrm-core.git] / templates / CRM / common / paymentBlock.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
232624b1 3 | CiviCRM version 4.4 |
6a488035
TO
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2013 |
6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25*}
26{literal}
27<script type="text/javascript">
28
29function buildPaymentBlock( type ) {
30 if ( type == 0 ) {
31 if (cj("#billing-payment-block").length) {
32 cj("#billing-payment-block").html('');
33 }
34 return;
35 }
36
37 var dataUrl = {/literal}"{crmURL p=$urlPath h=0 q='snippet=4&type='}"{literal} + type;
38
39 {/literal}
40 {if $urlPathVar}
41 dataUrl = dataUrl + '&' + '{$urlPathVar}'
42 {/if}
43
44 {if $contributionPageID}
45 dataUrl = dataUrl + '&id=' + '{$contributionPageID}'
46 {/if}
47
48 {if $qfKey}
49 dataUrl = dataUrl + '&qfKey=' + '{$qfKey}'
50 {/if}
51 {literal}
52
6a488035
TO
53 var response = cj.ajax({
54 url: dataUrl,
55 async: false
56 }).responseText;
57
bef9421f 58 cj('#billing-payment-block').html(response).trigger('crmFormLoad');
6a488035
TO
59}
60
61cj( function() {
6e56bbfc
CW
62 cj('.crm-group.payment_options-group').show();
63
6a488035
TO
64 cj('input[name="payment_processor"]').change( function() {
65 buildPaymentBlock( cj(this).val() );
66 });
67});
68
69</script>
70{/literal}