Template:2011FR/Form-section-processing-recurring: Difference between revisions

From Donate
Jump to navigation Jump to search
Content deleted Content added
Cbarr (talk | contribs)
No edit summary
Cbarr (talk | contribs)
No edit summary
 
(14 intermediate revisions by the same user not shown)
Line 3: Line 3:


<script type="text/javascript" language="javascript">
<script type="text/javascript" language="javascript">

var monthlyDonation = false;

function toggleMonthly(elem)
{
monthlyDonation = !monthlyDonation;
document.getElementsByName("recurring-radiooption").checked = !(document.getElementById("monthly-radiooption").checked);
document.getElementById(elem).checked = !(document.getElementById(elem).checked);
}


function redirectPayment(i) {
function redirectPayment(i) {
Line 20: Line 11:
var paymentType ="cc";
var paymentType ="cc";
var action_url = "https://payments.wikimedia.org/index.php/Special:GlobalCollectGateway?uselang=</html>{{int:lang}}<html>\x26masthead=</html>{{{GC-CC-masthead|none}}}<html>\x26form_name=</html>{{{GC-CC-form-name|RapidHtml}}}<html>\x26text_template=</html>{{{GC-CC-text-template|2010/JimmyQuote-green}}}<html>\x26appeal=JimmyQuote-green\x26language=</html>{{int:lang}}<html>"
var action_url = "https://payments.wikimedia.org/index.php/Special:GlobalCollectGateway?uselang=</html>{{int:lang}}<html>\x26masthead=</html>{{{GC-CC-masthead|none}}}<html>\x26form_name=</html>{{{GC-CC-form-name|RapidHtml}}}<html>\x26text_template=</html>{{{GC-CC-text-template|2010/JimmyQuote-green}}}<html>\x26appeal=JimmyQuote-green\x26language=</html>{{int:lang}}<html>"
if(monthlyDonation == true)
if(monthlyDonation == true)
{
{
action_url += ("\x26ffname=</html>{{{GC-CC-ffname|webitects2nd}}}<html>").replace('cc','rcc');
action_url += ("\x26ffname=</html>{{{GC-CC-ffname|webitects2nd}}}<html>").replace('cc','rcc');
}
}
else
else
{
{
action_url += "\x26ffname=</html>{{{GC-CC-ffname|webitects2nd}}}<html>";
action_url += "\x26ffname=</html>{{{GC-CC-ffname|webitects2nd}}}<html>";
}
}
//************************************ credit card ************************************
//************************************ credit card ************************************
Line 70: Line 61:
gateway.value = "paypal";
gateway.value = "paypal";
document.paypalcontribution.appendChild(gateway);
document.paypalcontribution.appendChild(gateway);

if(monthlyDonation == true)
{
var recurring = document.createElement("input");
recurring.type = "hidden";
recurring.name = "recurring_paypal";
recurring.id = "recurring-hidden";
recurring.value = "true";
document.paypalcontribution.appendChild(recurring);
}
}
}


if (i=="ew-pp-usd"){
if (i=="ew-pp-usd"){
Line 83: Line 84:
document.getElementsByName("amountGiven")[0].value="";
document.getElementsByName("amountGiven")[0].value="";
for ( var j = 0; j < document.getElementsByName("amount").length; j++ )
for ( var j = 0; j < document.getElementsByName("amount").length; j++ )
{
document.getElementsByName("amount")[j].checked=false;
document.getElementsByName("amount")[j].checked=false;
}
}
if(monthlyDonation == true)
{
var recurring = document.createElement("input");
recurring.type = "hidden";
recurring.name = "recurring_paypal";
recurring.id = "recurring-hidden";
recurring.value = "true";
document.paypalcontribution.appendChild(recurring);
}
}


if (i=="rpp"||i=="ew-pp"){
if (i=="rpp"||i=="ew-rpp"){
paymentType= "pp";
paymentType= "pp";
action_url="https://wikimediafoundation.org/wiki/Special:ContributionTracking/</html>{{int:lang}}<html>";
action_url="https://wikimediafoundation.org/wiki/Special:ContributionTracking/</html>{{int:lang}}<html>";

Latest revision as of 14:26, 27 December 2011