Import from SVN (r45945, r596)
[civicrm-core.git] / templates / CRM / common / paymentBlock.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.3 |
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
53 var fname = '#billing-payment-block';
54 var response = cj.ajax({
55 url: dataUrl,
56 async: false
57 }).responseText;
58
59 cj( fname ).html( response );
60}
61
62cj( function() {
63 var processorTypeObj = cj('input[name="payment_processor"]');
64
65 if ( processorTypeObj.attr('type') == 'hidden' ) {
66 var processorTypeValue = processorTypeObj.val( );
67 } else {
68 var processorTypeValue = processorTypeObj.filter(':checked').val();
69 }
70
71 if ( processorTypeValue ) {
72 buildPaymentBlock( processorTypeValue );
73 }
74
75 cj('input[name="payment_processor"]').change( function() {
76 buildPaymentBlock( cj(this).val() );
77 });
78});
79
80</script>
81{/literal}