| Server IP : 85.158.181.41 / Your IP : 216.73.217.12 Web Server : Apache System : Linux cloud9-vm129 6.1.178+1-ph #ph SMP PREEMPT_DYNAMIC Wed Jul 29 09:00:54 UTC 2026 x86_64 User : moncbefd ( 1024) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/moncbefd/www.moneta.at/callback/sofort/ressources/javascript/ |
Upload File : |
/**
* @version SOFORT Gateway 5.2.0 - $Date: 2012-09-06 13:49:09 +0200 (Thu, 06 Sep 2012) $
* @author SOFORT AG (integration@sofort.com)
* @link http://www.sofort.com/
*
* Copyright (c) 2012 SOFORT AG
*
* Released under the GNU General Public License (Version 2)
* [http://www.gnu.org/licenses/gpl-2.0.html]
*
* $Id: testAuth.js 5725 2012-11-21 11:09:39Z rotsch $
*/
var testApiKey = function() {
var apiKey = jQuery('[name|="configuration[MODULE_PAYMENT_SOFORT_MULTIPAY_APIKEY]"]').attr('value');
jQuery('#su_ajax_loader').css('display','block');
jQuery.post("../callback/sofort/ressources/javascript/testAuth_2.php", {k: apiKey},
function(data){
jQuery('#su_ajax_loader').css('display','none');
if(data.substring(0,1) == 't') alert(data.substring(1));
else if(data.substring(0,1) == 'f') alert(data.substring(1));
});
}
document.write('<input type="button" onclick="javascript:testApiKey()" value="Test" /><span id="su_ajax_loader" style="display:none;"><img src="../callback/sofort/ressources/images/loader.gif" /></span>');