%PDF- %PDF-
| Direktori : /home1/lightco1/public_html/plugins/vmpayment/klikandpay/klikandpay/assets/js/ |
| Current File : //home1/lightco1/public_html/plugins/vmpayment/klikandpay/klikandpay/assets/js/admin.js |
/**
*
* KlikAndPay payment plugin
*
* @author Valérie Isaksen
* @version $Id$
* @package VirtueMart
* @subpackage payment
* Copyright (C) 2004-2015 Virtuemart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See /administrator/components/com_virtuemart/COPYRIGHT.php for copyright notices and details.
*
* http://virtuemart.net
*/
jQuery().ready(function ($) {
/************/
/* Handlers */
/************/
handleRecurringDate = function () {
var recurring_number = $('#params_recurring_number').val();
var integration = $('#params_integration').val();
$('.recurring_date').parents('.control-group').hide();
if (integration == 'recurring') {
if (recurring_number == '2') {
$('.recurring_date').parents('.control-group').show();
}
}
}
handleIntegration = function () {
var integration = $('#params_integration').val();
$('.integration ').parents('.control-group').hide();
if (integration == 'recurring') {
$('.recurring').parents('.control-group').show();
} else if (integration == 'subscribe') {
$('.subscribe').parents('.control-group').show();
}
}
handleSubscribeNumber = function () {
var subscribe_number = $('#params_subscribe_number').val();
var integration = $('#params_integration').val();
$('.subscribe_number_1 ').parents('.control-group').hide();
$('.subscribe_number_2 ').parents('.control-group').hide();
$('.subscribe_number_3 ').parents('.control-group').hide();
if (integration == 'subscribe') {
$('.subscribe_number_1').parents('.control-group').show();
if (subscribe_number == '2') {
$('.subscribe_number_2').parents('.control-group').show();
} else if (subscribe_number == '3') {
$('.subscribe_number_2').parents('.control-group').show();
$('.subscribe_number_3').parents('.control-group').show();
}
}
}
handleShopMode = function () {
var shop_mode = $('#params_shop_mode').val();
$('.shop_mode ').parents('.control-group').hide();
if (shop_mode == 'test') {
$('.shop_mode').parents('.control-group').show();
}
}
/**********/
/* Events */
/**********/
$('#params_recurring_number').change(function () {
//handleRecurringDate();
});
$('#params_shop_mode').change(function () {
handleShopMode();
});
$('#params_integration').change(function () {
handleIntegration();
handleRecurringDate();
handleSubscribeNumber();
});
$('#params_subscribe_number').change(function () {
handleSubscribeNumber();
});
/*****************/
/* Initial calls */
/*****************/
handleShopMode();
handleIntegration();
// handleRecurringDate();
handleSubscribeNumber();
});